From: Manfred Spraul <manfred@colorfullife.com>
To: "Kristian Høgsberg" <krh@redhat.com>
Cc: Stefan Richter <stefanr@s5r6.in-berlin.de>,
Andrew Morton <akpm@linux-foundation.org>,
dcm@acm.org, Nadia Derbey <Nadia.Derbey@bull.net>,
linux1394-devel <linux1394-devel@lists.sourceforge.net>,
linux-kernel <linux-kernel@vger.kernel.org>,
"Paul E. McKenney" <paulmck@us.ibm.com>
Subject: Re: [PATCH] lib/idr.c: Zero memory properly in idr_remove_all
Date: Mon, 12 Jan 2009 20:53:43 +0100 [thread overview]
Message-ID: <496B9FC7.3090108@colorfullife.com> (raw)
In-Reply-To: <1231773620.6365.21.camel@gaara.bos.redhat.com>
Kristian Høgsberg wrote:
> The problem
> isn't about returning un-zeroed-out objects to the kmem cache, the
> problem is returning them to the idr free list.
>
I think this is wrong:
The slab allocator assumes that the objects that are given to
kmem_cache_free() are properly constructed.
I.e.: No additional constructor is called prior to returning the object
from the next kmem_cache_alloc() call.
> Every idr use I've seen could just do the whole thing
> under a mutex and not worry about the awkward retry idea.
Unfortunately there are some users that do idr_get_new() within a spinlock.
e.g. from drivers/gpu/drm/drm_gem.c:
> if (idr_pre_get(&file_priv->object_idr, GFP_KERNEL) == 0)
> return -ENOMEM;
>
> /* do the allocation under our spinlock */
> spin_lock(&file_priv->table_lock);
> ret = idr_get_new_above(&file_priv->object_idr, obj, 1, handlep);
> spin_unlock(&file_priv->table_lock);
:-(
--
Manfred
next prev parent reply other threads:[~2009-01-12 19:53 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-01-10 7:04 [PATCH] lib/idr.c: Zero memory properly in idr_remove_all David Moore
2009-01-10 9:03 ` Stefan Richter
2009-01-10 9:15 ` Andrew Morton
2009-01-10 10:05 ` Stefan Richter
2009-01-12 15:20 ` Kristian Høgsberg
2009-01-12 19:53 ` Manfred Spraul [this message]
2009-01-12 20:38 ` Kristian Høgsberg
2009-01-12 20:50 ` Manfred Spraul
2009-01-13 22:48 ` Andrew Morton
2009-01-14 2:51 ` David Moore
2009-01-14 7:19 ` Pekka Enberg
2009-01-14 8:17 ` Andrew Morton
2009-01-14 8:59 ` Stefan Richter
2009-01-14 9:22 ` Andrew Morton
2009-01-14 9:48 ` Stefan Richter
2009-01-14 9:52 ` Stefan Richter
2009-01-14 9:02 ` Pekka Enberg
2009-01-14 14:23 ` Kristian Høgsberg
2009-01-14 16:21 ` Stefan Richter
2009-01-14 16:33 ` Kristian Høgsberg
2009-01-14 18:05 ` Stefan Richter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=496B9FC7.3090108@colorfullife.com \
--to=manfred@colorfullife.com \
--cc=Nadia.Derbey@bull.net \
--cc=akpm@linux-foundation.org \
--cc=dcm@acm.org \
--cc=krh@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux1394-devel@lists.sourceforge.net \
--cc=paulmck@us.ibm.com \
--cc=stefanr@s5r6.in-berlin.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox