Messages in this thread Patch in this message |  | | | Subject | [PATCH 06/12] aoe [6/8]: update device information on last close | | Date | Thu, 23 Mar 2006 22:10:53 -0800 | | From | Greg KH <> |
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" <ecashin@coraid.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
--- drivers/block/aoe/aoeblk.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 5f7702fd737d14de3ed06a94a1655be9d43f7e35 diff --git a/drivers/block/aoe/aoeblk.c b/drivers/block/aoe/aoeblk.c index 039c091..32fea55 100644 --- a/drivers/block/aoe/aoeblk.c +++ b/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; -- 1.2.4
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |