]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
aoe: eliminate isbusy message
authorEd L. Cashin <ecashin@coraid.com>
Wed, 20 Sep 2006 18:34:41 +0000 (14:34 -0400)
committerGreg 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

index ed4258a62df5a889028cf6f131d4276cf436a768..c2bc3edb32c7859810c5a3aca3de6f4259911a78 100644 (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;