diff options
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm.c | 6 | ||||
-rw-r--r-- | drivers/md/md.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/drivers/md/dm.c b/drivers/md/dm.c index 5f0f4c8bcd3e..8b4c92b1b6db 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c | |||
@@ -1698,9 +1698,9 @@ int dm_noflush_suspending(struct dm_target *ti) | |||
1698 | EXPORT_SYMBOL_GPL(dm_noflush_suspending); | 1698 | EXPORT_SYMBOL_GPL(dm_noflush_suspending); |
1699 | 1699 | ||
1700 | static struct block_device_operations dm_blk_dops = { | 1700 | static struct block_device_operations dm_blk_dops = { |
1701 | .open = dm_blk_open, | 1701 | .__open = dm_blk_open, |
1702 | .release = dm_blk_close, | 1702 | .__release = dm_blk_close, |
1703 | .ioctl = dm_blk_ioctl, | 1703 | .__ioctl = dm_blk_ioctl, |
1704 | .getgeo = dm_blk_getgeo, | 1704 | .getgeo = dm_blk_getgeo, |
1705 | .owner = THIS_MODULE | 1705 | .owner = THIS_MODULE |
1706 | }; | 1706 | }; |
diff --git a/drivers/md/md.c b/drivers/md/md.c index aaa3d465de4e..21b04d39ba3b 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
@@ -5046,9 +5046,9 @@ static int md_revalidate(struct gendisk *disk) | |||
5046 | static struct block_device_operations md_fops = | 5046 | static struct block_device_operations md_fops = |
5047 | { | 5047 | { |
5048 | .owner = THIS_MODULE, | 5048 | .owner = THIS_MODULE, |
5049 | .open = md_open, | 5049 | .__open = md_open, |
5050 | .release = md_release, | 5050 | .__release = md_release, |
5051 | .ioctl = md_ioctl, | 5051 | .__ioctl = md_ioctl, |
5052 | .getgeo = md_getgeo, | 5052 | .getgeo = md_getgeo, |
5053 | .media_changed = md_media_changed, | 5053 | .media_changed = md_media_changed, |
5054 | .revalidate_disk= md_revalidate, | 5054 | .revalidate_disk= md_revalidate, |