search for: unreference

Displaying 20 results from an estimated 40 matches for "unreference".

2017 Sep 29
1
[PATCH] drm/virtio: Replace instances of reference/unreference with get/put
Replace reference/unreference with get/put as it is consistent with the kernel coding style. Done using the following semantic patch by coccinelle. @r@ expression e; @@ -drm_gem_object_unreference_unlocked(e); +drm_gem_object_put_unlocked(e); Signed-off-by: Srishti Sharma <srishtishar at gmail.com> --- drivers/gpu/drm...
2017 Sep 29
1
[PATCH] drm/virtio: Replace instances of reference/unreference with get/put
Replace reference/unreference with get/put as it is consistent with the kernel coding style. Done using the following semantic patch by coccinelle. @r@ expression e; @@ -drm_gem_object_unreference_unlocked(e); +drm_gem_object_put_unlocked(e); Signed-off-by: Srishti Sharma <srishtishar at gmail.com> --- drivers/gpu/drm...
2018 Mar 21
0
[Outreachy kernel] [PATCH] drm/qxl: Replace drm_gem_object_reference/unreference() with _get/put()
On Tue, Mar 20, 2018 at 11:29:27AM -0700, Santha Meena Ramamoorthy wrote: > Replace drm_gem_object_reference/unreference function with *_get/put() > suffixes, because it is shorter and consistent with the kernel > kref_get/put() functions. The following Coccinelle script was used: > > @@ > expression e; > @@ > > ( > -drm_gem_object_reference(e); > +drm_gem_object_get(e); > | > -d...
2009 Dec 21
2
[PATCH 1/2] Unreference state/buffer objects on context/screen destruction
- unreference state objects so that buffer objects are unreferenced and eventually destroyed - free channel at screen's destruction Index: nv50/nv50_screen.c =================================================================== --- nv50/nv50_screen.c (wersja 32083) +++ nv50/nv50_screen.c (kopia robocza) @@ -...
2018 Nov 21
2
[PATCH 0/9] drm: remove deprecated functions
On Thu, Nov 15, 2018 at 11:38:35PM +0100, Linus Walleij wrote: > On Thu, Nov 15, 2018 at 11:17 PM Fernando Ramos <greenfoo at gluegarage.com> wrote: > > > One of the things in the DRM TODO list ("Documentation/gpu/todo.rst") was to > > "switch from reference/unreference to get/put". That's what this patch series is > > about. > > The series: > Reviewed-by: Linus Walleij <linus.walleij at linaro.org> Since your reviewed it all, and there's a pile of acks for the driver parts too: Want to go ahead and apply it too? Thanks, Daniel...
2018 Nov 21
2
[PATCH 0/9] drm: remove deprecated functions
On Thu, Nov 15, 2018 at 11:38:35PM +0100, Linus Walleij wrote: > On Thu, Nov 15, 2018 at 11:17 PM Fernando Ramos <greenfoo at gluegarage.com> wrote: > > > One of the things in the DRM TODO list ("Documentation/gpu/todo.rst") was to > > "switch from reference/unreference to get/put". That's what this patch series is > > about. > > The series: > Reviewed-by: Linus Walleij <linus.walleij at linaro.org> Since your reviewed it all, and there's a pile of acks for the driver parts too: Want to go ahead and apply it too? Thanks, Daniel...
2018 Apr 26
3
[Intel-gfx] [PATCH] drm/core: Remove drm_dev_unref() and it's uses
Hi Daniel, On Thursday, 26 April 2018 15:36:15 EEST Daniel Vetter wrote: > On Thu, Apr 26, 2018 at 03:58:19PM +0530, Vaishali Thakkar wrote: > > It's been a while since we introduced drm_dev{get/put} functions > > to replace reference/unreference in drm subsystem for the > > consistency purpose. So, with this patch, let's just replace > > all current use cases of drm_dev_unref() with drm_dev_put and remove > > the function itself. > > > > Coccinelle was used for mass-patching. > > > > Signed-o...
2016 May 24
4
[PATCH 9/9] drm: Turn off crtc before tearing down its data structure
...dcf0a5f0f ("nouveau: add runtime PM support (v0.9)") > Cc: Dave Airlie <airlied at redhat.com> > Tested-by: Karol Herbst <nouveau at karolherbst.de> > Signed-off-by: Lukas Wunner <lukas at wunner.de> This is a core regression, we fixed it again. Previously when unreference drm_planes the core made sure that it's not longer in use, which had the side effect of shutting everything off in module unload. For a bunch of reasons we've stopped doing that, but that turned out to be a mistake. It's fixed since commit f2d580b9a8149735cbc4b59c4a8df60173658140 Auth...
2016 May 25
2
[PATCH 9/9] drm: Turn off crtc before tearing down its data structure
...port (v0.9)") >> > Cc: Dave Airlie <airlied at redhat.com> >> > Tested-by: Karol Herbst <nouveau at karolherbst.de> >> > Signed-off-by: Lukas Wunner <lukas at wunner.de> >> >> This is a core regression, we fixed it again. Previously when unreference >> drm_planes the core made sure that it's not longer in use, which had the >> side effect of shutting everything off in module unload. >> >> For a bunch of reasons we've stopped doing that, but that turned out to be >> a mistake. It's fixed since >>...
2018 Apr 26
0
[Intel-gfx] [PATCH] drm/core: Remove drm_dev_unref() and it's uses
...ard.com> wrote: > Hi Daniel, > > On Thursday, 26 April 2018 15:36:15 EEST Daniel Vetter wrote: >> On Thu, Apr 26, 2018 at 03:58:19PM +0530, Vaishali Thakkar wrote: >> > It's been a while since we introduced drm_dev{get/put} functions >> > to replace reference/unreference in drm subsystem for the >> > consistency purpose. So, with this patch, let's just replace >> > all current use cases of drm_dev_unref() with drm_dev_put and remove >> > the function itself. >> > >> > Coccinelle was used for mass-patching. >> &...
2009 Jul 27
10
sam-fs on zfs-pool
Hi list, I''ve did some tests and run into a very strange situation.. I created a zvol using "zfs create -V" and initialize an sam-filesystem on this zvol. After that I restored some testdata using a dump from another system. So far so good. After some big troubles I found out that releasing files in the sam-filesystem doesn''t create space on the underlying zvol.
2018 Apr 26
0
[Intel-gfx] [PATCH] drm/core: Remove drm_dev_unref() and it's uses
...Hi Daniel, >> >> On Thursday, 26 April 2018 15:36:15 EEST Daniel Vetter wrote: >> > On Thu, Apr 26, 2018 at 03:58:19PM +0530, Vaishali Thakkar wrote: >> > > It's been a while since we introduced drm_dev{get/put} functions >> > > to replace reference/unreference in drm subsystem for the >> > > consistency purpose. So, with this patch, let's just replace >> > > all current use cases of drm_dev_unref() with drm_dev_put and remove >> > > the function itself. >> > > >> > > Coccinelle was used for...
2018 Apr 26
0
[Intel-gfx] [PATCH] drm/core: Remove drm_dev_unref() and it's uses
...inchart wrote: > Hi Daniel, > > On Thursday, 26 April 2018 15:36:15 EEST Daniel Vetter wrote: > > On Thu, Apr 26, 2018 at 03:58:19PM +0530, Vaishali Thakkar wrote: > > > It's been a while since we introduced drm_dev{get/put} functions > > > to replace reference/unreference in drm subsystem for the > > > consistency purpose. So, with this patch, let's just replace > > > all current use cases of drm_dev_unref() with drm_dev_put and remove > > > the function itself. > > > > > > Coccinelle was used for mass-patching. >...
2019 Oct 15
0
[ANNOUNCE] xf86-video-ati 19.1.0
..._crtc returns NULL Remove dri2_drawable_crtc parameter consider_disabled present: Check that we can get a KMS FB for flipping Don't disable page flipping completely with SW cursor Don't set up black scanout buffer if LeaveVT is called from CloseScreen Don't unreference FBs of pixmaps from different screens in LeaveVT Bump version for 19.1.0 release git tag: xf86-video-ati-19.1.0 https://xorg.freedesktop.org/archive/individual/driver/xf86-video-ati-19.1.0.tar.bz2 MD5: 6e49d3c2839582af415ceded76e626e6 xf86-video-ati-19.1.0.tar.bz2 SHA1: aea1d11c05531b03f2...
2018 Nov 21
0
[PATCH 0/9] drm: remove deprecated functions
...ET Daniel Vetter wrote: > On Thu, Nov 15, 2018 at 11:38:35PM +0100, Linus Walleij wrote: > > On Thu, Nov 15, 2018 at 11:17 PM Fernando Ramos wrote: > >> One of the things in the DRM TODO list ("Documentation/gpu/todo.rst") > >> was to "switch from reference/unreference to get/put". That's what this > >> patch series is about. > > > > The series: > > Reviewed-by: Linus Walleij <linus.walleij at linaro.org> > > Since your reviewed it all, and there's a pile of acks for the driver > parts too: Want to go ahead...
2018 Nov 26
0
[PATCH 0/9] drm: remove deprecated functions
...00, Linus Walleij wrote: > > > On Thu, Nov 15, 2018 at 11:17 PM Fernando Ramos <greenfoo at gluegarage.com> wrote: > > > > > > > One of the things in the DRM TODO list ("Documentation/gpu/todo.rst") was to > > > > "switch from reference/unreference to get/put". That's what this patch series is > > > > about. > > > > > > The series: > > > Reviewed-by: Linus Walleij <linus.walleij at linaro.org> > > > > Since your reviewed it all, and there's a pile of acks for the driver &gt...
2010 Nov 08
0
Bug or normal?
...witched to another bash console and managed to run top. The load was more than 4.x but no single process appear to be heavily utilizing the system. Switching to the debug console, I managed to see that the md daemon was again trying to resync the arrays. There was an EXT3 message about deleting an unreference inode before I got a screenful of what appears to be a trace dump. So my question is, was all that supposed to happen or did I stumble on some bug that arose from the combination of a full md array being resync while rm was trying to remove a very large file? Or was it simply my bad for assuming...
2008 Nov 12
1
[LLVMdev] cmake patch to build other targets
...6CodeGen and LLVMX86AsmPrinter, it grabs the correct ones. It also adds "force-link-ints" to the various TargetMachine cpp files, as well as X86AsmPrinter and PPCAsmPrinter. These are needed to be able to encourage the Win32 linker to include those libs (even though they're otherwise unreferenced) so that the registration global ctors are run. llc's build file is updated to force include these modules when appropriate. scott -------------- next part -------------- A non-text attachment was scrubbed... Name: cmake_targets.patch Type: application/octet-stream Size: 11957 bytes Desc: not...
2019 Oct 11
0
[ANNOUNCE] xf86-video-amdgpu 19.1.0
...ixmap pitch in check_flip with current xserver present: Don't check pixmap pitch in check_flip with current DC present: Don't check pixmap pitch in check_flip with non-DC >= 3.34 Don't set up black scanout buffer if LeaveVT is called from CloseScreen Don't unreference FBs of pixmaps from different screens in LeaveVT Bump version for the 19.1.0 release git tag: xf86-video-amdgpu-19.1.0 https://xorg.freedesktop.org/archive/individual/driver/xf86-video-amdgpu-19.1.0.tar.bz2 MD5: 55ad19b858e186a2cf4e91ed832c05e7 xf86-video-amdgpu-19.1.0.tar.bz2 SHA1: 044a9...
2010 Sep 20
1
replace istream and unref the old one...
I Build a plugin, that do some stuffs with a email. To get the input istream, i use the "get_stream" function, like zlib does. I create a concat_stream, with the full_input[3]; struct istream *full_input[3]; //this like zlib input = imail->data.stream; //first input, using the input full_input[0] = i_stream_create_header_filter(input, HEADER_FILTER_EXCLUDE | HEADER_FILTER_NO_CR,