Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -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;