Commit 463c2c12 authored by Ed L. Cashin's avatar Ed L. Cashin Committed by Greg Kroah-Hartman

aoe: eliminate isbusy message

This message doesn't help users because the circumstance isn't problematic.
Signed-off-by: default avatar"Ed L. Cashin" <ecashin@coraid.com>
Acked-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 73ed9a86
...@@ -20,11 +20,8 @@ aoedev_isbusy(struct aoedev *d) ...@@ -20,11 +20,8 @@ aoedev_isbusy(struct aoedev *d)
f = d->frames; f = d->frames;
e = f + d->nframes; e = f + d->nframes;
do { do {
if (f->tag != FREETAG) { if (f->tag != FREETAG)
printk(KERN_DEBUG "aoe: %ld.%ld isbusy\n",
d->aoemajor, d->aoeminor);
return 1; return 1;
}
} while (++f < e); } while (++f < e);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment