4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
8 #include <linux/init.h>
10 #include <linux/fcntl.h>
11 #include <linux/slab.h>
12 #include <linux/kmod.h>
13 #include <linux/major.h>
14 #include <linux/smp_lock.h>
15 #include <linux/device_cgroup.h>
16 #include <linux/highmem.h>
17 #include <linux/blkdev.h>
18 #include <linux/module.h>
19 #include <linux/blkpg.h>
20 #include <linux/buffer_head.h>
21 #include <linux/pagevec.h>
22 #include <linux/writeback.h>
23 #include <linux/mpage.h>
24 #include <linux/mount.h>
25 #include <linux/uio.h>
26 #include <linux/namei.h>
27 #include <linux/log2.h>
28 #include <linux/kmemleak.h>
29 #include <asm/uaccess.h>
33 struct block_device bdev
;
34 struct inode vfs_inode
;
37 static const struct address_space_operations def_blk_aops
;
39 static inline struct bdev_inode
*BDEV_I(struct inode
*inode
)
41 return container_of(inode
, struct bdev_inode
, vfs_inode
);
44 inline struct block_device
*I_BDEV(struct inode
*inode
)
46 return &BDEV_I(inode
)->bdev
;
49 EXPORT_SYMBOL(I_BDEV
);
51 static sector_t
max_block(struct block_device
*bdev
)
53 sector_t retval
= ~((sector_t
)0);
54 loff_t sz
= i_size_read(bdev
->bd_inode
);
57 unsigned int size
= block_size(bdev
);
58 unsigned int sizebits
= blksize_bits(size
);
59 retval
= (sz
>> sizebits
);
64 /* Kill _all_ buffers and pagecache , dirty or not.. */
65 static void kill_bdev(struct block_device
*bdev
)
67 if (bdev
->bd_inode
->i_mapping
->nrpages
== 0)
70 truncate_inode_pages(bdev
->bd_inode
->i_mapping
, 0);
73 int set_blocksize(struct block_device
*bdev
, int size
)
75 /* Size must be a power of two, and between 512 and PAGE_SIZE */
76 if (size
> PAGE_SIZE
|| size
< 512 || !is_power_of_2(size
))
79 /* Size cannot be smaller than the size supported by the device */
80 if (size
< bdev_logical_block_size(bdev
))
83 /* Don't change the size if it is same as current */
84 if (bdev
->bd_block_size
!= size
) {
86 bdev
->bd_block_size
= size
;
87 bdev
->bd_inode
->i_blkbits
= blksize_bits(size
);
93 EXPORT_SYMBOL(set_blocksize
);
95 int sb_set_blocksize(struct super_block
*sb
, int size
)
97 if (set_blocksize(sb
->s_bdev
, size
))
99 /* If we get here, we know size is power of two
100 * and it's value is between 512 and PAGE_SIZE */
101 sb
->s_blocksize
= size
;
102 sb
->s_blocksize_bits
= blksize_bits(size
);
103 return sb
->s_blocksize
;
106 EXPORT_SYMBOL(sb_set_blocksize
);
108 int sb_min_blocksize(struct super_block
*sb
, int size
)
110 int minsize
= bdev_logical_block_size(sb
->s_bdev
);
113 return sb_set_blocksize(sb
, size
);
116 EXPORT_SYMBOL(sb_min_blocksize
);
119 blkdev_get_block(struct inode
*inode
, sector_t iblock
,
120 struct buffer_head
*bh
, int create
)
122 if (iblock
>= max_block(I_BDEV(inode
))) {
127 * for reads, we're just trying to fill a partial page.
128 * return a hole, they will have to call get_block again
129 * before they can fill it, and they will get -EIO at that
134 bh
->b_bdev
= I_BDEV(inode
);
135 bh
->b_blocknr
= iblock
;
136 set_buffer_mapped(bh
);
141 blkdev_get_blocks(struct inode
*inode
, sector_t iblock
,
142 struct buffer_head
*bh
, int create
)
144 sector_t end_block
= max_block(I_BDEV(inode
));
145 unsigned long max_blocks
= bh
->b_size
>> inode
->i_blkbits
;
147 if ((iblock
+ max_blocks
) > end_block
) {
148 max_blocks
= end_block
- iblock
;
149 if ((long)max_blocks
<= 0) {
151 return -EIO
; /* write fully beyond EOF */
153 * It is a read which is fully beyond EOF. We return
154 * a !buffer_mapped buffer
160 bh
->b_bdev
= I_BDEV(inode
);
161 bh
->b_blocknr
= iblock
;
162 bh
->b_size
= max_blocks
<< inode
->i_blkbits
;
164 set_buffer_mapped(bh
);
169 blkdev_direct_IO(int rw
, struct kiocb
*iocb
, const struct iovec
*iov
,
170 loff_t offset
, unsigned long nr_segs
)
172 struct file
*file
= iocb
->ki_filp
;
173 struct inode
*inode
= file
->f_mapping
->host
;
175 return __blockdev_direct_IO(rw
, iocb
, inode
, I_BDEV(inode
), iov
, offset
,
176 nr_segs
, blkdev_get_blocks
, NULL
, NULL
, 0);
179 int __sync_blockdev(struct block_device
*bdev
, int wait
)
184 return filemap_flush(bdev
->bd_inode
->i_mapping
);
185 return filemap_write_and_wait(bdev
->bd_inode
->i_mapping
);
189 * Write out and wait upon all the dirty data associated with a block
190 * device via its mapping. Does not take the superblock lock.
192 int sync_blockdev(struct block_device
*bdev
)
194 return __sync_blockdev(bdev
, 1);
196 EXPORT_SYMBOL(sync_blockdev
);
199 * Write out and wait upon all dirty data associated with this
200 * device. Filesystem data as well as the underlying block
201 * device. Takes the superblock lock.
203 int fsync_bdev(struct block_device
*bdev
)
205 struct super_block
*sb
= get_super(bdev
);
207 int res
= sync_filesystem(sb
);
211 return sync_blockdev(bdev
);
213 EXPORT_SYMBOL(fsync_bdev
);
216 * freeze_bdev -- lock a filesystem and force it into a consistent state
217 * @bdev: blockdevice to lock
219 * If a superblock is found on this device, we take the s_umount semaphore
220 * on it to make sure nobody unmounts until the snapshot creation is done.
221 * The reference counter (bd_fsfreeze_count) guarantees that only the last
222 * unfreeze process can unfreeze the frozen filesystem actually when multiple
223 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
224 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
227 struct super_block
*freeze_bdev(struct block_device
*bdev
)
229 struct super_block
*sb
;
232 mutex_lock(&bdev
->bd_fsfreeze_mutex
);
233 if (++bdev
->bd_fsfreeze_count
> 1) {
235 * We don't even need to grab a reference - the first call
236 * to freeze_bdev grab an active reference and only the last
237 * thaw_bdev drops it.
239 sb
= get_super(bdev
);
241 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
245 sb
= get_active_super(bdev
);
248 error
= freeze_super(sb
);
250 deactivate_super(sb
);
251 bdev
->bd_fsfreeze_count
--;
252 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
253 return ERR_PTR(error
);
255 deactivate_super(sb
);
258 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
259 return sb
; /* thaw_bdev releases s->s_umount */
261 EXPORT_SYMBOL(freeze_bdev
);
264 * thaw_bdev -- unlock filesystem
265 * @bdev: blockdevice to unlock
266 * @sb: associated superblock
268 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
270 int thaw_bdev(struct block_device
*bdev
, struct super_block
*sb
)
274 mutex_lock(&bdev
->bd_fsfreeze_mutex
);
275 if (!bdev
->bd_fsfreeze_count
)
279 if (--bdev
->bd_fsfreeze_count
> 0)
285 error
= thaw_super(sb
);
287 bdev
->bd_fsfreeze_count
++;
288 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
292 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
295 EXPORT_SYMBOL(thaw_bdev
);
297 static int blkdev_writepage(struct page
*page
, struct writeback_control
*wbc
)
299 return block_write_full_page(page
, blkdev_get_block
, wbc
);
302 static int blkdev_readpage(struct file
* file
, struct page
* page
)
304 return block_read_full_page(page
, blkdev_get_block
);
307 static int blkdev_write_begin(struct file
*file
, struct address_space
*mapping
,
308 loff_t pos
, unsigned len
, unsigned flags
,
309 struct page
**pagep
, void **fsdata
)
311 return block_write_begin(mapping
, pos
, len
, flags
, pagep
,
315 static int blkdev_write_end(struct file
*file
, struct address_space
*mapping
,
316 loff_t pos
, unsigned len
, unsigned copied
,
317 struct page
*page
, void *fsdata
)
320 ret
= block_write_end(file
, mapping
, pos
, len
, copied
, page
, fsdata
);
323 page_cache_release(page
);
330 * for a block special file file->f_path.dentry->d_inode->i_size is zero
331 * so we compute the size by hand (just as in block_read/write above)
333 static loff_t
block_llseek(struct file
*file
, loff_t offset
, int origin
)
335 struct inode
*bd_inode
= file
->f_mapping
->host
;
339 mutex_lock(&bd_inode
->i_mutex
);
340 size
= i_size_read(bd_inode
);
347 offset
+= file
->f_pos
;
350 if (offset
>= 0 && offset
<= size
) {
351 if (offset
!= file
->f_pos
) {
352 file
->f_pos
= offset
;
356 mutex_unlock(&bd_inode
->i_mutex
);
360 int blkdev_fsync(struct file
*filp
, int datasync
)
362 struct inode
*bd_inode
= filp
->f_mapping
->host
;
363 struct block_device
*bdev
= I_BDEV(bd_inode
);
367 * There is no need to serialise calls to blkdev_issue_flush with
368 * i_mutex and doing so causes performance issues with concurrent
369 * O_SYNC writers to a block device.
371 mutex_unlock(&bd_inode
->i_mutex
);
373 error
= blkdev_issue_flush(bdev
, GFP_KERNEL
, NULL
, BLKDEV_IFL_WAIT
);
374 if (error
== -EOPNOTSUPP
)
377 mutex_lock(&bd_inode
->i_mutex
);
381 EXPORT_SYMBOL(blkdev_fsync
);
387 static __cacheline_aligned_in_smp
DEFINE_SPINLOCK(bdev_lock
);
388 static struct kmem_cache
* bdev_cachep __read_mostly
;
390 static struct inode
*bdev_alloc_inode(struct super_block
*sb
)
392 struct bdev_inode
*ei
= kmem_cache_alloc(bdev_cachep
, GFP_KERNEL
);
395 return &ei
->vfs_inode
;
398 static void bdev_destroy_inode(struct inode
*inode
)
400 struct bdev_inode
*bdi
= BDEV_I(inode
);
402 kmem_cache_free(bdev_cachep
, bdi
);
405 static void init_once(void *foo
)
407 struct bdev_inode
*ei
= (struct bdev_inode
*) foo
;
408 struct block_device
*bdev
= &ei
->bdev
;
410 memset(bdev
, 0, sizeof(*bdev
));
411 mutex_init(&bdev
->bd_mutex
);
412 INIT_LIST_HEAD(&bdev
->bd_inodes
);
413 INIT_LIST_HEAD(&bdev
->bd_list
);
415 INIT_LIST_HEAD(&bdev
->bd_holder_list
);
417 inode_init_once(&ei
->vfs_inode
);
418 /* Initialize mutex for freeze. */
419 mutex_init(&bdev
->bd_fsfreeze_mutex
);
422 static inline void __bd_forget(struct inode
*inode
)
424 list_del_init(&inode
->i_devices
);
425 inode
->i_bdev
= NULL
;
426 inode
->i_mapping
= &inode
->i_data
;
429 static void bdev_clear_inode(struct inode
*inode
)
431 struct block_device
*bdev
= &BDEV_I(inode
)->bdev
;
433 spin_lock(&bdev_lock
);
434 while ( (p
= bdev
->bd_inodes
.next
) != &bdev
->bd_inodes
) {
435 __bd_forget(list_entry(p
, struct inode
, i_devices
));
437 list_del_init(&bdev
->bd_list
);
438 spin_unlock(&bdev_lock
);
441 static const struct super_operations bdev_sops
= {
442 .statfs
= simple_statfs
,
443 .alloc_inode
= bdev_alloc_inode
,
444 .destroy_inode
= bdev_destroy_inode
,
445 .drop_inode
= generic_delete_inode
,
446 .clear_inode
= bdev_clear_inode
,
449 static int bd_get_sb(struct file_system_type
*fs_type
,
450 int flags
, const char *dev_name
, void *data
, struct vfsmount
*mnt
)
452 return get_sb_pseudo(fs_type
, "bdev:", &bdev_sops
, 0x62646576, mnt
);
455 static struct file_system_type bd_type
= {
458 .kill_sb
= kill_anon_super
,
461 struct super_block
*blockdev_superblock __read_mostly
;
463 void __init
bdev_cache_init(void)
466 struct vfsmount
*bd_mnt
;
468 bdev_cachep
= kmem_cache_create("bdev_cache", sizeof(struct bdev_inode
),
469 0, (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
470 SLAB_MEM_SPREAD
|SLAB_PANIC
),
472 err
= register_filesystem(&bd_type
);
474 panic("Cannot register bdev pseudo-fs");
475 bd_mnt
= kern_mount(&bd_type
);
477 panic("Cannot create bdev pseudo-fs");
479 * This vfsmount structure is only used to obtain the
480 * blockdev_superblock, so tell kmemleak not to report it.
482 kmemleak_not_leak(bd_mnt
);
483 blockdev_superblock
= bd_mnt
->mnt_sb
; /* For writeback */
487 * Most likely _very_ bad one - but then it's hardly critical for small
488 * /dev and can be fixed when somebody will need really large one.
489 * Keep in mind that it will be fed through icache hash function too.
491 static inline unsigned long hash(dev_t dev
)
493 return MAJOR(dev
)+MINOR(dev
);
496 static int bdev_test(struct inode
*inode
, void *data
)
498 return BDEV_I(inode
)->bdev
.bd_dev
== *(dev_t
*)data
;
501 static int bdev_set(struct inode
*inode
, void *data
)
503 BDEV_I(inode
)->bdev
.bd_dev
= *(dev_t
*)data
;
507 static LIST_HEAD(all_bdevs
);
509 struct block_device
*bdget(dev_t dev
)
511 struct block_device
*bdev
;
514 inode
= iget5_locked(blockdev_superblock
, hash(dev
),
515 bdev_test
, bdev_set
, &dev
);
520 bdev
= &BDEV_I(inode
)->bdev
;
522 if (inode
->i_state
& I_NEW
) {
523 bdev
->bd_contains
= NULL
;
524 bdev
->bd_inode
= inode
;
525 bdev
->bd_block_size
= (1 << inode
->i_blkbits
);
526 bdev
->bd_part_count
= 0;
527 bdev
->bd_invalidated
= 0;
528 inode
->i_mode
= S_IFBLK
;
530 inode
->i_bdev
= bdev
;
531 inode
->i_data
.a_ops
= &def_blk_aops
;
532 mapping_set_gfp_mask(&inode
->i_data
, GFP_USER
);
533 inode
->i_data
.backing_dev_info
= &default_backing_dev_info
;
534 spin_lock(&bdev_lock
);
535 list_add(&bdev
->bd_list
, &all_bdevs
);
536 spin_unlock(&bdev_lock
);
537 unlock_new_inode(inode
);
542 EXPORT_SYMBOL(bdget
);
545 * bdgrab -- Grab a reference to an already referenced block device
546 * @bdev: Block device to grab a reference to.
548 struct block_device
*bdgrab(struct block_device
*bdev
)
550 atomic_inc(&bdev
->bd_inode
->i_count
);
554 long nr_blockdev_pages(void)
556 struct block_device
*bdev
;
558 spin_lock(&bdev_lock
);
559 list_for_each_entry(bdev
, &all_bdevs
, bd_list
) {
560 ret
+= bdev
->bd_inode
->i_mapping
->nrpages
;
562 spin_unlock(&bdev_lock
);
566 void bdput(struct block_device
*bdev
)
568 iput(bdev
->bd_inode
);
571 EXPORT_SYMBOL(bdput
);
573 static struct block_device
*bd_acquire(struct inode
*inode
)
575 struct block_device
*bdev
;
577 spin_lock(&bdev_lock
);
578 bdev
= inode
->i_bdev
;
580 atomic_inc(&bdev
->bd_inode
->i_count
);
581 spin_unlock(&bdev_lock
);
584 spin_unlock(&bdev_lock
);
586 bdev
= bdget(inode
->i_rdev
);
588 spin_lock(&bdev_lock
);
589 if (!inode
->i_bdev
) {
591 * We take an additional bd_inode->i_count for inode,
592 * and it's released in clear_inode() of inode.
593 * So, we can access it via ->i_mapping always
596 atomic_inc(&bdev
->bd_inode
->i_count
);
597 inode
->i_bdev
= bdev
;
598 inode
->i_mapping
= bdev
->bd_inode
->i_mapping
;
599 list_add(&inode
->i_devices
, &bdev
->bd_inodes
);
601 spin_unlock(&bdev_lock
);
606 /* Call when you free inode */
608 void bd_forget(struct inode
*inode
)
610 struct block_device
*bdev
= NULL
;
612 spin_lock(&bdev_lock
);
614 if (!sb_is_blkdev_sb(inode
->i_sb
))
615 bdev
= inode
->i_bdev
;
618 spin_unlock(&bdev_lock
);
621 iput(bdev
->bd_inode
);
625 * bd_may_claim - test whether a block device can be claimed
626 * @bdev: block device of interest
627 * @whole: whole block device containing @bdev, may equal @bdev
628 * @holder: holder trying to claim @bdev
630 * Test whther @bdev can be claimed by @holder.
633 * spin_lock(&bdev_lock).
636 * %true if @bdev can be claimed, %false otherwise.
638 static bool bd_may_claim(struct block_device
*bdev
, struct block_device
*whole
,
641 if (bdev
->bd_holder
== holder
)
642 return true; /* already a holder */
643 else if (bdev
->bd_holder
!= NULL
)
644 return false; /* held by someone else */
645 else if (bdev
->bd_contains
== bdev
)
646 return true; /* is a whole device which isn't held */
648 else if (whole
->bd_holder
== bd_claim
)
649 return true; /* is a partition of a device that is being partitioned */
650 else if (whole
->bd_holder
!= NULL
)
651 return false; /* is a partition of a held device */
653 return true; /* is a partition of an un-held device */
657 * bd_prepare_to_claim - prepare to claim a block device
658 * @bdev: block device of interest
659 * @whole: the whole device containing @bdev, may equal @bdev
660 * @holder: holder trying to claim @bdev
662 * Prepare to claim @bdev. This function fails if @bdev is already
663 * claimed by another holder and waits if another claiming is in
664 * progress. This function doesn't actually claim. On successful
665 * return, the caller has ownership of bd_claiming and bd_holder[s].
668 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
672 * 0 if @bdev can be claimed, -EBUSY otherwise.
674 static int bd_prepare_to_claim(struct block_device
*bdev
,
675 struct block_device
*whole
, void *holder
)
678 /* if someone else claimed, fail */
679 if (!bd_may_claim(bdev
, whole
, holder
))
682 /* if someone else is claiming, wait for it to finish */
683 if (whole
->bd_claiming
&& whole
->bd_claiming
!= holder
) {
684 wait_queue_head_t
*wq
= bit_waitqueue(&whole
->bd_claiming
, 0);
687 prepare_to_wait(wq
, &wait
, TASK_UNINTERRUPTIBLE
);
688 spin_unlock(&bdev_lock
);
690 finish_wait(wq
, &wait
);
691 spin_lock(&bdev_lock
);
700 * bd_start_claiming - start claiming a block device
701 * @bdev: block device of interest
702 * @holder: holder trying to claim @bdev
704 * @bdev is about to be opened exclusively. Check @bdev can be opened
705 * exclusively and mark that an exclusive open is in progress. Each
706 * successful call to this function must be matched with a call to
707 * either bd_finish_claiming() or bd_abort_claiming() (which do not
710 * This function is used to gain exclusive access to the block device
711 * without actually causing other exclusive open attempts to fail. It
712 * should be used when the open sequence itself requires exclusive
713 * access but may subsequently fail.
719 * Pointer to the block device containing @bdev on success, ERR_PTR()
722 static struct block_device
*bd_start_claiming(struct block_device
*bdev
,
725 struct gendisk
*disk
;
726 struct block_device
*whole
;
732 * @bdev might not have been initialized properly yet, look up
733 * and grab the outer block device the hard way.
735 disk
= get_gendisk(bdev
->bd_dev
, &partno
);
737 return ERR_PTR(-ENXIO
);
739 whole
= bdget_disk(disk
, 0);
740 module_put(disk
->fops
->owner
);
743 return ERR_PTR(-ENOMEM
);
745 /* prepare to claim, if successful, mark claiming in progress */
746 spin_lock(&bdev_lock
);
748 err
= bd_prepare_to_claim(bdev
, whole
, holder
);
750 whole
->bd_claiming
= holder
;
751 spin_unlock(&bdev_lock
);
754 spin_unlock(&bdev_lock
);
760 /* releases bdev_lock */
761 static void __bd_abort_claiming(struct block_device
*whole
, void *holder
)
763 BUG_ON(whole
->bd_claiming
!= holder
);
764 whole
->bd_claiming
= NULL
;
765 wake_up_bit(&whole
->bd_claiming
, 0);
767 spin_unlock(&bdev_lock
);
772 * bd_abort_claiming - abort claiming a block device
773 * @whole: whole block device returned by bd_start_claiming()
774 * @holder: holder trying to claim @bdev
776 * Abort a claiming block started by bd_start_claiming(). Note that
777 * @whole is not the block device to be claimed but the whole device
778 * returned by bd_start_claiming().
781 * Grabs and releases bdev_lock.
783 static void bd_abort_claiming(struct block_device
*whole
, void *holder
)
785 spin_lock(&bdev_lock
);
786 __bd_abort_claiming(whole
, holder
); /* releases bdev_lock */
789 /* increment holders when we have a legitimate claim. requires bdev_lock */
790 static void __bd_claim(struct block_device
*bdev
, struct block_device
*whole
,
793 /* note that for a whole device bd_holders
794 * will be incremented twice, and bd_holder will
795 * be set to bd_claim before being set to holder
798 whole
->bd_holder
= bd_claim
;
800 bdev
->bd_holder
= holder
;
804 * bd_finish_claiming - finish claiming a block device
805 * @bdev: block device of interest (passed to bd_start_claiming())
806 * @whole: whole block device returned by bd_start_claiming()
807 * @holder: holder trying to claim @bdev
809 * Finish a claiming block started by bd_start_claiming().
812 * Grabs and releases bdev_lock.
814 static void bd_finish_claiming(struct block_device
*bdev
,
815 struct block_device
*whole
, void *holder
)
817 spin_lock(&bdev_lock
);
818 BUG_ON(!bd_may_claim(bdev
, whole
, holder
));
819 __bd_claim(bdev
, whole
, holder
);
820 __bd_abort_claiming(whole
, holder
); /* not actually an abort */
824 * bd_claim - claim a block device
825 * @bdev: block device to claim
826 * @holder: holder trying to claim @bdev
828 * Try to claim @bdev which must have been opened successfully.
834 * 0 if successful, -EBUSY if @bdev is already claimed.
836 int bd_claim(struct block_device
*bdev
, void *holder
)
838 struct block_device
*whole
= bdev
->bd_contains
;
843 spin_lock(&bdev_lock
);
844 res
= bd_prepare_to_claim(bdev
, whole
, holder
);
846 __bd_claim(bdev
, whole
, holder
);
847 spin_unlock(&bdev_lock
);
851 EXPORT_SYMBOL(bd_claim
);
853 void bd_release(struct block_device
*bdev
)
855 spin_lock(&bdev_lock
);
856 if (!--bdev
->bd_contains
->bd_holders
)
857 bdev
->bd_contains
->bd_holder
= NULL
;
858 if (!--bdev
->bd_holders
)
859 bdev
->bd_holder
= NULL
;
860 spin_unlock(&bdev_lock
);
863 EXPORT_SYMBOL(bd_release
);
867 * Functions for bd_claim_by_kobject / bd_release_from_kobject
869 * If a kobject is passed to bd_claim_by_kobject()
870 * and the kobject has a parent directory,
871 * following symlinks are created:
872 * o from the kobject to the claimed bdev
873 * o from "holders" directory of the bdev to the parent of the kobject
874 * bd_release_from_kobject() removes these symlinks.
877 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
878 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
879 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
880 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
883 static int add_symlink(struct kobject
*from
, struct kobject
*to
)
887 return sysfs_create_link(from
, to
, kobject_name(to
));
890 static void del_symlink(struct kobject
*from
, struct kobject
*to
)
894 sysfs_remove_link(from
, kobject_name(to
));
898 * 'struct bd_holder' contains pointers to kobjects symlinked by
899 * bd_claim_by_kobject.
900 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
903 struct list_head list
; /* chain of holders of the bdev */
904 int count
; /* references from the holder */
905 struct kobject
*sdir
; /* holder object, e.g. "/block/dm-0/slaves" */
906 struct kobject
*hdev
; /* e.g. "/block/dm-0" */
907 struct kobject
*hdir
; /* e.g. "/block/sda/holders" */
908 struct kobject
*sdev
; /* e.g. "/block/sda" */
912 * Get references of related kobjects at once.
913 * Returns 1 on success. 0 on failure.
915 * Should call bd_holder_release_dirs() after successful use.
917 static int bd_holder_grab_dirs(struct block_device
*bdev
,
918 struct bd_holder
*bo
)
923 bo
->sdir
= kobject_get(bo
->sdir
);
927 bo
->hdev
= kobject_get(bo
->sdir
->parent
);
931 bo
->sdev
= kobject_get(&part_to_dev(bdev
->bd_part
)->kobj
);
935 bo
->hdir
= kobject_get(bdev
->bd_part
->holder_dir
);
942 kobject_put(bo
->sdev
);
944 kobject_put(bo
->hdev
);
946 kobject_put(bo
->sdir
);
951 /* Put references of related kobjects at once. */
952 static void bd_holder_release_dirs(struct bd_holder
*bo
)
954 kobject_put(bo
->hdir
);
955 kobject_put(bo
->sdev
);
956 kobject_put(bo
->hdev
);
957 kobject_put(bo
->sdir
);
960 static struct bd_holder
*alloc_bd_holder(struct kobject
*kobj
)
962 struct bd_holder
*bo
;
964 bo
= kzalloc(sizeof(*bo
), GFP_KERNEL
);
974 static void free_bd_holder(struct bd_holder
*bo
)
980 * find_bd_holder - find matching struct bd_holder from the block device
982 * @bdev: struct block device to be searched
983 * @bo: target struct bd_holder
985 * Returns matching entry with @bo in @bdev->bd_holder_list.
986 * If found, increment the reference count and return the pointer.
987 * If not found, returns NULL.
989 static struct bd_holder
*find_bd_holder(struct block_device
*bdev
,
990 struct bd_holder
*bo
)
992 struct bd_holder
*tmp
;
994 list_for_each_entry(tmp
, &bdev
->bd_holder_list
, list
)
995 if (tmp
->sdir
== bo
->sdir
) {
1004 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
1006 * @bdev: block device to be bd_claimed
1007 * @bo: preallocated and initialized by alloc_bd_holder()
1009 * Add @bo to @bdev->bd_holder_list, create symlinks.
1011 * Returns 0 if symlinks are created.
1012 * Returns -ve if something fails.
1014 static int add_bd_holder(struct block_device
*bdev
, struct bd_holder
*bo
)
1021 if (!bd_holder_grab_dirs(bdev
, bo
))
1024 err
= add_symlink(bo
->sdir
, bo
->sdev
);
1028 err
= add_symlink(bo
->hdir
, bo
->hdev
);
1030 del_symlink(bo
->sdir
, bo
->sdev
);
1034 list_add_tail(&bo
->list
, &bdev
->bd_holder_list
);
1039 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
1041 * @bdev: block device to be bd_claimed
1042 * @kobj: holder's kobject
1044 * If there is matching entry with @kobj in @bdev->bd_holder_list
1045 * and no other bd_claim() from the same kobject,
1046 * remove the struct bd_holder from the list, delete symlinks for it.
1048 * Returns a pointer to the struct bd_holder when it's removed from the list
1049 * and ready to be freed.
1050 * Returns NULL if matching claim isn't found or there is other bd_claim()
1051 * by the same kobject.
1053 static struct bd_holder
*del_bd_holder(struct block_device
*bdev
,
1054 struct kobject
*kobj
)
1056 struct bd_holder
*bo
;
1058 list_for_each_entry(bo
, &bdev
->bd_holder_list
, list
) {
1059 if (bo
->sdir
== kobj
) {
1061 BUG_ON(bo
->count
< 0);
1063 list_del(&bo
->list
);
1064 del_symlink(bo
->sdir
, bo
->sdev
);
1065 del_symlink(bo
->hdir
, bo
->hdev
);
1066 bd_holder_release_dirs(bo
);
1077 * bd_claim_by_kobject - bd_claim() with additional kobject signature
1079 * @bdev: block device to be claimed
1080 * @holder: holder's signature
1081 * @kobj: holder's kobject
1083 * Do bd_claim() and if it succeeds, create sysfs symlinks between
1084 * the bdev and the holder's kobject.
1085 * Use bd_release_from_kobject() when relesing the claimed bdev.
1087 * Returns 0 on success. (same as bd_claim())
1088 * Returns errno on failure.
1090 static int bd_claim_by_kobject(struct block_device
*bdev
, void *holder
,
1091 struct kobject
*kobj
)
1094 struct bd_holder
*bo
, *found
;
1099 bo
= alloc_bd_holder(kobj
);
1103 mutex_lock(&bdev
->bd_mutex
);
1105 err
= bd_claim(bdev
, holder
);
1109 found
= find_bd_holder(bdev
, bo
);
1113 err
= add_bd_holder(bdev
, bo
);
1119 mutex_unlock(&bdev
->bd_mutex
);
1125 * bd_release_from_kobject - bd_release() with additional kobject signature
1127 * @bdev: block device to be released
1128 * @kobj: holder's kobject
1130 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
1132 static void bd_release_from_kobject(struct block_device
*bdev
,
1133 struct kobject
*kobj
)
1138 mutex_lock(&bdev
->bd_mutex
);
1140 free_bd_holder(del_bd_holder(bdev
, kobj
));
1141 mutex_unlock(&bdev
->bd_mutex
);
1145 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
1147 * @bdev: block device to be claimed
1148 * @holder: holder's signature
1149 * @disk: holder's gendisk
1151 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
1153 int bd_claim_by_disk(struct block_device
*bdev
, void *holder
,
1154 struct gendisk
*disk
)
1156 return bd_claim_by_kobject(bdev
, holder
, kobject_get(disk
->slave_dir
));
1158 EXPORT_SYMBOL_GPL(bd_claim_by_disk
);
1161 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
1163 * @bdev: block device to be claimed
1164 * @disk: holder's gendisk
1166 * Call bd_release_from_kobject() and put @disk->slave_dir.
1168 void bd_release_from_disk(struct block_device
*bdev
, struct gendisk
*disk
)
1170 bd_release_from_kobject(bdev
, disk
->slave_dir
);
1171 kobject_put(disk
->slave_dir
);
1173 EXPORT_SYMBOL_GPL(bd_release_from_disk
);
1177 * Tries to open block device by device number. Use it ONLY if you
1178 * really do not have anything better - i.e. when you are behind a
1179 * truly sucky interface and all you are given is a device number. _Never_
1180 * to be used for internal purposes. If you ever need it - reconsider
1183 struct block_device
*open_by_devnum(dev_t dev
, fmode_t mode
)
1185 struct block_device
*bdev
= bdget(dev
);
1188 err
= blkdev_get(bdev
, mode
);
1189 return err
? ERR_PTR(err
) : bdev
;
1192 EXPORT_SYMBOL(open_by_devnum
);
1195 * flush_disk - invalidates all buffer-cache entries on a disk
1197 * @bdev: struct block device to be flushed
1199 * Invalidates all buffer-cache entries on a disk. It should be called
1200 * when a disk has been changed -- either by a media change or online
1203 static void flush_disk(struct block_device
*bdev
)
1205 if (__invalidate_device(bdev
)) {
1206 char name
[BDEVNAME_SIZE
] = "";
1209 disk_name(bdev
->bd_disk
, 0, name
);
1210 printk(KERN_WARNING
"VFS: busy inodes on changed media or "
1211 "resized disk %s\n", name
);
1216 if (disk_partitionable(bdev
->bd_disk
))
1217 bdev
->bd_invalidated
= 1;
1221 * check_disk_size_change - checks for disk size change and adjusts bdev size.
1222 * @disk: struct gendisk to check
1223 * @bdev: struct bdev to adjust.
1225 * This routine checks to see if the bdev size does not match the disk size
1226 * and adjusts it if it differs.
1228 void check_disk_size_change(struct gendisk
*disk
, struct block_device
*bdev
)
1230 loff_t disk_size
, bdev_size
;
1232 disk_size
= (loff_t
)get_capacity(disk
) << 9;
1233 bdev_size
= i_size_read(bdev
->bd_inode
);
1234 if (disk_size
!= bdev_size
) {
1235 char name
[BDEVNAME_SIZE
];
1237 disk_name(disk
, 0, name
);
1239 "%s: detected capacity change from %lld to %lld\n",
1240 name
, bdev_size
, disk_size
);
1241 i_size_write(bdev
->bd_inode
, disk_size
);
1245 EXPORT_SYMBOL(check_disk_size_change
);
1248 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
1249 * @disk: struct gendisk to be revalidated
1251 * This routine is a wrapper for lower-level driver's revalidate_disk
1252 * call-backs. It is used to do common pre and post operations needed
1253 * for all revalidate_disk operations.
1255 int revalidate_disk(struct gendisk
*disk
)
1257 struct block_device
*bdev
;
1260 if (disk
->fops
->revalidate_disk
)
1261 ret
= disk
->fops
->revalidate_disk(disk
);
1263 bdev
= bdget_disk(disk
, 0);
1267 mutex_lock(&bdev
->bd_mutex
);
1268 check_disk_size_change(disk
, bdev
);
1269 mutex_unlock(&bdev
->bd_mutex
);
1273 EXPORT_SYMBOL(revalidate_disk
);
1276 * This routine checks whether a removable media has been changed,
1277 * and invalidates all buffer-cache-entries in that case. This
1278 * is a relatively slow routine, so we have to try to minimize using
1279 * it. Thus it is called only upon a 'mount' or 'open'. This
1280 * is the best way of combining speed and utility, I think.
1281 * People changing diskettes in the middle of an operation deserve
1284 int check_disk_change(struct block_device
*bdev
)
1286 struct gendisk
*disk
= bdev
->bd_disk
;
1287 const struct block_device_operations
*bdops
= disk
->fops
;
1289 if (!bdops
->media_changed
)
1291 if (!bdops
->media_changed(bdev
->bd_disk
))
1295 if (bdops
->revalidate_disk
)
1296 bdops
->revalidate_disk(bdev
->bd_disk
);
1300 EXPORT_SYMBOL(check_disk_change
);
1302 void bd_set_size(struct block_device
*bdev
, loff_t size
)
1304 unsigned bsize
= bdev_logical_block_size(bdev
);
1306 bdev
->bd_inode
->i_size
= size
;
1307 while (bsize
< PAGE_CACHE_SIZE
) {
1312 bdev
->bd_block_size
= bsize
;
1313 bdev
->bd_inode
->i_blkbits
= blksize_bits(bsize
);
1315 EXPORT_SYMBOL(bd_set_size
);
1317 static int __blkdev_put(struct block_device
*bdev
, fmode_t mode
, int for_part
);
1322 * mutex_lock(part->bd_mutex)
1323 * mutex_lock_nested(whole->bd_mutex, 1)
1326 static int __blkdev_get(struct block_device
*bdev
, fmode_t mode
, int for_part
)
1328 struct gendisk
*disk
;
1333 if (mode
& FMODE_READ
)
1335 if (mode
& FMODE_WRITE
)
1338 * hooks: /n/, see "layering violations".
1340 ret
= devcgroup_inode_permission(bdev
->bd_inode
, perm
);
1350 disk
= get_gendisk(bdev
->bd_dev
, &partno
);
1352 goto out_unlock_kernel
;
1354 mutex_lock_nested(&bdev
->bd_mutex
, for_part
);
1355 if (!bdev
->bd_openers
) {
1356 bdev
->bd_disk
= disk
;
1357 bdev
->bd_contains
= bdev
;
1359 struct backing_dev_info
*bdi
;
1362 bdev
->bd_part
= disk_get_part(disk
, partno
);
1366 if (disk
->fops
->open
) {
1367 ret
= disk
->fops
->open(bdev
, mode
);
1368 if (ret
== -ERESTARTSYS
) {
1369 /* Lost a race with 'disk' being
1370 * deleted, try again.
1373 disk_put_part(bdev
->bd_part
);
1374 bdev
->bd_part
= NULL
;
1375 module_put(disk
->fops
->owner
);
1377 bdev
->bd_disk
= NULL
;
1378 mutex_unlock(&bdev
->bd_mutex
);
1384 if (!bdev
->bd_openers
) {
1385 bd_set_size(bdev
,(loff_t
)get_capacity(disk
)<<9);
1386 bdi
= blk_get_backing_dev_info(bdev
);
1388 bdi
= &default_backing_dev_info
;
1389 bdev
->bd_inode
->i_data
.backing_dev_info
= bdi
;
1391 if (bdev
->bd_invalidated
)
1392 rescan_partitions(disk
, bdev
);
1394 struct block_device
*whole
;
1395 whole
= bdget_disk(disk
, 0);
1400 ret
= __blkdev_get(whole
, mode
, 1);
1403 bdev
->bd_contains
= whole
;
1404 bdev
->bd_inode
->i_data
.backing_dev_info
=
1405 whole
->bd_inode
->i_data
.backing_dev_info
;
1406 bdev
->bd_part
= disk_get_part(disk
, partno
);
1407 if (!(disk
->flags
& GENHD_FL_UP
) ||
1408 !bdev
->bd_part
|| !bdev
->bd_part
->nr_sects
) {
1412 bd_set_size(bdev
, (loff_t
)bdev
->bd_part
->nr_sects
<< 9);
1415 module_put(disk
->fops
->owner
);
1418 if (bdev
->bd_contains
== bdev
) {
1419 if (bdev
->bd_disk
->fops
->open
) {
1420 ret
= bdev
->bd_disk
->fops
->open(bdev
, mode
);
1422 goto out_unlock_bdev
;
1424 if (bdev
->bd_invalidated
)
1425 rescan_partitions(bdev
->bd_disk
, bdev
);
1430 bdev
->bd_part_count
++;
1431 mutex_unlock(&bdev
->bd_mutex
);
1436 disk_put_part(bdev
->bd_part
);
1437 bdev
->bd_disk
= NULL
;
1438 bdev
->bd_part
= NULL
;
1439 bdev
->bd_inode
->i_data
.backing_dev_info
= &default_backing_dev_info
;
1440 if (bdev
!= bdev
->bd_contains
)
1441 __blkdev_put(bdev
->bd_contains
, mode
, 1);
1442 bdev
->bd_contains
= NULL
;
1444 mutex_unlock(&bdev
->bd_mutex
);
1449 module_put(disk
->fops
->owner
);
1456 int blkdev_get(struct block_device
*bdev
, fmode_t mode
)
1458 return __blkdev_get(bdev
, mode
, 0);
1460 EXPORT_SYMBOL(blkdev_get
);
1462 static int blkdev_open(struct inode
* inode
, struct file
* filp
)
1464 struct block_device
*whole
= NULL
;
1465 struct block_device
*bdev
;
1469 * Preserve backwards compatibility and allow large file access
1470 * even if userspace doesn't ask for it explicitly. Some mkfs
1471 * binary needs it. We might want to drop this workaround
1472 * during an unstable branch.
1474 filp
->f_flags
|= O_LARGEFILE
;
1476 if (filp
->f_flags
& O_NDELAY
)
1477 filp
->f_mode
|= FMODE_NDELAY
;
1478 if (filp
->f_flags
& O_EXCL
)
1479 filp
->f_mode
|= FMODE_EXCL
;
1480 if ((filp
->f_flags
& O_ACCMODE
) == 3)
1481 filp
->f_mode
|= FMODE_WRITE_IOCTL
;
1483 bdev
= bd_acquire(inode
);
1487 if (filp
->f_mode
& FMODE_EXCL
) {
1488 whole
= bd_start_claiming(bdev
, filp
);
1489 if (IS_ERR(whole
)) {
1491 return PTR_ERR(whole
);
1495 filp
->f_mapping
= bdev
->bd_inode
->i_mapping
;
1497 res
= blkdev_get(bdev
, filp
->f_mode
);
1501 bd_finish_claiming(bdev
, whole
, filp
);
1503 bd_abort_claiming(whole
, filp
);
1509 static int __blkdev_put(struct block_device
*bdev
, fmode_t mode
, int for_part
)
1512 struct gendisk
*disk
= bdev
->bd_disk
;
1513 struct block_device
*victim
= NULL
;
1515 mutex_lock_nested(&bdev
->bd_mutex
, for_part
);
1518 bdev
->bd_part_count
--;
1520 if (!--bdev
->bd_openers
) {
1521 sync_blockdev(bdev
);
1524 if (bdev
->bd_contains
== bdev
) {
1525 if (disk
->fops
->release
)
1526 ret
= disk
->fops
->release(disk
, mode
);
1528 if (!bdev
->bd_openers
) {
1529 struct module
*owner
= disk
->fops
->owner
;
1533 disk_put_part(bdev
->bd_part
);
1534 bdev
->bd_part
= NULL
;
1535 bdev
->bd_disk
= NULL
;
1536 bdev
->bd_inode
->i_data
.backing_dev_info
= &default_backing_dev_info
;
1537 if (bdev
!= bdev
->bd_contains
)
1538 victim
= bdev
->bd_contains
;
1539 bdev
->bd_contains
= NULL
;
1542 mutex_unlock(&bdev
->bd_mutex
);
1545 __blkdev_put(victim
, mode
, 1);
1549 int blkdev_put(struct block_device
*bdev
, fmode_t mode
)
1551 return __blkdev_put(bdev
, mode
, 0);
1553 EXPORT_SYMBOL(blkdev_put
);
1555 static int blkdev_close(struct inode
* inode
, struct file
* filp
)
1557 struct block_device
*bdev
= I_BDEV(filp
->f_mapping
->host
);
1558 if (bdev
->bd_holder
== filp
)
1560 return blkdev_put(bdev
, filp
->f_mode
);
1563 static long block_ioctl(struct file
*file
, unsigned cmd
, unsigned long arg
)
1565 struct block_device
*bdev
= I_BDEV(file
->f_mapping
->host
);
1566 fmode_t mode
= file
->f_mode
;
1569 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1570 * to updated it before every ioctl.
1572 if (file
->f_flags
& O_NDELAY
)
1573 mode
|= FMODE_NDELAY
;
1575 mode
&= ~FMODE_NDELAY
;
1577 return blkdev_ioctl(bdev
, mode
, cmd
, arg
);
1581 * Write data to the block device. Only intended for the block device itself
1582 * and the raw driver which basically is a fake block device.
1584 * Does not take i_mutex for the write and thus is not for general purpose
1587 ssize_t
blkdev_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
1588 unsigned long nr_segs
, loff_t pos
)
1590 struct file
*file
= iocb
->ki_filp
;
1593 BUG_ON(iocb
->ki_pos
!= pos
);
1595 ret
= __generic_file_aio_write(iocb
, iov
, nr_segs
, &iocb
->ki_pos
);
1596 if (ret
> 0 || ret
== -EIOCBQUEUED
) {
1599 err
= generic_write_sync(file
, pos
, ret
);
1600 if (err
< 0 && ret
> 0)
1605 EXPORT_SYMBOL_GPL(blkdev_aio_write
);
1608 * Try to release a page associated with block device when the system
1609 * is under memory pressure.
1611 static int blkdev_releasepage(struct page
*page
, gfp_t wait
)
1613 struct super_block
*super
= BDEV_I(page
->mapping
->host
)->bdev
.bd_super
;
1615 if (super
&& super
->s_op
->bdev_try_to_free_page
)
1616 return super
->s_op
->bdev_try_to_free_page(super
, page
, wait
);
1618 return try_to_free_buffers(page
);
1621 static const struct address_space_operations def_blk_aops
= {
1622 .readpage
= blkdev_readpage
,
1623 .writepage
= blkdev_writepage
,
1624 .sync_page
= block_sync_page
,
1625 .write_begin
= blkdev_write_begin
,
1626 .write_end
= blkdev_write_end
,
1627 .writepages
= generic_writepages
,
1628 .releasepage
= blkdev_releasepage
,
1629 .direct_IO
= blkdev_direct_IO
,
1632 const struct file_operations def_blk_fops
= {
1633 .open
= blkdev_open
,
1634 .release
= blkdev_close
,
1635 .llseek
= block_llseek
,
1636 .read
= do_sync_read
,
1637 .write
= do_sync_write
,
1638 .aio_read
= generic_file_aio_read
,
1639 .aio_write
= blkdev_aio_write
,
1640 .mmap
= generic_file_mmap
,
1641 .fsync
= blkdev_fsync
,
1642 .unlocked_ioctl
= block_ioctl
,
1643 #ifdef CONFIG_COMPAT
1644 .compat_ioctl
= compat_blkdev_ioctl
,
1646 .splice_read
= generic_file_splice_read
,
1647 .splice_write
= generic_file_splice_write
,
1650 int ioctl_by_bdev(struct block_device
*bdev
, unsigned cmd
, unsigned long arg
)
1653 mm_segment_t old_fs
= get_fs();
1655 res
= blkdev_ioctl(bdev
, 0, cmd
, arg
);
1660 EXPORT_SYMBOL(ioctl_by_bdev
);
1663 * lookup_bdev - lookup a struct block_device by name
1664 * @pathname: special file representing the block device
1666 * Get a reference to the blockdevice at @pathname in the current
1667 * namespace if possible and return it. Return ERR_PTR(error)
1670 struct block_device
*lookup_bdev(const char *pathname
)
1672 struct block_device
*bdev
;
1673 struct inode
*inode
;
1677 if (!pathname
|| !*pathname
)
1678 return ERR_PTR(-EINVAL
);
1680 error
= kern_path(pathname
, LOOKUP_FOLLOW
, &path
);
1682 return ERR_PTR(error
);
1684 inode
= path
.dentry
->d_inode
;
1686 if (!S_ISBLK(inode
->i_mode
))
1689 if (path
.mnt
->mnt_flags
& MNT_NODEV
)
1692 bdev
= bd_acquire(inode
);
1699 bdev
= ERR_PTR(error
);
1702 EXPORT_SYMBOL(lookup_bdev
);
1705 * open_bdev_exclusive - open a block device by name and set it up for use
1707 * @path: special file representing the block device
1708 * @mode: FMODE_... combination to pass be used
1709 * @holder: owner for exclusion
1711 * Open the blockdevice described by the special file at @path, claim it
1714 struct block_device
*open_bdev_exclusive(const char *path
, fmode_t mode
, void *holder
)
1716 struct block_device
*bdev
, *whole
;
1719 bdev
= lookup_bdev(path
);
1723 whole
= bd_start_claiming(bdev
, holder
);
1724 if (IS_ERR(whole
)) {
1729 error
= blkdev_get(bdev
, mode
);
1731 goto out_abort_claiming
;
1734 if ((mode
& FMODE_WRITE
) && bdev_read_only(bdev
))
1735 goto out_blkdev_put
;
1737 bd_finish_claiming(bdev
, whole
, holder
);
1741 blkdev_put(bdev
, mode
);
1743 bd_abort_claiming(whole
, holder
);
1744 return ERR_PTR(error
);
1747 EXPORT_SYMBOL(open_bdev_exclusive
);
1750 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
1752 * @bdev: blockdevice to close
1753 * @mode: mode, must match that used to open.
1755 * This is the counterpart to open_bdev_exclusive().
1757 void close_bdev_exclusive(struct block_device
*bdev
, fmode_t mode
)
1760 blkdev_put(bdev
, mode
);
1763 EXPORT_SYMBOL(close_bdev_exclusive
);
1765 int __invalidate_device(struct block_device
*bdev
)
1767 struct super_block
*sb
= get_super(bdev
);
1772 * no need to lock the super, get_super holds the
1773 * read mutex so the filesystem cannot go away
1774 * under us (->put_super runs with the write lock
1777 shrink_dcache_sb(sb
);
1778 res
= invalidate_inodes(sb
);
1781 invalidate_bdev(bdev
);
1784 EXPORT_SYMBOL(__invalidate_device
);