Displaying 5 results from an estimated 5 matches for "cleraing".
Did you mean:
clearing
2008 Jan 24
3
Problems with yum not updating properly
Has anyone else seen this?
I recently got the announcement about the xorg 1.5 update being available,
so I ran yum update to get it.
To my surprise, I found that yum did not see it at all.
With some help from Karanbir (thanks again), we decided there might be
something wrong with my repo path, so I checked it against the older one I
had from 5.0 (which I saved, for some reason) and found that
2016 Jul 13
2
[PATCH] drm/nouveau/fbcon: fix deadlock with FBIOPUT_CON2FBMAP
...ful to all other drivers too even if
the deadlock is fixed in a different way.
My current plan is to move stuff out of the lock and allow (just)
resuming the console to be delayed. Some drivers (nouveau,
radeon/amdgpu, i915) do unnecessary stuff under the console lock:
- nouveau: I *think* that cleraing/setting FBINFO_HWACCEL_DISABLED
(nouveau_fbcon_accel_restore) is safe outside the lock as the fb is
already suspended before clearing/after setting the flag.
- radeon: since the console is suspended, I don't think that that all
of the code is radeon_resume_kms is really needed.
- amd...
2016 Jul 15
1
[PATCH] drm/nouveau/fbcon: fix deadlock with FBIOPUT_CON2FBMAP
...b_set_suspend").
Peter
> > My current plan is to move stuff out of the lock and allow (just)
> > resuming the console to be delayed. Some drivers (nouveau,
> > radeon/amdgpu, i915) do unnecessary stuff under the console lock:
> >
> > - nouveau: I *think* that cleraing/setting FBINFO_HWACCEL_DISABLED
> > (nouveau_fbcon_accel_restore) is safe outside the lock as the fb is
> > already suspended before clearing/after setting the flag.
> > - radeon: since the console is suspended, I don't think that that all
> > of the code is ra...
2016 Jul 13
0
[PATCH] drm/nouveau/fbcon: fix deadlock with FBIOPUT_CON2FBMAP
...ut that means
fixing up fbcon locking horror shows.
> My current plan is to move stuff out of the lock and allow (just)
> resuming the console to be delayed. Some drivers (nouveau,
> radeon/amdgpu, i915) do unnecessary stuff under the console lock:
>
> - nouveau: I *think* that cleraing/setting FBINFO_HWACCEL_DISABLED
> (nouveau_fbcon_accel_restore) is safe outside the lock as the fb is
> already suspended before clearing/after setting the flag.
> - radeon: since the console is suspended, I don't think that that all
> of the code is radeon_resume_kms is r...
2016 Jul 12
6
[PATCH] drm/nouveau/fbcon: fix deadlock with FBIOPUT_CON2FBMAP
The FBIOPUT_CON2FBMAP ioctl takes a console_lock(). When this is called
while nouveau was runtime suspended, a deadlock would occur due to
nouveau_fbcon_set_suspend also trying to obtain console_lock().
Fix this by delaying the drm_fb_helper_set_suspend call. Based on the
i915 code (which was done for performance reasons though).
Cc: Chris Wilson <chris at chris-wilson.co.uk>
Cc: Daniel