2006-09-20 18:52:34

by Ed L. Cashin

[permalink] [raw]
Subject: [PATCH 2.6.18-rc4] aoe [01/14]: eliminate isbusy message

This message doesn't help users because the circumstance isn't problematic.

Signed-off-by: "Ed L. Cashin" <[email protected]>
---

diff -upr 2.6.18-rc4-orig/drivers/block/aoe/aoedev.c 2.6.18-rc4-aoe/drivers/block/aoe/aoedev.c
--- 2.6.18-rc4-orig/drivers/block/aoe/aoedev.c 2006-08-17 16:45:33.000000000 -0400
+++ 2.6.18-rc4-aoe/drivers/block/aoe/aoedev.c 2006-09-20 14:29:35.000000000 -0400
@@ -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;


--
"Ed L. Cashin" <[email protected]>


2006-09-20 22:12:25

by Alan

[permalink] [raw]
Subject: Re: [PATCH 2.6.18-rc4] aoe [01/14]: eliminate isbusy message

Ar Mer, 2006-09-20 am 14:34 -0400, ysgrifennodd Ed L. Cashin:
> This message doesn't help users because the circumstance isn't problematic.
>
> Signed-off-by: "Ed L. Cashin" <[email protected]>
> ---

Acked-by: Alan Cox <[email protected]>

[All 14]