Skip to content

Commit

Permalink
[PATCH] aoe [6/8]: update device information on last close
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ed L. Cashin authored and Greg Kroah-Hartman committed Mar 24, 2006
1 parent 2dd5e42 commit 5f7702f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/block/aoe/aoeblk.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ aoeblk_release(struct inode *inode, struct file *filp)

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;
Expand Down

0 comments on commit 5f7702f

Please sign in to comment.