From ecashin@coraid.com Tue Jan 3 13:31:33 2006 From: "Ed L. Cashin" CC: ecashin@coraid.com, Greg K-H Subject: aoe: update device information on last close Date: Tue, 03 Jan 2006 16:08:25 -0500 Message-ID: <87k6dhyq7q.fsf@coraid.com> Instead of making the user wait or do it manually, refresh device information on its last close by issuing a config query to the device. Signed-off-by: "Ed L. Cashin" Signed-off-by: Greg Kroah-Hartman --- drivers/block/aoe/aoeblk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- gregkh-2.6.orig/drivers/block/aoe/aoeblk.c +++ gregkh-2.6/drivers/block/aoe/aoeblk.c @@ -109,7 +109,7 @@ aoeblk_release(struct inode *inode, stru spin_lock_irqsave(&d->lock, flags); - if (--d->nopen == 0 && !(d->flags & DEVFL_UP)) { + if (--d->nopen == 0) { spin_unlock_irqrestore(&d->lock, flags); aoecmd_cfg(d->aoemajor, d->aoeminor); return 0;