All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] devmem: Handle class_create() failure
@ 2010-04-02  7:29 Anton Blanchard
  2010-04-02  7:36 ` Wu Fengguang
  2010-04-02 16:53 ` Greg KH
  0 siblings, 2 replies; 4+ messages in thread
From: Anton Blanchard @ 2010-04-02  7:29 UTC (permalink / raw)
  To: Andrew Morton, Wu Fengguang, Andi Kleen, Greg Kroah-Hartman, Kay Sievers
  Cc: linux-kernel


I hit this when we had a bug in IDR for a few days. Basically sysfs would
fail to create new inodes since it uses an IDR and therefore class_create would
fail.

While we are unlikely to see this fail we may as well handle it instead of
oopsing.

Signed-off-by: Anton Blanchard <anton@samba.org>
---

Index: linux-2.6/drivers/char/mem.c
===================================================================
--- linux-2.6.orig/drivers/char/mem.c	2010-02-02 22:18:02.000000000 -0600
+++ linux-2.6/drivers/char/mem.c	2010-02-02 22:18:15.000000000 -0600
@@ -901,6 +901,9 @@ static int __init chr_dev_init(void)
 		printk("unable to get major %d for memory devs\n", MEM_MAJOR);
 
 	mem_class = class_create(THIS_MODULE, "mem");
+	if (IS_ERR(mem_class))
+		return PTR_ERR(mem_class);
+
 	mem_class->devnode = mem_devnode;
 	for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
 		if (!devlist[minor].name)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] devmem: Handle class_create() failure
  2010-04-02  7:29 [PATCH] devmem: Handle class_create() failure Anton Blanchard
@ 2010-04-02  7:36 ` Wu Fengguang
  2010-04-02 16:53 ` Greg KH
  1 sibling, 0 replies; 4+ messages in thread
From: Wu Fengguang @ 2010-04-02  7:36 UTC (permalink / raw)
  To: Anton Blanchard
  Cc: Andrew Morton, Andi Kleen, Greg Kroah-Hartman, Kay Sievers, linux-kernel

Looks good to me.  Thanks!

Reviewed-by: Wu Fengguang <fengguang.wu@intel.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] devmem: Handle class_create() failure
  2010-04-02  7:29 [PATCH] devmem: Handle class_create() failure Anton Blanchard
  2010-04-02  7:36 ` Wu Fengguang
@ 2010-04-02 16:53 ` Greg KH
  2010-04-03  2:03   ` Anton Blanchard
  1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2010-04-02 16:53 UTC (permalink / raw)
  To: Anton Blanchard
  Cc: Andrew Morton, Wu Fengguang, Andi Kleen, Kay Sievers, linux-kernel

On Fri, Apr 02, 2010 at 06:29:20PM +1100, Anton Blanchard wrote:
> 
> I hit this when we had a bug in IDR for a few days. Basically sysfs would
> fail to create new inodes since it uses an IDR and therefore class_create would
> fail.
> 
> While we are unlikely to see this fail we may as well handle it instead of
> oopsing.

Is this something that we need for .34?  How were you getting this to
fail in the first place?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] devmem: Handle class_create() failure
  2010-04-02 16:53 ` Greg KH
@ 2010-04-03  2:03   ` Anton Blanchard
  0 siblings, 0 replies; 4+ messages in thread
From: Anton Blanchard @ 2010-04-03  2:03 UTC (permalink / raw)
  To: Greg KH
  Cc: Andrew Morton, Wu Fengguang, Andi Kleen, Kay Sievers, linux-kernel

 
Hi Greg,

> Is this something that we need for .34?  How were you getting this to
> fail in the first place?

I hit this when we broke the IDR allocator for a few days.  The bug got
introduced in commit 859ddf09743a8cc680af33f7259ccd0fd36bfe9d (idr: fix a
critical misallocation bug), and was backed out a few days later in commit
6f14a668f1a8b715a6e855f4e32705e54a6e86a1 (idr: revert misallocation bug fix).

The sysfs inode allocator which uses IDR was getting back a bogus ENOSPC
return code. I think the chances of seeing this fail otherwise would be pretty
remote, you'd have to use up 2^31 sysfs inodes before hitting the real IDR
limit.

Anton

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-04-03  2:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-02  7:29 [PATCH] devmem: Handle class_create() failure Anton Blanchard
2010-04-02  7:36 ` Wu Fengguang
2010-04-02 16:53 ` Greg KH
2010-04-03  2:03   ` Anton Blanchard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.