diff options
author | NeilBrown <neilb@suse.de> | 2009-05-26 12:57:36 +1000 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2009-05-26 12:57:36 +1000 |
commit | b492b852cd8c99505708152c29a5e09a787af9de (patch) | |
tree | f26aa9676231a583e209a9397acfc4512061325e /drivers/md | |
parent | 7a91ee1f628ef6bfe3f13067c0ddf9db520cb86b (diff) |
md: don't use locked_ioctl.
md has no need for the BKL - it does its own locking.
So md_ioctl doesn't need to be a locked_ioctl.
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 954456532ac..641b211fe3f 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -5567,7 +5567,7 @@ static struct block_device_operations md_fops = .owner = THIS_MODULE, .open = md_open, .release = md_release, - .locked_ioctl = md_ioctl, + .ioctl = md_ioctl, .getgeo = md_getgeo, .media_changed = md_media_changed, .revalidate_disk= md_revalidate, |