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/device_cgroup.h>
15 #include <linux/highmem.h>
16 #include <linux/blkdev.h>
17 #include <linux/module.h>
18 #include <linux/blkpg.h>
19 #include <linux/magic.h>
20 #include <linux/buffer_head.h>
21 #include <linux/swap.h>
22 #include <linux/pagevec.h>
23 #include <linux/writeback.h>
24 #include <linux/mpage.h>
25 #include <linux/mount.h>
26 #include <linux/uio.h>
27 #include <linux/namei.h>
28 #include <linux/log2.h>
29 #include <linux/cleancache.h>
30 #include <linux/aio.h>
31 #include <asm/uaccess.h>
35 struct block_device bdev
;
36 struct inode vfs_inode
;
39 static const struct address_space_operations def_blk_aops
;
41 static inline struct bdev_inode
*BDEV_I(struct inode
*inode
)
43 return container_of(inode
, struct bdev_inode
, vfs_inode
);
46 inline struct block_device
*I_BDEV(struct inode
*inode
)
48 return &BDEV_I(inode
)->bdev
;
50 EXPORT_SYMBOL(I_BDEV
);
53 * Move the inode from its current bdi to a new bdi. Make sure the inode
54 * is clean before moving so that it doesn't linger on the old bdi.
56 static void bdev_inode_switch_bdi(struct inode
*inode
,
57 struct backing_dev_info
*dst
)
60 spin_lock(&inode
->i_lock
);
61 if (!(inode
->i_state
& I_DIRTY
)) {
62 inode
->i_data
.backing_dev_info
= dst
;
63 spin_unlock(&inode
->i_lock
);
66 spin_unlock(&inode
->i_lock
);
67 WARN_ON_ONCE(write_inode_now(inode
, true));
71 /* Kill _all_ buffers and pagecache , dirty or not.. */
72 void kill_bdev(struct block_device
*bdev
)
74 struct address_space
*mapping
= bdev
->bd_inode
->i_mapping
;
76 if (mapping
->nrpages
== 0 && mapping
->nrshadows
== 0)
80 truncate_inode_pages(mapping
, 0);
82 EXPORT_SYMBOL(kill_bdev
);
84 /* Invalidate clean unused buffers and pagecache. */
85 void invalidate_bdev(struct block_device
*bdev
)
87 struct address_space
*mapping
= bdev
->bd_inode
->i_mapping
;
89 if (mapping
->nrpages
) {
91 lru_add_drain_all(); /* make sure all lru add caches are flushed */
92 invalidate_mapping_pages(mapping
, 0, -1);
94 /* 99% of the time, we don't need to flush the cleancache on the bdev.
95 * But, for the strange corners, lets be cautious
97 cleancache_invalidate_inode(mapping
);
99 EXPORT_SYMBOL(invalidate_bdev
);
101 int set_blocksize(struct block_device
*bdev
, int size
)
103 /* Size must be a power of two, and between 512 and PAGE_SIZE */
104 if (size
> PAGE_SIZE
|| size
< 512 || !is_power_of_2(size
))
107 /* Size cannot be smaller than the size supported by the device */
108 if (size
< bdev_logical_block_size(bdev
))
111 /* Don't change the size if it is same as current */
112 if (bdev
->bd_block_size
!= size
) {
114 bdev
->bd_block_size
= size
;
115 bdev
->bd_inode
->i_blkbits
= blksize_bits(size
);
121 EXPORT_SYMBOL(set_blocksize
);
123 int sb_set_blocksize(struct super_block
*sb
, int size
)
125 if (set_blocksize(sb
->s_bdev
, size
))
127 /* If we get here, we know size is power of two
128 * and it's value is between 512 and PAGE_SIZE */
129 sb
->s_blocksize
= size
;
130 sb
->s_blocksize_bits
= blksize_bits(size
);
131 return sb
->s_blocksize
;
134 EXPORT_SYMBOL(sb_set_blocksize
);
136 int sb_min_blocksize(struct super_block
*sb
, int size
)
138 int minsize
= bdev_logical_block_size(sb
->s_bdev
);
141 return sb_set_blocksize(sb
, size
);
144 EXPORT_SYMBOL(sb_min_blocksize
);
147 blkdev_get_block(struct inode
*inode
, sector_t iblock
,
148 struct buffer_head
*bh
, int create
)
150 bh
->b_bdev
= I_BDEV(inode
);
151 bh
->b_blocknr
= iblock
;
152 set_buffer_mapped(bh
);
157 blkdev_direct_IO(int rw
, struct kiocb
*iocb
, struct iov_iter
*iter
,
160 struct file
*file
= iocb
->ki_filp
;
161 struct inode
*inode
= file
->f_mapping
->host
;
163 return __blockdev_direct_IO(rw
, iocb
, inode
, I_BDEV(inode
), iter
,
164 offset
, blkdev_get_block
,
168 int __sync_blockdev(struct block_device
*bdev
, int wait
)
173 return filemap_flush(bdev
->bd_inode
->i_mapping
);
174 return filemap_write_and_wait(bdev
->bd_inode
->i_mapping
);
178 * Write out and wait upon all the dirty data associated with a block
179 * device via its mapping. Does not take the superblock lock.
181 int sync_blockdev(struct block_device
*bdev
)
183 return __sync_blockdev(bdev
, 1);
185 EXPORT_SYMBOL(sync_blockdev
);
188 * Write out and wait upon all dirty data associated with this
189 * device. Filesystem data as well as the underlying block
190 * device. Takes the superblock lock.
192 int fsync_bdev(struct block_device
*bdev
)
194 struct super_block
*sb
= get_super(bdev
);
196 int res
= sync_filesystem(sb
);
200 return sync_blockdev(bdev
);
202 EXPORT_SYMBOL(fsync_bdev
);
205 * freeze_bdev -- lock a filesystem and force it into a consistent state
206 * @bdev: blockdevice to lock
208 * If a superblock is found on this device, we take the s_umount semaphore
209 * on it to make sure nobody unmounts until the snapshot creation is done.
210 * The reference counter (bd_fsfreeze_count) guarantees that only the last
211 * unfreeze process can unfreeze the frozen filesystem actually when multiple
212 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
213 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
216 struct super_block
*freeze_bdev(struct block_device
*bdev
)
218 struct super_block
*sb
;
221 mutex_lock(&bdev
->bd_fsfreeze_mutex
);
222 if (++bdev
->bd_fsfreeze_count
> 1) {
224 * We don't even need to grab a reference - the first call
225 * to freeze_bdev grab an active reference and only the last
226 * thaw_bdev drops it.
228 sb
= get_super(bdev
);
230 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
234 sb
= get_active_super(bdev
);
237 error
= freeze_super(sb
);
239 deactivate_super(sb
);
240 bdev
->bd_fsfreeze_count
--;
241 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
242 return ERR_PTR(error
);
244 deactivate_super(sb
);
247 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
248 return sb
; /* thaw_bdev releases s->s_umount */
250 EXPORT_SYMBOL(freeze_bdev
);
253 * thaw_bdev -- unlock filesystem
254 * @bdev: blockdevice to unlock
255 * @sb: associated superblock
257 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
259 int thaw_bdev(struct block_device
*bdev
, struct super_block
*sb
)
263 mutex_lock(&bdev
->bd_fsfreeze_mutex
);
264 if (!bdev
->bd_fsfreeze_count
)
268 if (--bdev
->bd_fsfreeze_count
> 0)
274 error
= thaw_super(sb
);
276 bdev
->bd_fsfreeze_count
++;
277 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
281 mutex_unlock(&bdev
->bd_fsfreeze_mutex
);
284 EXPORT_SYMBOL(thaw_bdev
);
286 static int blkdev_writepage(struct page
*page
, struct writeback_control
*wbc
)
288 return block_write_full_page(page
, blkdev_get_block
, wbc
);
291 static int blkdev_readpage(struct file
* file
, struct page
* page
)
293 return block_read_full_page(page
, blkdev_get_block
);
296 static int blkdev_readpages(struct file
*file
, struct address_space
*mapping
,
297 struct list_head
*pages
, unsigned nr_pages
)
299 return mpage_readpages(mapping
, pages
, nr_pages
, blkdev_get_block
);
302 static int blkdev_write_begin(struct file
*file
, struct address_space
*mapping
,
303 loff_t pos
, unsigned len
, unsigned flags
,
304 struct page
**pagep
, void **fsdata
)
306 return block_write_begin(mapping
, pos
, len
, flags
, pagep
,
310 static int blkdev_write_end(struct file
*file
, struct address_space
*mapping
,
311 loff_t pos
, unsigned len
, unsigned copied
,
312 struct page
*page
, void *fsdata
)
315 ret
= block_write_end(file
, mapping
, pos
, len
, copied
, page
, fsdata
);
318 page_cache_release(page
);
325 * for a block special file file_inode(file)->i_size is zero
326 * so we compute the size by hand (just as in block_read/write above)
328 static loff_t
block_llseek(struct file
*file
, loff_t offset
, int whence
)
330 struct inode
*bd_inode
= file
->f_mapping
->host
;
333 mutex_lock(&bd_inode
->i_mutex
);
334 retval
= fixed_size_llseek(file
, offset
, whence
, i_size_read(bd_inode
));
335 mutex_unlock(&bd_inode
->i_mutex
);
339 int blkdev_fsync(struct file
*filp
, loff_t start
, loff_t end
, int datasync
)
341 struct inode
*bd_inode
= filp
->f_mapping
->host
;
342 struct block_device
*bdev
= I_BDEV(bd_inode
);
345 error
= filemap_write_and_wait_range(filp
->f_mapping
, start
, end
);
350 * There is no need to serialise calls to blkdev_issue_flush with
351 * i_mutex and doing so causes performance issues with concurrent
352 * O_SYNC writers to a block device.
354 error
= blkdev_issue_flush(bdev
, GFP_KERNEL
, NULL
);
355 if (error
== -EOPNOTSUPP
)
360 EXPORT_SYMBOL(blkdev_fsync
);
363 * bdev_read_page() - Start reading a page from a block device
364 * @bdev: The device to read the page from
365 * @sector: The offset on the device to read the page to (need not be aligned)
366 * @page: The page to read
368 * On entry, the page should be locked. It will be unlocked when the page
369 * has been read. If the block driver implements rw_page synchronously,
370 * that will be true on exit from this function, but it need not be.
372 * Errors returned by this function are usually "soft", eg out of memory, or
373 * queue full; callers should try a different route to read this page rather
374 * than propagate an error back up the stack.
376 * Return: negative errno if an error occurs, 0 if submission was successful.
378 int bdev_read_page(struct block_device
*bdev
, sector_t sector
,
381 const struct block_device_operations
*ops
= bdev
->bd_disk
->fops
;
384 return ops
->rw_page(bdev
, sector
+ get_start_sect(bdev
), page
, READ
);
386 EXPORT_SYMBOL_GPL(bdev_read_page
);
389 * bdev_write_page() - Start writing a page to a block device
390 * @bdev: The device to write the page to
391 * @sector: The offset on the device to write the page to (need not be aligned)
392 * @page: The page to write
393 * @wbc: The writeback_control for the write
395 * On entry, the page should be locked and not currently under writeback.
396 * On exit, if the write started successfully, the page will be unlocked and
397 * under writeback. If the write failed already (eg the driver failed to
398 * queue the page to the device), the page will still be locked. If the
399 * caller is a ->writepage implementation, it will need to unlock the page.
401 * Errors returned by this function are usually "soft", eg out of memory, or
402 * queue full; callers should try a different route to write this page rather
403 * than propagate an error back up the stack.
405 * Return: negative errno if an error occurs, 0 if submission was successful.
407 int bdev_write_page(struct block_device
*bdev
, sector_t sector
,
408 struct page
*page
, struct writeback_control
*wbc
)
411 int rw
= (wbc
->sync_mode
== WB_SYNC_ALL
) ? WRITE_SYNC
: WRITE
;
412 const struct block_device_operations
*ops
= bdev
->bd_disk
->fops
;
415 set_page_writeback(page
);
416 result
= ops
->rw_page(bdev
, sector
+ get_start_sect(bdev
), page
, rw
);
418 end_page_writeback(page
);
423 EXPORT_SYMBOL_GPL(bdev_write_page
);
429 static __cacheline_aligned_in_smp
DEFINE_SPINLOCK(bdev_lock
);
430 static struct kmem_cache
* bdev_cachep __read_mostly
;
432 static struct inode
*bdev_alloc_inode(struct super_block
*sb
)
434 struct bdev_inode
*ei
= kmem_cache_alloc(bdev_cachep
, GFP_KERNEL
);
437 return &ei
->vfs_inode
;
440 static void bdev_i_callback(struct rcu_head
*head
)
442 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
443 struct bdev_inode
*bdi
= BDEV_I(inode
);
445 kmem_cache_free(bdev_cachep
, bdi
);
448 static void bdev_destroy_inode(struct inode
*inode
)
450 call_rcu(&inode
->i_rcu
, bdev_i_callback
);
453 static void init_once(void *foo
)
455 struct bdev_inode
*ei
= (struct bdev_inode
*) foo
;
456 struct block_device
*bdev
= &ei
->bdev
;
458 memset(bdev
, 0, sizeof(*bdev
));
459 mutex_init(&bdev
->bd_mutex
);
460 INIT_LIST_HEAD(&bdev
->bd_inodes
);
461 INIT_LIST_HEAD(&bdev
->bd_list
);
463 INIT_LIST_HEAD(&bdev
->bd_holder_disks
);
465 inode_init_once(&ei
->vfs_inode
);
466 /* Initialize mutex for freeze. */
467 mutex_init(&bdev
->bd_fsfreeze_mutex
);
470 static inline void __bd_forget(struct inode
*inode
)
472 list_del_init(&inode
->i_devices
);
473 inode
->i_bdev
= NULL
;
474 inode
->i_mapping
= &inode
->i_data
;
477 static void bdev_evict_inode(struct inode
*inode
)
479 struct block_device
*bdev
= &BDEV_I(inode
)->bdev
;
481 truncate_inode_pages_final(&inode
->i_data
);
482 invalidate_inode_buffers(inode
); /* is it needed here? */
484 spin_lock(&bdev_lock
);
485 while ( (p
= bdev
->bd_inodes
.next
) != &bdev
->bd_inodes
) {
486 __bd_forget(list_entry(p
, struct inode
, i_devices
));
488 list_del_init(&bdev
->bd_list
);
489 spin_unlock(&bdev_lock
);
492 static const struct super_operations bdev_sops
= {
493 .statfs
= simple_statfs
,
494 .alloc_inode
= bdev_alloc_inode
,
495 .destroy_inode
= bdev_destroy_inode
,
496 .drop_inode
= generic_delete_inode
,
497 .evict_inode
= bdev_evict_inode
,
500 static struct dentry
*bd_mount(struct file_system_type
*fs_type
,
501 int flags
, const char *dev_name
, void *data
)
503 return mount_pseudo(fs_type
, "bdev:", &bdev_sops
, NULL
, BDEVFS_MAGIC
);
506 static struct file_system_type bd_type
= {
509 .kill_sb
= kill_anon_super
,
512 static struct super_block
*blockdev_superblock __read_mostly
;
514 void __init
bdev_cache_init(void)
517 static struct vfsmount
*bd_mnt
;
519 bdev_cachep
= kmem_cache_create("bdev_cache", sizeof(struct bdev_inode
),
520 0, (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
521 SLAB_MEM_SPREAD
|SLAB_PANIC
),
523 err
= register_filesystem(&bd_type
);
525 panic("Cannot register bdev pseudo-fs");
526 bd_mnt
= kern_mount(&bd_type
);
528 panic("Cannot create bdev pseudo-fs");
529 blockdev_superblock
= bd_mnt
->mnt_sb
; /* For writeback */
533 * Most likely _very_ bad one - but then it's hardly critical for small
534 * /dev and can be fixed when somebody will need really large one.
535 * Keep in mind that it will be fed through icache hash function too.
537 static inline unsigned long hash(dev_t dev
)
539 return MAJOR(dev
)+MINOR(dev
);
542 static int bdev_test(struct inode
*inode
, void *data
)
544 return BDEV_I(inode
)->bdev
.bd_dev
== *(dev_t
*)data
;
547 static int bdev_set(struct inode
*inode
, void *data
)
549 BDEV_I(inode
)->bdev
.bd_dev
= *(dev_t
*)data
;
553 static LIST_HEAD(all_bdevs
);
555 struct block_device
*bdget(dev_t dev
)
557 struct block_device
*bdev
;
560 inode
= iget5_locked(blockdev_superblock
, hash(dev
),
561 bdev_test
, bdev_set
, &dev
);
566 bdev
= &BDEV_I(inode
)->bdev
;
568 if (inode
->i_state
& I_NEW
) {
569 bdev
->bd_contains
= NULL
;
570 bdev
->bd_super
= NULL
;
571 bdev
->bd_inode
= inode
;
572 bdev
->bd_block_size
= (1 << inode
->i_blkbits
);
573 bdev
->bd_part_count
= 0;
574 bdev
->bd_invalidated
= 0;
575 inode
->i_mode
= S_IFBLK
;
577 inode
->i_bdev
= bdev
;
578 inode
->i_data
.a_ops
= &def_blk_aops
;
579 mapping_set_gfp_mask(&inode
->i_data
, GFP_USER
);
580 inode
->i_data
.backing_dev_info
= &default_backing_dev_info
;
581 spin_lock(&bdev_lock
);
582 list_add(&bdev
->bd_list
, &all_bdevs
);
583 spin_unlock(&bdev_lock
);
584 unlock_new_inode(inode
);
589 EXPORT_SYMBOL(bdget
);
592 * bdgrab -- Grab a reference to an already referenced block device
593 * @bdev: Block device to grab a reference to.
595 struct block_device
*bdgrab(struct block_device
*bdev
)
597 ihold(bdev
->bd_inode
);
600 EXPORT_SYMBOL(bdgrab
);
602 long nr_blockdev_pages(void)
604 struct block_device
*bdev
;
606 spin_lock(&bdev_lock
);
607 list_for_each_entry(bdev
, &all_bdevs
, bd_list
) {
608 ret
+= bdev
->bd_inode
->i_mapping
->nrpages
;
610 spin_unlock(&bdev_lock
);
614 void bdput(struct block_device
*bdev
)
616 iput(bdev
->bd_inode
);
619 EXPORT_SYMBOL(bdput
);
621 static struct block_device
*bd_acquire(struct inode
*inode
)
623 struct block_device
*bdev
;
625 spin_lock(&bdev_lock
);
626 bdev
= inode
->i_bdev
;
628 ihold(bdev
->bd_inode
);
629 spin_unlock(&bdev_lock
);
632 spin_unlock(&bdev_lock
);
634 bdev
= bdget(inode
->i_rdev
);
636 spin_lock(&bdev_lock
);
637 if (!inode
->i_bdev
) {
639 * We take an additional reference to bd_inode,
640 * and it's released in clear_inode() of inode.
641 * So, we can access it via ->i_mapping always
644 ihold(bdev
->bd_inode
);
645 inode
->i_bdev
= bdev
;
646 inode
->i_mapping
= bdev
->bd_inode
->i_mapping
;
647 list_add(&inode
->i_devices
, &bdev
->bd_inodes
);
649 spin_unlock(&bdev_lock
);
654 int sb_is_blkdev_sb(struct super_block
*sb
)
656 return sb
== blockdev_superblock
;
659 /* Call when you free inode */
661 void bd_forget(struct inode
*inode
)
663 struct block_device
*bdev
= NULL
;
665 spin_lock(&bdev_lock
);
666 if (!sb_is_blkdev_sb(inode
->i_sb
))
667 bdev
= inode
->i_bdev
;
669 spin_unlock(&bdev_lock
);
672 iput(bdev
->bd_inode
);
676 * bd_may_claim - test whether a block device can be claimed
677 * @bdev: block device of interest
678 * @whole: whole block device containing @bdev, may equal @bdev
679 * @holder: holder trying to claim @bdev
681 * Test whether @bdev can be claimed by @holder.
684 * spin_lock(&bdev_lock).
687 * %true if @bdev can be claimed, %false otherwise.
689 static bool bd_may_claim(struct block_device
*bdev
, struct block_device
*whole
,
692 if (bdev
->bd_holder
== holder
)
693 return true; /* already a holder */
694 else if (bdev
->bd_holder
!= NULL
)
695 return false; /* held by someone else */
696 else if (whole
== bdev
)
697 return true; /* is a whole device which isn't held */
699 else if (whole
->bd_holder
== bd_may_claim
)
700 return true; /* is a partition of a device that is being partitioned */
701 else if (whole
->bd_holder
!= NULL
)
702 return false; /* is a partition of a held device */
704 return true; /* is a partition of an un-held device */
708 * bd_prepare_to_claim - prepare to claim a block device
709 * @bdev: block device of interest
710 * @whole: the whole device containing @bdev, may equal @bdev
711 * @holder: holder trying to claim @bdev
713 * Prepare to claim @bdev. This function fails if @bdev is already
714 * claimed by another holder and waits if another claiming is in
715 * progress. This function doesn't actually claim. On successful
716 * return, the caller has ownership of bd_claiming and bd_holder[s].
719 * spin_lock(&bdev_lock). Might release bdev_lock, sleep and regrab
723 * 0 if @bdev can be claimed, -EBUSY otherwise.
725 static int bd_prepare_to_claim(struct block_device
*bdev
,
726 struct block_device
*whole
, void *holder
)
729 /* if someone else claimed, fail */
730 if (!bd_may_claim(bdev
, whole
, holder
))
733 /* if claiming is already in progress, wait for it to finish */
734 if (whole
->bd_claiming
) {
735 wait_queue_head_t
*wq
= bit_waitqueue(&whole
->bd_claiming
, 0);
738 prepare_to_wait(wq
, &wait
, TASK_UNINTERRUPTIBLE
);
739 spin_unlock(&bdev_lock
);
741 finish_wait(wq
, &wait
);
742 spin_lock(&bdev_lock
);
751 * bd_start_claiming - start claiming a block device
752 * @bdev: block device of interest
753 * @holder: holder trying to claim @bdev
755 * @bdev is about to be opened exclusively. Check @bdev can be opened
756 * exclusively and mark that an exclusive open is in progress. Each
757 * successful call to this function must be matched with a call to
758 * either bd_finish_claiming() or bd_abort_claiming() (which do not
761 * This function is used to gain exclusive access to the block device
762 * without actually causing other exclusive open attempts to fail. It
763 * should be used when the open sequence itself requires exclusive
764 * access but may subsequently fail.
770 * Pointer to the block device containing @bdev on success, ERR_PTR()
773 static struct block_device
*bd_start_claiming(struct block_device
*bdev
,
776 struct gendisk
*disk
;
777 struct block_device
*whole
;
783 * @bdev might not have been initialized properly yet, look up
784 * and grab the outer block device the hard way.
786 disk
= get_gendisk(bdev
->bd_dev
, &partno
);
788 return ERR_PTR(-ENXIO
);
791 * Normally, @bdev should equal what's returned from bdget_disk()
792 * if partno is 0; however, some drivers (floppy) use multiple
793 * bdev's for the same physical device and @bdev may be one of the
794 * aliases. Keep @bdev if partno is 0. This means claimer
795 * tracking is broken for those devices but it has always been that
799 whole
= bdget_disk(disk
, 0);
801 whole
= bdgrab(bdev
);
803 module_put(disk
->fops
->owner
);
806 return ERR_PTR(-ENOMEM
);
808 /* prepare to claim, if successful, mark claiming in progress */
809 spin_lock(&bdev_lock
);
811 err
= bd_prepare_to_claim(bdev
, whole
, holder
);
813 whole
->bd_claiming
= holder
;
814 spin_unlock(&bdev_lock
);
817 spin_unlock(&bdev_lock
);
824 struct bd_holder_disk
{
825 struct list_head list
;
826 struct gendisk
*disk
;
830 static struct bd_holder_disk
*bd_find_holder_disk(struct block_device
*bdev
,
831 struct gendisk
*disk
)
833 struct bd_holder_disk
*holder
;
835 list_for_each_entry(holder
, &bdev
->bd_holder_disks
, list
)
836 if (holder
->disk
== disk
)
841 static int add_symlink(struct kobject
*from
, struct kobject
*to
)
843 return sysfs_create_link(from
, to
, kobject_name(to
));
846 static void del_symlink(struct kobject
*from
, struct kobject
*to
)
848 sysfs_remove_link(from
, kobject_name(to
));
852 * bd_link_disk_holder - create symlinks between holding disk and slave bdev
853 * @bdev: the claimed slave bdev
854 * @disk: the holding disk
856 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
858 * This functions creates the following sysfs symlinks.
860 * - from "slaves" directory of the holder @disk to the claimed @bdev
861 * - from "holders" directory of the @bdev to the holder @disk
863 * For example, if /dev/dm-0 maps to /dev/sda and disk for dm-0 is
864 * passed to bd_link_disk_holder(), then:
866 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
867 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
869 * The caller must have claimed @bdev before calling this function and
870 * ensure that both @bdev and @disk are valid during the creation and
871 * lifetime of these symlinks.
877 * 0 on success, -errno on failure.
879 int bd_link_disk_holder(struct block_device
*bdev
, struct gendisk
*disk
)
881 struct bd_holder_disk
*holder
;
884 mutex_lock(&bdev
->bd_mutex
);
886 WARN_ON_ONCE(!bdev
->bd_holder
);
888 /* FIXME: remove the following once add_disk() handles errors */
889 if (WARN_ON(!disk
->slave_dir
|| !bdev
->bd_part
->holder_dir
))
892 holder
= bd_find_holder_disk(bdev
, disk
);
898 holder
= kzalloc(sizeof(*holder
), GFP_KERNEL
);
904 INIT_LIST_HEAD(&holder
->list
);
908 ret
= add_symlink(disk
->slave_dir
, &part_to_dev(bdev
->bd_part
)->kobj
);
912 ret
= add_symlink(bdev
->bd_part
->holder_dir
, &disk_to_dev(disk
)->kobj
);
916 * bdev could be deleted beneath us which would implicitly destroy
917 * the holder directory. Hold on to it.
919 kobject_get(bdev
->bd_part
->holder_dir
);
921 list_add(&holder
->list
, &bdev
->bd_holder_disks
);
925 del_symlink(disk
->slave_dir
, &part_to_dev(bdev
->bd_part
)->kobj
);
929 mutex_unlock(&bdev
->bd_mutex
);
932 EXPORT_SYMBOL_GPL(bd_link_disk_holder
);
935 * bd_unlink_disk_holder - destroy symlinks created by bd_link_disk_holder()
936 * @bdev: the calimed slave bdev
937 * @disk: the holding disk
939 * DON'T USE THIS UNLESS YOU'RE ALREADY USING IT.
944 void bd_unlink_disk_holder(struct block_device
*bdev
, struct gendisk
*disk
)
946 struct bd_holder_disk
*holder
;
948 mutex_lock(&bdev
->bd_mutex
);
950 holder
= bd_find_holder_disk(bdev
, disk
);
952 if (!WARN_ON_ONCE(holder
== NULL
) && !--holder
->refcnt
) {
953 del_symlink(disk
->slave_dir
, &part_to_dev(bdev
->bd_part
)->kobj
);
954 del_symlink(bdev
->bd_part
->holder_dir
,
955 &disk_to_dev(disk
)->kobj
);
956 kobject_put(bdev
->bd_part
->holder_dir
);
957 list_del_init(&holder
->list
);
961 mutex_unlock(&bdev
->bd_mutex
);
963 EXPORT_SYMBOL_GPL(bd_unlink_disk_holder
);
967 * flush_disk - invalidates all buffer-cache entries on a disk
969 * @bdev: struct block device to be flushed
970 * @kill_dirty: flag to guide handling of dirty inodes
972 * Invalidates all buffer-cache entries on a disk. It should be called
973 * when a disk has been changed -- either by a media change or online
976 static void flush_disk(struct block_device
*bdev
, bool kill_dirty
)
978 if (__invalidate_device(bdev
, kill_dirty
)) {
979 char name
[BDEVNAME_SIZE
] = "";
982 disk_name(bdev
->bd_disk
, 0, name
);
983 printk(KERN_WARNING
"VFS: busy inodes on changed media or "
984 "resized disk %s\n", name
);
989 if (disk_part_scan_enabled(bdev
->bd_disk
))
990 bdev
->bd_invalidated
= 1;
994 * check_disk_size_change - checks for disk size change and adjusts bdev size.
995 * @disk: struct gendisk to check
996 * @bdev: struct bdev to adjust.
998 * This routine checks to see if the bdev size does not match the disk size
999 * and adjusts it if it differs.
1001 void check_disk_size_change(struct gendisk
*disk
, struct block_device
*bdev
)
1003 loff_t disk_size
, bdev_size
;
1005 disk_size
= (loff_t
)get_capacity(disk
) << 9;
1006 bdev_size
= i_size_read(bdev
->bd_inode
);
1007 if (disk_size
!= bdev_size
) {
1008 char name
[BDEVNAME_SIZE
];
1010 disk_name(disk
, 0, name
);
1012 "%s: detected capacity change from %lld to %lld\n",
1013 name
, bdev_size
, disk_size
);
1014 i_size_write(bdev
->bd_inode
, disk_size
);
1015 flush_disk(bdev
, false);
1018 EXPORT_SYMBOL(check_disk_size_change
);
1021 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
1022 * @disk: struct gendisk to be revalidated
1024 * This routine is a wrapper for lower-level driver's revalidate_disk
1025 * call-backs. It is used to do common pre and post operations needed
1026 * for all revalidate_disk operations.
1028 int revalidate_disk(struct gendisk
*disk
)
1030 struct block_device
*bdev
;
1033 if (disk
->fops
->revalidate_disk
)
1034 ret
= disk
->fops
->revalidate_disk(disk
);
1036 bdev
= bdget_disk(disk
, 0);
1040 mutex_lock(&bdev
->bd_mutex
);
1041 check_disk_size_change(disk
, bdev
);
1042 bdev
->bd_invalidated
= 0;
1043 mutex_unlock(&bdev
->bd_mutex
);
1047 EXPORT_SYMBOL(revalidate_disk
);
1050 * This routine checks whether a removable media has been changed,
1051 * and invalidates all buffer-cache-entries in that case. This
1052 * is a relatively slow routine, so we have to try to minimize using
1053 * it. Thus it is called only upon a 'mount' or 'open'. This
1054 * is the best way of combining speed and utility, I think.
1055 * People changing diskettes in the middle of an operation deserve
1058 int check_disk_change(struct block_device
*bdev
)
1060 struct gendisk
*disk
= bdev
->bd_disk
;
1061 const struct block_device_operations
*bdops
= disk
->fops
;
1062 unsigned int events
;
1064 events
= disk_clear_events(disk
, DISK_EVENT_MEDIA_CHANGE
|
1065 DISK_EVENT_EJECT_REQUEST
);
1066 if (!(events
& DISK_EVENT_MEDIA_CHANGE
))
1069 flush_disk(bdev
, true);
1070 if (bdops
->revalidate_disk
)
1071 bdops
->revalidate_disk(bdev
->bd_disk
);
1075 EXPORT_SYMBOL(check_disk_change
);
1077 void bd_set_size(struct block_device
*bdev
, loff_t size
)
1079 unsigned bsize
= bdev_logical_block_size(bdev
);
1081 mutex_lock(&bdev
->bd_inode
->i_mutex
);
1082 i_size_write(bdev
->bd_inode
, size
);
1083 mutex_unlock(&bdev
->bd_inode
->i_mutex
);
1084 while (bsize
< PAGE_CACHE_SIZE
) {
1089 bdev
->bd_block_size
= bsize
;
1090 bdev
->bd_inode
->i_blkbits
= blksize_bits(bsize
);
1092 EXPORT_SYMBOL(bd_set_size
);
1094 static void __blkdev_put(struct block_device
*bdev
, fmode_t mode
, int for_part
);
1099 * mutex_lock(part->bd_mutex)
1100 * mutex_lock_nested(whole->bd_mutex, 1)
1103 static int __blkdev_get(struct block_device
*bdev
, fmode_t mode
, int for_part
)
1105 struct gendisk
*disk
;
1106 struct module
*owner
;
1111 if (mode
& FMODE_READ
)
1113 if (mode
& FMODE_WRITE
)
1116 * hooks: /n/, see "layering violations".
1119 ret
= devcgroup_inode_permission(bdev
->bd_inode
, perm
);
1129 disk
= get_gendisk(bdev
->bd_dev
, &partno
);
1132 owner
= disk
->fops
->owner
;
1134 disk_block_events(disk
);
1135 mutex_lock_nested(&bdev
->bd_mutex
, for_part
);
1136 if (!bdev
->bd_openers
) {
1137 bdev
->bd_disk
= disk
;
1138 bdev
->bd_queue
= disk
->queue
;
1139 bdev
->bd_contains
= bdev
;
1141 struct backing_dev_info
*bdi
;
1144 bdev
->bd_part
= disk_get_part(disk
, partno
);
1149 if (disk
->fops
->open
) {
1150 ret
= disk
->fops
->open(bdev
, mode
);
1151 if (ret
== -ERESTARTSYS
) {
1152 /* Lost a race with 'disk' being
1153 * deleted, try again.
1156 disk_put_part(bdev
->bd_part
);
1157 bdev
->bd_part
= NULL
;
1158 bdev
->bd_disk
= NULL
;
1159 bdev
->bd_queue
= NULL
;
1160 mutex_unlock(&bdev
->bd_mutex
);
1161 disk_unblock_events(disk
);
1169 bd_set_size(bdev
,(loff_t
)get_capacity(disk
)<<9);
1170 bdi
= blk_get_backing_dev_info(bdev
);
1171 bdev_inode_switch_bdi(bdev
->bd_inode
, bdi
);
1175 * If the device is invalidated, rescan partition
1176 * if open succeeded or failed with -ENOMEDIUM.
1177 * The latter is necessary to prevent ghost
1178 * partitions on a removed medium.
1180 if (bdev
->bd_invalidated
) {
1182 rescan_partitions(disk
, bdev
);
1183 else if (ret
== -ENOMEDIUM
)
1184 invalidate_partitions(disk
, bdev
);
1189 struct block_device
*whole
;
1190 whole
= bdget_disk(disk
, 0);
1195 ret
= __blkdev_get(whole
, mode
, 1);
1198 bdev
->bd_contains
= whole
;
1199 bdev_inode_switch_bdi(bdev
->bd_inode
,
1200 whole
->bd_inode
->i_data
.backing_dev_info
);
1201 bdev
->bd_part
= disk_get_part(disk
, partno
);
1202 if (!(disk
->flags
& GENHD_FL_UP
) ||
1203 !bdev
->bd_part
|| !bdev
->bd_part
->nr_sects
) {
1207 bd_set_size(bdev
, (loff_t
)bdev
->bd_part
->nr_sects
<< 9);
1210 if (bdev
->bd_contains
== bdev
) {
1212 if (bdev
->bd_disk
->fops
->open
)
1213 ret
= bdev
->bd_disk
->fops
->open(bdev
, mode
);
1214 /* the same as first opener case, read comment there */
1215 if (bdev
->bd_invalidated
) {
1217 rescan_partitions(bdev
->bd_disk
, bdev
);
1218 else if (ret
== -ENOMEDIUM
)
1219 invalidate_partitions(bdev
->bd_disk
, bdev
);
1222 goto out_unlock_bdev
;
1224 /* only one opener holds refs to the module and disk */
1230 bdev
->bd_part_count
++;
1231 mutex_unlock(&bdev
->bd_mutex
);
1232 disk_unblock_events(disk
);
1236 disk_put_part(bdev
->bd_part
);
1237 bdev
->bd_disk
= NULL
;
1238 bdev
->bd_part
= NULL
;
1239 bdev
->bd_queue
= NULL
;
1240 bdev_inode_switch_bdi(bdev
->bd_inode
, &default_backing_dev_info
);
1241 if (bdev
!= bdev
->bd_contains
)
1242 __blkdev_put(bdev
->bd_contains
, mode
, 1);
1243 bdev
->bd_contains
= NULL
;
1245 mutex_unlock(&bdev
->bd_mutex
);
1246 disk_unblock_events(disk
);
1256 * blkdev_get - open a block device
1257 * @bdev: block_device to open
1258 * @mode: FMODE_* mask
1259 * @holder: exclusive holder identifier
1261 * Open @bdev with @mode. If @mode includes %FMODE_EXCL, @bdev is
1262 * open with exclusive access. Specifying %FMODE_EXCL with %NULL
1263 * @holder is invalid. Exclusive opens may nest for the same @holder.
1265 * On success, the reference count of @bdev is unchanged. On failure,
1272 * 0 on success, -errno on failure.
1274 int blkdev_get(struct block_device
*bdev
, fmode_t mode
, void *holder
)
1276 struct block_device
*whole
= NULL
;
1279 WARN_ON_ONCE((mode
& FMODE_EXCL
) && !holder
);
1281 if ((mode
& FMODE_EXCL
) && holder
) {
1282 whole
= bd_start_claiming(bdev
, holder
);
1283 if (IS_ERR(whole
)) {
1285 return PTR_ERR(whole
);
1289 res
= __blkdev_get(bdev
, mode
, 0);
1292 struct gendisk
*disk
= whole
->bd_disk
;
1294 /* finish claiming */
1295 mutex_lock(&bdev
->bd_mutex
);
1296 spin_lock(&bdev_lock
);
1299 BUG_ON(!bd_may_claim(bdev
, whole
, holder
));
1301 * Note that for a whole device bd_holders
1302 * will be incremented twice, and bd_holder
1303 * will be set to bd_may_claim before being
1306 whole
->bd_holders
++;
1307 whole
->bd_holder
= bd_may_claim
;
1309 bdev
->bd_holder
= holder
;
1312 /* tell others that we're done */
1313 BUG_ON(whole
->bd_claiming
!= holder
);
1314 whole
->bd_claiming
= NULL
;
1315 wake_up_bit(&whole
->bd_claiming
, 0);
1317 spin_unlock(&bdev_lock
);
1320 * Block event polling for write claims if requested. Any
1321 * write holder makes the write_holder state stick until
1322 * all are released. This is good enough and tracking
1323 * individual writeable reference is too fragile given the
1324 * way @mode is used in blkdev_get/put().
1326 if (!res
&& (mode
& FMODE_WRITE
) && !bdev
->bd_write_holder
&&
1327 (disk
->flags
& GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE
)) {
1328 bdev
->bd_write_holder
= true;
1329 disk_block_events(disk
);
1332 mutex_unlock(&bdev
->bd_mutex
);
1338 EXPORT_SYMBOL(blkdev_get
);
1341 * blkdev_get_by_path - open a block device by name
1342 * @path: path to the block device to open
1343 * @mode: FMODE_* mask
1344 * @holder: exclusive holder identifier
1346 * Open the blockdevice described by the device file at @path. @mode
1347 * and @holder are identical to blkdev_get().
1349 * On success, the returned block_device has reference count of one.
1355 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1357 struct block_device
*blkdev_get_by_path(const char *path
, fmode_t mode
,
1360 struct block_device
*bdev
;
1363 bdev
= lookup_bdev(path
);
1367 err
= blkdev_get(bdev
, mode
, holder
);
1369 return ERR_PTR(err
);
1371 if ((mode
& FMODE_WRITE
) && bdev_read_only(bdev
)) {
1372 blkdev_put(bdev
, mode
);
1373 return ERR_PTR(-EACCES
);
1378 EXPORT_SYMBOL(blkdev_get_by_path
);
1381 * blkdev_get_by_dev - open a block device by device number
1382 * @dev: device number of block device to open
1383 * @mode: FMODE_* mask
1384 * @holder: exclusive holder identifier
1386 * Open the blockdevice described by device number @dev. @mode and
1387 * @holder are identical to blkdev_get().
1389 * Use it ONLY if you really do not have anything better - i.e. when
1390 * you are behind a truly sucky interface and all you are given is a
1391 * device number. _Never_ to be used for internal purposes. If you
1392 * ever need it - reconsider your API.
1394 * On success, the returned block_device has reference count of one.
1400 * Pointer to block_device on success, ERR_PTR(-errno) on failure.
1402 struct block_device
*blkdev_get_by_dev(dev_t dev
, fmode_t mode
, void *holder
)
1404 struct block_device
*bdev
;
1409 return ERR_PTR(-ENOMEM
);
1411 err
= blkdev_get(bdev
, mode
, holder
);
1413 return ERR_PTR(err
);
1417 EXPORT_SYMBOL(blkdev_get_by_dev
);
1419 static int blkdev_open(struct inode
* inode
, struct file
* filp
)
1421 struct block_device
*bdev
;
1424 * Preserve backwards compatibility and allow large file access
1425 * even if userspace doesn't ask for it explicitly. Some mkfs
1426 * binary needs it. We might want to drop this workaround
1427 * during an unstable branch.
1429 filp
->f_flags
|= O_LARGEFILE
;
1431 if (filp
->f_flags
& O_NDELAY
)
1432 filp
->f_mode
|= FMODE_NDELAY
;
1433 if (filp
->f_flags
& O_EXCL
)
1434 filp
->f_mode
|= FMODE_EXCL
;
1435 if ((filp
->f_flags
& O_ACCMODE
) == 3)
1436 filp
->f_mode
|= FMODE_WRITE_IOCTL
;
1438 bdev
= bd_acquire(inode
);
1442 filp
->f_mapping
= bdev
->bd_inode
->i_mapping
;
1444 return blkdev_get(bdev
, filp
->f_mode
, filp
);
1447 static void __blkdev_put(struct block_device
*bdev
, fmode_t mode
, int for_part
)
1449 struct gendisk
*disk
= bdev
->bd_disk
;
1450 struct block_device
*victim
= NULL
;
1452 mutex_lock_nested(&bdev
->bd_mutex
, for_part
);
1454 bdev
->bd_part_count
--;
1456 if (!--bdev
->bd_openers
) {
1457 WARN_ON_ONCE(bdev
->bd_holders
);
1458 sync_blockdev(bdev
);
1460 /* ->release can cause the old bdi to disappear,
1461 * so must switch it out first
1463 bdev_inode_switch_bdi(bdev
->bd_inode
,
1464 &default_backing_dev_info
);
1466 if (bdev
->bd_contains
== bdev
) {
1467 if (disk
->fops
->release
)
1468 disk
->fops
->release(disk
, mode
);
1470 if (!bdev
->bd_openers
) {
1471 struct module
*owner
= disk
->fops
->owner
;
1473 disk_put_part(bdev
->bd_part
);
1474 bdev
->bd_part
= NULL
;
1475 bdev
->bd_disk
= NULL
;
1476 if (bdev
!= bdev
->bd_contains
)
1477 victim
= bdev
->bd_contains
;
1478 bdev
->bd_contains
= NULL
;
1483 mutex_unlock(&bdev
->bd_mutex
);
1486 __blkdev_put(victim
, mode
, 1);
1489 void blkdev_put(struct block_device
*bdev
, fmode_t mode
)
1491 mutex_lock(&bdev
->bd_mutex
);
1493 if (mode
& FMODE_EXCL
) {
1497 * Release a claim on the device. The holder fields
1498 * are protected with bdev_lock. bd_mutex is to
1499 * synchronize disk_holder unlinking.
1501 spin_lock(&bdev_lock
);
1503 WARN_ON_ONCE(--bdev
->bd_holders
< 0);
1504 WARN_ON_ONCE(--bdev
->bd_contains
->bd_holders
< 0);
1506 /* bd_contains might point to self, check in a separate step */
1507 if ((bdev_free
= !bdev
->bd_holders
))
1508 bdev
->bd_holder
= NULL
;
1509 if (!bdev
->bd_contains
->bd_holders
)
1510 bdev
->bd_contains
->bd_holder
= NULL
;
1512 spin_unlock(&bdev_lock
);
1515 * If this was the last claim, remove holder link and
1516 * unblock evpoll if it was a write holder.
1518 if (bdev_free
&& bdev
->bd_write_holder
) {
1519 disk_unblock_events(bdev
->bd_disk
);
1520 bdev
->bd_write_holder
= false;
1525 * Trigger event checking and tell drivers to flush MEDIA_CHANGE
1526 * event. This is to ensure detection of media removal commanded
1527 * from userland - e.g. eject(1).
1529 disk_flush_events(bdev
->bd_disk
, DISK_EVENT_MEDIA_CHANGE
);
1531 mutex_unlock(&bdev
->bd_mutex
);
1533 __blkdev_put(bdev
, mode
, 0);
1535 EXPORT_SYMBOL(blkdev_put
);
1537 static int blkdev_close(struct inode
* inode
, struct file
* filp
)
1539 struct block_device
*bdev
= I_BDEV(filp
->f_mapping
->host
);
1540 blkdev_put(bdev
, filp
->f_mode
);
1544 static long block_ioctl(struct file
*file
, unsigned cmd
, unsigned long arg
)
1546 struct block_device
*bdev
= I_BDEV(file
->f_mapping
->host
);
1547 fmode_t mode
= file
->f_mode
;
1550 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1551 * to updated it before every ioctl.
1553 if (file
->f_flags
& O_NDELAY
)
1554 mode
|= FMODE_NDELAY
;
1556 mode
&= ~FMODE_NDELAY
;
1558 return blkdev_ioctl(bdev
, mode
, cmd
, arg
);
1562 * Write data to the block device. Only intended for the block device itself
1563 * and the raw driver which basically is a fake block device.
1565 * Does not take i_mutex for the write and thus is not for general purpose
1568 ssize_t
blkdev_write_iter(struct kiocb
*iocb
, struct iov_iter
*from
)
1570 struct file
*file
= iocb
->ki_filp
;
1571 struct blk_plug plug
;
1574 blk_start_plug(&plug
);
1575 ret
= __generic_file_write_iter(iocb
, from
);
1578 err
= generic_write_sync(file
, iocb
->ki_pos
- ret
, ret
);
1582 blk_finish_plug(&plug
);
1585 EXPORT_SYMBOL_GPL(blkdev_write_iter
);
1587 ssize_t
blkdev_read_iter(struct kiocb
*iocb
, struct iov_iter
*to
)
1589 struct file
*file
= iocb
->ki_filp
;
1590 struct inode
*bd_inode
= file
->f_mapping
->host
;
1591 loff_t size
= i_size_read(bd_inode
);
1592 loff_t pos
= iocb
->ki_pos
;
1598 iov_iter_truncate(to
, size
);
1599 return generic_file_read_iter(iocb
, to
);
1601 EXPORT_SYMBOL_GPL(blkdev_read_iter
);
1604 * Try to release a page associated with block device when the system
1605 * is under memory pressure.
1607 static int blkdev_releasepage(struct page
*page
, gfp_t wait
)
1609 struct super_block
*super
= BDEV_I(page
->mapping
->host
)->bdev
.bd_super
;
1611 if (super
&& super
->s_op
->bdev_try_to_free_page
)
1612 return super
->s_op
->bdev_try_to_free_page(super
, page
, wait
);
1614 return try_to_free_buffers(page
);
1617 static const struct address_space_operations def_blk_aops
= {
1618 .readpage
= blkdev_readpage
,
1619 .readpages
= blkdev_readpages
,
1620 .writepage
= blkdev_writepage
,
1621 .write_begin
= blkdev_write_begin
,
1622 .write_end
= blkdev_write_end
,
1623 .writepages
= generic_writepages
,
1624 .releasepage
= blkdev_releasepage
,
1625 .direct_IO
= blkdev_direct_IO
,
1626 .is_dirty_writeback
= buffer_check_dirty_writeback
,
1629 const struct file_operations def_blk_fops
= {
1630 .open
= blkdev_open
,
1631 .release
= blkdev_close
,
1632 .llseek
= block_llseek
,
1633 .read
= new_sync_read
,
1634 .write
= new_sync_write
,
1635 .read_iter
= blkdev_read_iter
,
1636 .write_iter
= blkdev_write_iter
,
1637 .mmap
= generic_file_mmap
,
1638 .fsync
= blkdev_fsync
,
1639 .unlocked_ioctl
= block_ioctl
,
1640 #ifdef CONFIG_COMPAT
1641 .compat_ioctl
= compat_blkdev_ioctl
,
1643 .splice_read
= generic_file_splice_read
,
1644 .splice_write
= iter_file_splice_write
,
1647 int ioctl_by_bdev(struct block_device
*bdev
, unsigned cmd
, unsigned long arg
)
1650 mm_segment_t old_fs
= get_fs();
1652 res
= blkdev_ioctl(bdev
, 0, cmd
, arg
);
1657 EXPORT_SYMBOL(ioctl_by_bdev
);
1660 * lookup_bdev - lookup a struct block_device by name
1661 * @pathname: special file representing the block device
1663 * Get a reference to the blockdevice at @pathname in the current
1664 * namespace if possible and return it. Return ERR_PTR(error)
1667 struct block_device
*lookup_bdev(const char *pathname
)
1669 struct block_device
*bdev
;
1670 struct inode
*inode
;
1674 if (!pathname
|| !*pathname
)
1675 return ERR_PTR(-EINVAL
);
1677 error
= kern_path(pathname
, LOOKUP_FOLLOW
, &path
);
1679 return ERR_PTR(error
);
1681 inode
= path
.dentry
->d_inode
;
1683 if (!S_ISBLK(inode
->i_mode
))
1686 if (path
.mnt
->mnt_flags
& MNT_NODEV
)
1689 bdev
= bd_acquire(inode
);
1696 bdev
= ERR_PTR(error
);
1699 EXPORT_SYMBOL(lookup_bdev
);
1701 int __invalidate_device(struct block_device
*bdev
, bool kill_dirty
)
1703 struct super_block
*sb
= get_super(bdev
);
1708 * no need to lock the super, get_super holds the
1709 * read mutex so the filesystem cannot go away
1710 * under us (->put_super runs with the write lock
1713 shrink_dcache_sb(sb
);
1714 res
= invalidate_inodes(sb
, kill_dirty
);
1717 invalidate_bdev(bdev
);
1720 EXPORT_SYMBOL(__invalidate_device
);
1722 void iterate_bdevs(void (*func
)(struct block_device
*, void *), void *arg
)
1724 struct inode
*inode
, *old_inode
= NULL
;
1726 spin_lock(&inode_sb_list_lock
);
1727 list_for_each_entry(inode
, &blockdev_superblock
->s_inodes
, i_sb_list
) {
1728 struct address_space
*mapping
= inode
->i_mapping
;
1729 struct block_device
*bdev
;
1731 spin_lock(&inode
->i_lock
);
1732 if (inode
->i_state
& (I_FREEING
|I_WILL_FREE
|I_NEW
) ||
1733 mapping
->nrpages
== 0) {
1734 spin_unlock(&inode
->i_lock
);
1738 spin_unlock(&inode
->i_lock
);
1739 spin_unlock(&inode_sb_list_lock
);
1741 * We hold a reference to 'inode' so it couldn't have been
1742 * removed from s_inodes list while we dropped the
1743 * inode_sb_list_lock. We cannot iput the inode now as we can
1744 * be holding the last reference and we cannot iput it under
1745 * inode_sb_list_lock. So we keep the reference and iput it
1750 bdev
= I_BDEV(inode
);
1752 mutex_lock(&bdev
->bd_mutex
);
1753 if (bdev
->bd_openers
)
1755 mutex_unlock(&bdev
->bd_mutex
);
1757 spin_lock(&inode_sb_list_lock
);
1759 spin_unlock(&inode_sb_list_lock
);