summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorEd L. Cashin2006-09-20 20:34:41 +0200
committerGreg Kroah-Hartman2006-10-18 21:53:49 +0200
commit463c2c12dce78dd0cb77b65beba93f029a164ba3 (patch)
treead93a7d47676019d20d9f4bd6d430043a58b4ed6 /drivers
parent[SPARC64]: Update defconfig. (diff)
downloadkernel-qcow2-linux-463c2c12dce78dd0cb77b65beba93f029a164ba3.tar.gz
kernel-qcow2-linux-463c2c12dce78dd0cb77b65beba93f029a164ba3.tar.xz
kernel-qcow2-linux-463c2c12dce78dd0cb77b65beba93f029a164ba3.zip
aoe: eliminate isbusy message
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/block/aoe/aoedev.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/block/aoe/aoedev.c b/drivers/block/aoe/aoedev.c
index ed4258a62df5..c2bc3edb32c7 100644
--- 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;