dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Ed L. Cashin 2006-09-20 14:34:41 -04:00 committed by Greg Kroah-Hartman
parent 73ed9a86cd
commit 463c2c12dc
1 changed files with 1 additions and 4 deletions

View File

@ -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;