projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73ed9a8
)
aoe: eliminate isbusy message
author
Ed L. Cashin
<ecashin@coraid.com>
Wed, 20 Sep 2006 18:34:41 +0000
(14:34 -0400)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Wed, 18 Oct 2006 19:53:49 +0000
(12:53 -0700)
This message doesn't help users because the circumstance isn't problematic.
Signed-off-by: "Ed L. Cashin" <ecashin@coraid.com>
Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/block/aoe/aoedev.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/block/aoe/aoedev.c
b/drivers/block/aoe/aoedev.c
index ed4258a62df5a889028cf6f131d4276cf436a768..c2bc3edb32c7859810c5a3aca3de6f4259911a78 100644
(file)
--- a/
drivers/block/aoe/aoedev.c
+++ b/
drivers/block/aoe/aoedev.c
@@
-20,11
+20,8
@@
aoedev_isbusy(struct aoedev *d)
f = d->frames;
e = f + d->nframes;
do {
- if (f->tag != FREETAG) {
- printk(KERN_DEBUG "aoe: %ld.%ld isbusy\n",
- d->aoemajor, d->aoeminor);
+ if (f->tag != FREETAG)
return 1;
- }
} while (++f < e);
return 0;