]> Pileus Git - ~andy/linux/commitdiff
aoe: do not BUG if memory pressure prevented debugfs file creation
authorEd Cashin <ecashin@coraid.com>
Wed, 11 Sep 2013 21:25:46 +0000 (14:25 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 11 Sep 2013 22:59:28 +0000 (15:59 -0700)
If the system has trouble allocating memory for the creation of the aoe
debugfs directory or of a file inside it, the debugfs member of an aoedev
can be NULL.

Do not treat a NULL debugfs pointer as a BUG on aoedev shutdown, avoiding
the user impact of an unecessary panic.

Signed-off-by: Ed Cashin <ecashin@coraid.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/block/aoe/aoeblk.c

index d63dcf0f22665c820afdca110982a8b7e44bd5f4..dd73e1ff1759c902db1734ac94975abea11e1b02 100644 (file)
@@ -215,7 +215,6 @@ aoedisk_add_debugfs(struct aoedev *d)
 void
 aoedisk_rm_debugfs(struct aoedev *d)
 {
-       BUG_ON(d->debugfs == NULL);
        debugfs_remove(d->debugfs);
        d->debugfs = NULL;
 }