blob: a29b4dcc1bca2e3b8f56252261624e3c1fafacf4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/block_dev.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/mm.h>
10#include <linux/fcntl.h>
11#include <linux/slab.h>
12#include <linux/kmod.h>
13#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/smp_lock.h>
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -070015#include <linux/device_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#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>
Nick Piggin585d3bc2009-02-25 10:44:19 +010021#include <linux/pagevec.h>
David Howells811d7362006-08-29 19:06:09 +010022#include <linux/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mpage.h>
24#include <linux/mount.h>
25#include <linux/uio.h>
26#include <linux/namei.h>
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070027#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020029#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31struct bdev_inode {
32 struct block_device bdev;
33 struct inode vfs_inode;
34};
35
Adrian Bunk4c54ac62008-02-18 13:48:31 +010036static const struct address_space_operations def_blk_aops;
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static inline struct bdev_inode *BDEV_I(struct inode *inode)
39{
40 return container_of(inode, struct bdev_inode, vfs_inode);
41}
42
43inline struct block_device *I_BDEV(struct inode *inode)
44{
45 return &BDEV_I(inode)->bdev;
46}
47
48EXPORT_SYMBOL(I_BDEV);
49
50static sector_t max_block(struct block_device *bdev)
51{
52 sector_t retval = ~((sector_t)0);
53 loff_t sz = i_size_read(bdev->bd_inode);
54
55 if (sz) {
56 unsigned int size = block_size(bdev);
57 unsigned int sizebits = blksize_bits(size);
58 retval = (sz >> sizebits);
59 }
60 return retval;
61}
62
Peter Zijlstraf9a14392007-05-06 14:49:55 -070063/* Kill _all_ buffers and pagecache , dirty or not.. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void kill_bdev(struct block_device *bdev)
65{
Peter Zijlstraf9a14392007-05-06 14:49:55 -070066 if (bdev->bd_inode->i_mapping->nrpages == 0)
67 return;
68 invalidate_bh_lrus();
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 truncate_inode_pages(bdev->bd_inode->i_mapping, 0);
70}
71
72int set_blocksize(struct block_device *bdev, int size)
73{
74 /* Size must be a power of two, and between 512 and PAGE_SIZE */
Vignesh Babu BM1368c4f2007-05-08 00:24:32 -070075 if (size > PAGE_SIZE || size < 512 || !is_power_of_2(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return -EINVAL;
77
78 /* Size cannot be smaller than the size supported by the device */
Martin K. Petersene1defc42009-05-22 17:17:49 -040079 if (size < bdev_logical_block_size(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return -EINVAL;
81
82 /* Don't change the size if it is same as current */
83 if (bdev->bd_block_size != size) {
84 sync_blockdev(bdev);
85 bdev->bd_block_size = size;
86 bdev->bd_inode->i_blkbits = blksize_bits(size);
87 kill_bdev(bdev);
88 }
89 return 0;
90}
91
92EXPORT_SYMBOL(set_blocksize);
93
94int sb_set_blocksize(struct super_block *sb, int size)
95{
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (set_blocksize(sb->s_bdev, size))
97 return 0;
98 /* If we get here, we know size is power of two
99 * and it's value is between 512 and PAGE_SIZE */
100 sb->s_blocksize = size;
Coywolf Qi Hunt38885bd2006-03-24 03:18:05 -0800101 sb->s_blocksize_bits = blksize_bits(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return sb->s_blocksize;
103}
104
105EXPORT_SYMBOL(sb_set_blocksize);
106
107int sb_min_blocksize(struct super_block *sb, int size)
108{
Martin K. Petersene1defc42009-05-22 17:17:49 -0400109 int minsize = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (size < minsize)
111 size = minsize;
112 return sb_set_blocksize(sb, size);
113}
114
115EXPORT_SYMBOL(sb_min_blocksize);
116
117static int
118blkdev_get_block(struct inode *inode, sector_t iblock,
119 struct buffer_head *bh, int create)
120{
121 if (iblock >= max_block(I_BDEV(inode))) {
122 if (create)
123 return -EIO;
124
125 /*
126 * for reads, we're just trying to fill a partial page.
127 * return a hole, they will have to call get_block again
128 * before they can fill it, and they will get -EIO at that
129 * time
130 */
131 return 0;
132 }
133 bh->b_bdev = I_BDEV(inode);
134 bh->b_blocknr = iblock;
135 set_buffer_mapped(bh);
136 return 0;
137}
138
Andrew Mortonb2e895d2007-02-03 01:14:01 -0800139static int
140blkdev_get_blocks(struct inode *inode, sector_t iblock,
141 struct buffer_head *bh, int create)
142{
143 sector_t end_block = max_block(I_BDEV(inode));
144 unsigned long max_blocks = bh->b_size >> inode->i_blkbits;
145
146 if ((iblock + max_blocks) > end_block) {
147 max_blocks = end_block - iblock;
148 if ((long)max_blocks <= 0) {
149 if (create)
150 return -EIO; /* write fully beyond EOF */
151 /*
152 * It is a read which is fully beyond EOF. We return
153 * a !buffer_mapped buffer
154 */
155 max_blocks = 0;
156 }
157 }
158
159 bh->b_bdev = I_BDEV(inode);
160 bh->b_blocknr = iblock;
161 bh->b_size = max_blocks << inode->i_blkbits;
162 if (max_blocks)
163 set_buffer_mapped(bh);
164 return 0;
165}
166
167static ssize_t
168blkdev_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
169 loff_t offset, unsigned long nr_segs)
170{
171 struct file *file = iocb->ki_filp;
172 struct inode *inode = file->f_mapping->host;
173
174 return blockdev_direct_IO_no_locking(rw, iocb, inode, I_BDEV(inode),
175 iov, offset, nr_segs, blkdev_get_blocks, NULL);
176}
177
Nick Piggin585d3bc2009-02-25 10:44:19 +0100178/*
179 * Write out and wait upon all the dirty data associated with a block
180 * device via its mapping. Does not take the superblock lock.
181 */
182int sync_blockdev(struct block_device *bdev)
183{
184 int ret = 0;
185
186 if (bdev)
187 ret = filemap_write_and_wait(bdev->bd_inode->i_mapping);
188 return ret;
189}
190EXPORT_SYMBOL(sync_blockdev);
191
192/*
193 * Write out and wait upon all dirty data associated with this
194 * device. Filesystem data as well as the underlying block
195 * device. Takes the superblock lock.
196 */
197int fsync_bdev(struct block_device *bdev)
198{
199 struct super_block *sb = get_super(bdev);
200 if (sb) {
201 int res = fsync_super(sb);
202 drop_super(sb);
203 return res;
204 }
205 return sync_blockdev(bdev);
206}
Al Viro47e44912009-04-01 07:07:16 -0400207EXPORT_SYMBOL(fsync_bdev);
Nick Piggin585d3bc2009-02-25 10:44:19 +0100208
209/**
210 * freeze_bdev -- lock a filesystem and force it into a consistent state
211 * @bdev: blockdevice to lock
212 *
213 * This takes the block device bd_mount_sem to make sure no new mounts
214 * happen on bdev until thaw_bdev() is called.
215 * If a superblock is found on this device, we take the s_umount semaphore
216 * on it to make sure nobody unmounts until the snapshot creation is done.
217 * The reference counter (bd_fsfreeze_count) guarantees that only the last
218 * unfreeze process can unfreeze the frozen filesystem actually when multiple
219 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
220 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
221 * actually.
222 */
223struct super_block *freeze_bdev(struct block_device *bdev)
224{
225 struct super_block *sb;
226 int error = 0;
227
228 mutex_lock(&bdev->bd_fsfreeze_mutex);
229 if (bdev->bd_fsfreeze_count > 0) {
230 bdev->bd_fsfreeze_count++;
231 sb = get_super(bdev);
232 mutex_unlock(&bdev->bd_fsfreeze_mutex);
233 return sb;
234 }
235 bdev->bd_fsfreeze_count++;
236
237 down(&bdev->bd_mount_sem);
238 sb = get_super(bdev);
239 if (sb && !(sb->s_flags & MS_RDONLY)) {
240 sb->s_frozen = SB_FREEZE_WRITE;
241 smp_wmb();
242
243 __fsync_super(sb);
244
245 sb->s_frozen = SB_FREEZE_TRANS;
246 smp_wmb();
247
248 sync_blockdev(sb->s_bdev);
249
250 if (sb->s_op->freeze_fs) {
251 error = sb->s_op->freeze_fs(sb);
252 if (error) {
253 printk(KERN_ERR
254 "VFS:Filesystem freeze failed\n");
255 sb->s_frozen = SB_UNFROZEN;
256 drop_super(sb);
257 up(&bdev->bd_mount_sem);
258 bdev->bd_fsfreeze_count--;
259 mutex_unlock(&bdev->bd_fsfreeze_mutex);
260 return ERR_PTR(error);
261 }
262 }
263 }
264
265 sync_blockdev(bdev);
266 mutex_unlock(&bdev->bd_fsfreeze_mutex);
267
268 return sb; /* thaw_bdev releases s->s_umount and bd_mount_sem */
269}
270EXPORT_SYMBOL(freeze_bdev);
271
272/**
273 * thaw_bdev -- unlock filesystem
274 * @bdev: blockdevice to unlock
275 * @sb: associated superblock
276 *
277 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
278 */
279int thaw_bdev(struct block_device *bdev, struct super_block *sb)
280{
281 int error = 0;
282
283 mutex_lock(&bdev->bd_fsfreeze_mutex);
284 if (!bdev->bd_fsfreeze_count) {
285 mutex_unlock(&bdev->bd_fsfreeze_mutex);
286 return -EINVAL;
287 }
288
289 bdev->bd_fsfreeze_count--;
290 if (bdev->bd_fsfreeze_count > 0) {
291 if (sb)
292 drop_super(sb);
293 mutex_unlock(&bdev->bd_fsfreeze_mutex);
294 return 0;
295 }
296
297 if (sb) {
298 BUG_ON(sb->s_bdev != bdev);
299 if (!(sb->s_flags & MS_RDONLY)) {
300 if (sb->s_op->unfreeze_fs) {
301 error = sb->s_op->unfreeze_fs(sb);
302 if (error) {
303 printk(KERN_ERR
304 "VFS:Filesystem thaw failed\n");
305 sb->s_frozen = SB_FREEZE_TRANS;
306 bdev->bd_fsfreeze_count++;
307 mutex_unlock(&bdev->bd_fsfreeze_mutex);
308 return error;
309 }
310 }
311 sb->s_frozen = SB_UNFROZEN;
312 smp_wmb();
313 wake_up(&sb->s_wait_unfrozen);
314 }
315 drop_super(sb);
316 }
317
318 up(&bdev->bd_mount_sem);
319 mutex_unlock(&bdev->bd_fsfreeze_mutex);
320 return 0;
321}
322EXPORT_SYMBOL(thaw_bdev);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
325{
326 return block_write_full_page(page, blkdev_get_block, wbc);
327}
328
329static int blkdev_readpage(struct file * file, struct page * page)
330{
331 return block_read_full_page(page, blkdev_get_block);
332}
333
Jeff Moyerdb2dbb12009-04-22 14:08:13 +0200334static int blkdev_readpages(struct file *file, struct address_space *mapping,
335 struct list_head *pages, unsigned nr_pages)
336{
337 return mpage_readpages(mapping, pages, nr_pages, blkdev_get_block);
338}
339
Nick Piggin6272b5a2007-10-16 01:25:04 -0700340static int blkdev_write_begin(struct file *file, struct address_space *mapping,
341 loff_t pos, unsigned len, unsigned flags,
342 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700344 *pagep = NULL;
345 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
346 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Nick Piggin6272b5a2007-10-16 01:25:04 -0700349static int blkdev_write_end(struct file *file, struct address_space *mapping,
350 loff_t pos, unsigned len, unsigned copied,
351 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700353 int ret;
354 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
355
356 unlock_page(page);
357 page_cache_release(page);
358
359 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360}
361
362/*
363 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800364 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * so we compute the size by hand (just as in block_read/write above)
366 */
367static loff_t block_llseek(struct file *file, loff_t offset, int origin)
368{
369 struct inode *bd_inode = file->f_mapping->host;
370 loff_t size;
371 loff_t retval;
372
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800373 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 size = i_size_read(bd_inode);
375
376 switch (origin) {
377 case 2:
378 offset += size;
379 break;
380 case 1:
381 offset += file->f_pos;
382 }
383 retval = -EINVAL;
384 if (offset >= 0 && offset <= size) {
385 if (offset != file->f_pos) {
386 file->f_pos = offset;
387 }
388 retval = offset;
389 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800390 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return retval;
392}
393
394/*
395 * Filp is never NULL; the only case when ->fsync() is called with
396 * NULL first argument is nfsd_sync_dir() and that's not a directory.
397 */
398
399static int block_fsync(struct file *filp, struct dentry *dentry, int datasync)
400{
401 return sync_blockdev(I_BDEV(filp->f_mapping->host));
402}
403
404/*
405 * pseudo-fs
406 */
407
408static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800409static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411static struct inode *bdev_alloc_inode(struct super_block *sb)
412{
Christoph Lametere94b1762006-12-06 20:33:17 -0800413 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (!ei)
415 return NULL;
416 return &ei->vfs_inode;
417}
418
419static void bdev_destroy_inode(struct inode *inode)
420{
421 struct bdev_inode *bdi = BDEV_I(inode);
422
423 bdi->bdev.bd_inode_backing_dev_info = NULL;
424 kmem_cache_free(bdev_cachep, bdi);
425}
426
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700427static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 struct bdev_inode *ei = (struct bdev_inode *) foo;
430 struct block_device *bdev = &ei->bdev;
431
Christoph Lametera35afb82007-05-16 22:10:57 -0700432 memset(bdev, 0, sizeof(*bdev));
433 mutex_init(&bdev->bd_mutex);
434 sema_init(&bdev->bd_mount_sem, 1);
435 INIT_LIST_HEAD(&bdev->bd_inodes);
436 INIT_LIST_HEAD(&bdev->bd_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800437#ifdef CONFIG_SYSFS
Christoph Lametera35afb82007-05-16 22:10:57 -0700438 INIT_LIST_HEAD(&bdev->bd_holder_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800439#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700440 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800441 /* Initialize mutex for freeze. */
442 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445static inline void __bd_forget(struct inode *inode)
446{
447 list_del_init(&inode->i_devices);
448 inode->i_bdev = NULL;
449 inode->i_mapping = &inode->i_data;
450}
451
452static void bdev_clear_inode(struct inode *inode)
453{
454 struct block_device *bdev = &BDEV_I(inode)->bdev;
455 struct list_head *p;
456 spin_lock(&bdev_lock);
457 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
458 __bd_forget(list_entry(p, struct inode, i_devices));
459 }
460 list_del_init(&bdev->bd_list);
461 spin_unlock(&bdev_lock);
462}
463
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800464static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 .statfs = simple_statfs,
466 .alloc_inode = bdev_alloc_inode,
467 .destroy_inode = bdev_destroy_inode,
468 .drop_inode = generic_delete_inode,
469 .clear_inode = bdev_clear_inode,
470};
471
David Howells454e2392006-06-23 02:02:57 -0700472static int bd_get_sb(struct file_system_type *fs_type,
473 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
David Howells454e2392006-06-23 02:02:57 -0700475 return get_sb_pseudo(fs_type, "bdev:", &bdev_sops, 0x62646576, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478static struct file_system_type bd_type = {
479 .name = "bdev",
480 .get_sb = bd_get_sb,
481 .kill_sb = kill_anon_super,
482};
483
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800484struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486void __init bdev_cache_init(void)
487{
488 int err;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800489 struct vfsmount *bd_mnt;
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800492 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
493 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900494 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 err = register_filesystem(&bd_type);
496 if (err)
497 panic("Cannot register bdev pseudo-fs");
498 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (IS_ERR(bd_mnt))
500 panic("Cannot create bdev pseudo-fs");
501 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
502}
503
504/*
505 * Most likely _very_ bad one - but then it's hardly critical for small
506 * /dev and can be fixed when somebody will need really large one.
507 * Keep in mind that it will be fed through icache hash function too.
508 */
509static inline unsigned long hash(dev_t dev)
510{
511 return MAJOR(dev)+MINOR(dev);
512}
513
514static int bdev_test(struct inode *inode, void *data)
515{
516 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
517}
518
519static int bdev_set(struct inode *inode, void *data)
520{
521 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
522 return 0;
523}
524
525static LIST_HEAD(all_bdevs);
526
527struct block_device *bdget(dev_t dev)
528{
529 struct block_device *bdev;
530 struct inode *inode;
531
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800532 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 bdev_test, bdev_set, &dev);
534
535 if (!inode)
536 return NULL;
537
538 bdev = &BDEV_I(inode)->bdev;
539
540 if (inode->i_state & I_NEW) {
541 bdev->bd_contains = NULL;
542 bdev->bd_inode = inode;
543 bdev->bd_block_size = (1 << inode->i_blkbits);
544 bdev->bd_part_count = 0;
545 bdev->bd_invalidated = 0;
546 inode->i_mode = S_IFBLK;
547 inode->i_rdev = dev;
548 inode->i_bdev = bdev;
549 inode->i_data.a_ops = &def_blk_aops;
550 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
551 inode->i_data.backing_dev_info = &default_backing_dev_info;
552 spin_lock(&bdev_lock);
553 list_add(&bdev->bd_list, &all_bdevs);
554 spin_unlock(&bdev_lock);
555 unlock_new_inode(inode);
556 }
557 return bdev;
558}
559
560EXPORT_SYMBOL(bdget);
561
562long nr_blockdev_pages(void)
563{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700564 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 long ret = 0;
566 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700567 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 ret += bdev->bd_inode->i_mapping->nrpages;
569 }
570 spin_unlock(&bdev_lock);
571 return ret;
572}
573
574void bdput(struct block_device *bdev)
575{
576 iput(bdev->bd_inode);
577}
578
579EXPORT_SYMBOL(bdput);
580
581static struct block_device *bd_acquire(struct inode *inode)
582{
583 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 spin_lock(&bdev_lock);
586 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700587 if (bdev) {
588 atomic_inc(&bdev->bd_inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 spin_unlock(&bdev_lock);
590 return bdev;
591 }
592 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 bdev = bdget(inode->i_rdev);
595 if (bdev) {
596 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700597 if (!inode->i_bdev) {
598 /*
599 * We take an additional bd_inode->i_count for inode,
600 * and it's released in clear_inode() of inode.
601 * So, we can access it via ->i_mapping always
602 * without igrab().
603 */
604 atomic_inc(&bdev->bd_inode->i_count);
605 inode->i_bdev = bdev;
606 inode->i_mapping = bdev->bd_inode->i_mapping;
607 list_add(&inode->i_devices, &bdev->bd_inodes);
608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 spin_unlock(&bdev_lock);
610 }
611 return bdev;
612}
613
614/* Call when you free inode */
615
616void bd_forget(struct inode *inode)
617{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700618 struct block_device *bdev = NULL;
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700621 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800622 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700623 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700627
628 if (bdev)
629 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
632int bd_claim(struct block_device *bdev, void *holder)
633{
634 int res;
635 spin_lock(&bdev_lock);
636
637 /* first decide result */
638 if (bdev->bd_holder == holder)
639 res = 0; /* already a holder */
640 else if (bdev->bd_holder != NULL)
641 res = -EBUSY; /* held by someone else */
642 else if (bdev->bd_contains == bdev)
643 res = 0; /* is a whole device which isn't held */
644
645 else if (bdev->bd_contains->bd_holder == bd_claim)
646 res = 0; /* is a partition of a device that is being partitioned */
647 else if (bdev->bd_contains->bd_holder != NULL)
648 res = -EBUSY; /* is a partition of a held device */
649 else
650 res = 0; /* is a partition of an un-held device */
651
652 /* now impose change */
653 if (res==0) {
654 /* note that for a whole device bd_holders
655 * will be incremented twice, and bd_holder will
656 * be set to bd_claim before being set to holder
657 */
658 bdev->bd_contains->bd_holders ++;
659 bdev->bd_contains->bd_holder = bd_claim;
660 bdev->bd_holders++;
661 bdev->bd_holder = holder;
662 }
663 spin_unlock(&bdev_lock);
664 return res;
665}
666
667EXPORT_SYMBOL(bd_claim);
668
669void bd_release(struct block_device *bdev)
670{
671 spin_lock(&bdev_lock);
672 if (!--bdev->bd_contains->bd_holders)
673 bdev->bd_contains->bd_holder = NULL;
674 if (!--bdev->bd_holders)
675 bdev->bd_holder = NULL;
676 spin_unlock(&bdev_lock);
677}
678
679EXPORT_SYMBOL(bd_release);
680
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800681#ifdef CONFIG_SYSFS
682/*
683 * Functions for bd_claim_by_kobject / bd_release_from_kobject
684 *
685 * If a kobject is passed to bd_claim_by_kobject()
686 * and the kobject has a parent directory,
687 * following symlinks are created:
688 * o from the kobject to the claimed bdev
689 * o from "holders" directory of the bdev to the parent of the kobject
690 * bd_release_from_kobject() removes these symlinks.
691 *
692 * Example:
693 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
694 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
695 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
696 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
697 */
698
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700699static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800700{
701 if (!from || !to)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700702 return 0;
703 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800704}
705
706static void del_symlink(struct kobject *from, struct kobject *to)
707{
708 if (!from || !to)
709 return;
710 sysfs_remove_link(from, kobject_name(to));
711}
712
713/*
714 * 'struct bd_holder' contains pointers to kobjects symlinked by
715 * bd_claim_by_kobject.
716 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
717 */
718struct bd_holder {
719 struct list_head list; /* chain of holders of the bdev */
720 int count; /* references from the holder */
721 struct kobject *sdir; /* holder object, e.g. "/block/dm-0/slaves" */
722 struct kobject *hdev; /* e.g. "/block/dm-0" */
723 struct kobject *hdir; /* e.g. "/block/sda/holders" */
724 struct kobject *sdev; /* e.g. "/block/sda" */
725};
726
727/*
728 * Get references of related kobjects at once.
729 * Returns 1 on success. 0 on failure.
730 *
731 * Should call bd_holder_release_dirs() after successful use.
732 */
733static int bd_holder_grab_dirs(struct block_device *bdev,
734 struct bd_holder *bo)
735{
736 if (!bdev || !bo)
737 return 0;
738
739 bo->sdir = kobject_get(bo->sdir);
740 if (!bo->sdir)
741 return 0;
742
743 bo->hdev = kobject_get(bo->sdir->parent);
744 if (!bo->hdev)
745 goto fail_put_sdir;
746
Tejun Heo0762b8b2008-08-25 19:56:12 +0900747 bo->sdev = kobject_get(&part_to_dev(bdev->bd_part)->kobj);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800748 if (!bo->sdev)
749 goto fail_put_hdev;
750
Tejun Heo4c465012008-08-25 19:56:11 +0900751 bo->hdir = kobject_get(bdev->bd_part->holder_dir);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800752 if (!bo->hdir)
753 goto fail_put_sdev;
754
755 return 1;
756
757fail_put_sdev:
758 kobject_put(bo->sdev);
759fail_put_hdev:
760 kobject_put(bo->hdev);
761fail_put_sdir:
762 kobject_put(bo->sdir);
763
764 return 0;
765}
766
767/* Put references of related kobjects at once. */
768static void bd_holder_release_dirs(struct bd_holder *bo)
769{
770 kobject_put(bo->hdir);
771 kobject_put(bo->sdev);
772 kobject_put(bo->hdev);
773 kobject_put(bo->sdir);
774}
775
776static struct bd_holder *alloc_bd_holder(struct kobject *kobj)
777{
778 struct bd_holder *bo;
779
780 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
781 if (!bo)
782 return NULL;
783
784 bo->count = 1;
785 bo->sdir = kobj;
786
787 return bo;
788}
789
790static void free_bd_holder(struct bd_holder *bo)
791{
792 kfree(bo);
793}
794
795/**
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500796 * find_bd_holder - find matching struct bd_holder from the block device
797 *
798 * @bdev: struct block device to be searched
799 * @bo: target struct bd_holder
800 *
801 * Returns matching entry with @bo in @bdev->bd_holder_list.
802 * If found, increment the reference count and return the pointer.
803 * If not found, returns NULL.
804 */
Andrew Morton36a561d2006-10-30 22:07:03 -0800805static struct bd_holder *find_bd_holder(struct block_device *bdev,
806 struct bd_holder *bo)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500807{
808 struct bd_holder *tmp;
809
810 list_for_each_entry(tmp, &bdev->bd_holder_list, list)
811 if (tmp->sdir == bo->sdir) {
812 tmp->count++;
813 return tmp;
814 }
815
816 return NULL;
817}
818
819/**
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800820 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
821 *
822 * @bdev: block device to be bd_claimed
823 * @bo: preallocated and initialized by alloc_bd_holder()
824 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500825 * Add @bo to @bdev->bd_holder_list, create symlinks.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800826 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500827 * Returns 0 if symlinks are created.
828 * Returns -ve if something fails.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800829 */
830static int add_bd_holder(struct block_device *bdev, struct bd_holder *bo)
831{
Johannes Weiner4e916722007-07-15 23:41:25 -0700832 int err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800833
834 if (!bo)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700835 return -EINVAL;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800836
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800837 if (!bd_holder_grab_dirs(bdev, bo))
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700838 return -EBUSY;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800839
Johannes Weiner4e916722007-07-15 23:41:25 -0700840 err = add_symlink(bo->sdir, bo->sdev);
841 if (err)
842 return err;
843
844 err = add_symlink(bo->hdir, bo->hdev);
845 if (err) {
846 del_symlink(bo->sdir, bo->sdev);
847 return err;
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700848 }
Johannes Weiner4e916722007-07-15 23:41:25 -0700849
850 list_add_tail(&bo->list, &bdev->bd_holder_list);
851 return 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800852}
853
854/**
855 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
856 *
857 * @bdev: block device to be bd_claimed
858 * @kobj: holder's kobject
859 *
860 * If there is matching entry with @kobj in @bdev->bd_holder_list
861 * and no other bd_claim() from the same kobject,
862 * remove the struct bd_holder from the list, delete symlinks for it.
863 *
864 * Returns a pointer to the struct bd_holder when it's removed from the list
865 * and ready to be freed.
866 * Returns NULL if matching claim isn't found or there is other bd_claim()
867 * by the same kobject.
868 */
869static struct bd_holder *del_bd_holder(struct block_device *bdev,
870 struct kobject *kobj)
871{
872 struct bd_holder *bo;
873
874 list_for_each_entry(bo, &bdev->bd_holder_list, list) {
875 if (bo->sdir == kobj) {
876 bo->count--;
877 BUG_ON(bo->count < 0);
878 if (!bo->count) {
879 list_del(&bo->list);
880 del_symlink(bo->sdir, bo->sdev);
881 del_symlink(bo->hdir, bo->hdev);
882 bd_holder_release_dirs(bo);
883 return bo;
884 }
885 break;
886 }
887 }
888
889 return NULL;
890}
891
892/**
893 * bd_claim_by_kobject - bd_claim() with additional kobject signature
894 *
895 * @bdev: block device to be claimed
896 * @holder: holder's signature
897 * @kobj: holder's kobject
898 *
899 * Do bd_claim() and if it succeeds, create sysfs symlinks between
900 * the bdev and the holder's kobject.
901 * Use bd_release_from_kobject() when relesing the claimed bdev.
902 *
903 * Returns 0 on success. (same as bd_claim())
904 * Returns errno on failure.
905 */
906static int bd_claim_by_kobject(struct block_device *bdev, void *holder,
907 struct kobject *kobj)
908{
Johannes Weiner4e916722007-07-15 23:41:25 -0700909 int err;
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500910 struct bd_holder *bo, *found;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800911
912 if (!kobj)
913 return -EINVAL;
914
915 bo = alloc_bd_holder(kobj);
916 if (!bo)
917 return -ENOMEM;
918
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800919 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500920
Johannes Weiner4e916722007-07-15 23:41:25 -0700921 err = bd_claim(bdev, holder);
922 if (err)
Andrew Morton4210df22007-07-15 23:41:28 -0700923 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700924
925 found = find_bd_holder(bdev, bo);
926 if (found)
Andrew Morton4210df22007-07-15 23:41:28 -0700927 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700928
929 err = add_bd_holder(bdev, bo);
930 if (err)
931 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700932 else
933 bo = NULL;
934fail:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800935 mutex_unlock(&bdev->bd_mutex);
Andrew Morton4210df22007-07-15 23:41:28 -0700936 free_bd_holder(bo);
Johannes Weiner4e916722007-07-15 23:41:25 -0700937 return err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800938}
939
940/**
941 * bd_release_from_kobject - bd_release() with additional kobject signature
942 *
943 * @bdev: block device to be released
944 * @kobj: holder's kobject
945 *
946 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
947 */
948static void bd_release_from_kobject(struct block_device *bdev,
949 struct kobject *kobj)
950{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800951 if (!kobj)
952 return;
953
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800954 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800955 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700956 free_bd_holder(del_bd_holder(bdev, kobj));
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800957 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800958}
959
960/**
961 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
962 *
963 * @bdev: block device to be claimed
964 * @holder: holder's signature
965 * @disk: holder's gendisk
966 *
967 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
968 */
969int bd_claim_by_disk(struct block_device *bdev, void *holder,
970 struct gendisk *disk)
971{
972 return bd_claim_by_kobject(bdev, holder, kobject_get(disk->slave_dir));
973}
974EXPORT_SYMBOL_GPL(bd_claim_by_disk);
975
976/**
977 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
978 *
979 * @bdev: block device to be claimed
980 * @disk: holder's gendisk
981 *
982 * Call bd_release_from_kobject() and put @disk->slave_dir.
983 */
984void bd_release_from_disk(struct block_device *bdev, struct gendisk *disk)
985{
986 bd_release_from_kobject(bdev, disk->slave_dir);
987 kobject_put(disk->slave_dir);
988}
989EXPORT_SYMBOL_GPL(bd_release_from_disk);
990#endif
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992/*
993 * Tries to open block device by device number. Use it ONLY if you
994 * really do not have anything better - i.e. when you are behind a
995 * truly sucky interface and all you are given is a device number. _Never_
996 * to be used for internal purposes. If you ever need it - reconsider
997 * your API.
998 */
Al Viroaeb5d722008-09-02 15:28:45 -0400999struct block_device *open_by_devnum(dev_t dev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 struct block_device *bdev = bdget(dev);
1002 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (bdev)
Al Viro572c4892007-10-08 13:24:05 -04001004 err = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return err ? ERR_PTR(err) : bdev;
1006}
1007
1008EXPORT_SYMBOL(open_by_devnum);
1009
Andrew Patterson0c002c22008-09-04 14:27:20 -06001010/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001011 * flush_disk - invalidates all buffer-cache entries on a disk
1012 *
1013 * @bdev: struct block device to be flushed
1014 *
1015 * Invalidates all buffer-cache entries on a disk. It should be called
1016 * when a disk has been changed -- either by a media change or online
1017 * resize.
1018 */
1019static void flush_disk(struct block_device *bdev)
1020{
1021 if (__invalidate_device(bdev)) {
1022 char name[BDEVNAME_SIZE] = "";
1023
1024 if (bdev->bd_disk)
1025 disk_name(bdev->bd_disk, 0, name);
1026 printk(KERN_WARNING "VFS: busy inodes on changed media or "
1027 "resized disk %s\n", name);
1028 }
1029
1030 if (!bdev->bd_disk)
1031 return;
1032 if (disk_partitionable(bdev->bd_disk))
1033 bdev->bd_invalidated = 1;
1034}
1035
1036/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001037 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001038 * @disk: struct gendisk to check
1039 * @bdev: struct bdev to adjust.
1040 *
1041 * This routine checks to see if the bdev size does not match the disk size
1042 * and adjusts it if it differs.
1043 */
1044void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1045{
1046 loff_t disk_size, bdev_size;
1047
1048 disk_size = (loff_t)get_capacity(disk) << 9;
1049 bdev_size = i_size_read(bdev->bd_inode);
1050 if (disk_size != bdev_size) {
1051 char name[BDEVNAME_SIZE];
1052
1053 disk_name(disk, 0, name);
1054 printk(KERN_INFO
1055 "%s: detected capacity change from %lld to %lld\n",
1056 name, bdev_size, disk_size);
1057 i_size_write(bdev->bd_inode, disk_size);
Andrew Patterson608aeef2008-09-04 14:27:45 -06001058 flush_disk(bdev);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001059 }
1060}
1061EXPORT_SYMBOL(check_disk_size_change);
1062
1063/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001064 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001065 * @disk: struct gendisk to be revalidated
1066 *
1067 * This routine is a wrapper for lower-level driver's revalidate_disk
1068 * call-backs. It is used to do common pre and post operations needed
1069 * for all revalidate_disk operations.
1070 */
1071int revalidate_disk(struct gendisk *disk)
1072{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001073 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001074 int ret = 0;
1075
1076 if (disk->fops->revalidate_disk)
1077 ret = disk->fops->revalidate_disk(disk);
1078
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001079 bdev = bdget_disk(disk, 0);
1080 if (!bdev)
1081 return ret;
1082
1083 mutex_lock(&bdev->bd_mutex);
1084 check_disk_size_change(disk, bdev);
1085 mutex_unlock(&bdev->bd_mutex);
1086 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001087 return ret;
1088}
1089EXPORT_SYMBOL(revalidate_disk);
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091/*
1092 * This routine checks whether a removable media has been changed,
1093 * and invalidates all buffer-cache-entries in that case. This
1094 * is a relatively slow routine, so we have to try to minimize using
1095 * it. Thus it is called only upon a 'mount' or 'open'. This
1096 * is the best way of combining speed and utility, I think.
1097 * People changing diskettes in the middle of an operation deserve
1098 * to lose :-)
1099 */
1100int check_disk_change(struct block_device *bdev)
1101{
1102 struct gendisk *disk = bdev->bd_disk;
1103 struct block_device_operations * bdops = disk->fops;
1104
1105 if (!bdops->media_changed)
1106 return 0;
1107 if (!bdops->media_changed(bdev->bd_disk))
1108 return 0;
1109
Andrew Patterson56ade442008-09-04 14:27:40 -06001110 flush_disk(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (bdops->revalidate_disk)
1112 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return 1;
1114}
1115
1116EXPORT_SYMBOL(check_disk_change);
1117
1118void bd_set_size(struct block_device *bdev, loff_t size)
1119{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001120 unsigned bsize = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 bdev->bd_inode->i_size = size;
1123 while (bsize < PAGE_CACHE_SIZE) {
1124 if (size & bsize)
1125 break;
1126 bsize <<= 1;
1127 }
1128 bdev->bd_block_size = bsize;
1129 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1130}
1131EXPORT_SYMBOL(bd_set_size);
1132
Al Viro9a1c3542008-02-22 20:40:24 -05001133static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001134
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001135/*
1136 * bd_mutex locking:
1137 *
1138 * mutex_lock(part->bd_mutex)
1139 * mutex_lock_nested(whole->bd_mutex, 1)
1140 */
1141
Al Viro572c4892007-10-08 13:24:05 -04001142static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001145 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001146 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001147 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Al Viro572c4892007-10-08 13:24:05 -04001149 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001150 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001151 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001152 perm |= MAY_WRITE;
1153 /*
1154 * hooks: /n/, see "layering violations".
1155 */
1156 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Al Viro82666022008-08-01 05:32:04 -04001157 if (ret != 0) {
1158 bdput(bdev);
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001159 return ret;
Al Viro82666022008-08-01 05:32:04 -04001160 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 lock_kernel();
NeilBrownd3374822009-01-09 08:31:10 +11001163 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001164
Tejun Heo89f97492008-11-05 10:21:06 +01001165 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001166 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001167 if (!disk)
1168 goto out_unlock_kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
NeilBrown6796bf52006-12-08 02:36:16 -08001170 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (!bdev->bd_openers) {
1172 bdev->bd_disk = disk;
1173 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001174 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001176
1177 ret = -ENXIO;
1178 bdev->bd_part = disk_get_part(disk, partno);
1179 if (!bdev->bd_part)
1180 goto out_clear;
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001183 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001184 if (ret == -ERESTARTSYS) {
1185 /* Lost a race with 'disk' being
1186 * deleted, try again.
1187 * See md.c
1188 */
1189 disk_put_part(bdev->bd_part);
1190 bdev->bd_part = NULL;
1191 module_put(disk->fops->owner);
1192 put_disk(disk);
1193 bdev->bd_disk = NULL;
1194 mutex_unlock(&bdev->bd_mutex);
1195 goto restart;
1196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001198 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 }
1200 if (!bdev->bd_openers) {
1201 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1202 bdi = blk_get_backing_dev_info(bdev);
1203 if (bdi == NULL)
1204 bdi = &default_backing_dev_info;
1205 bdev->bd_inode->i_data.backing_dev_info = bdi;
1206 }
1207 if (bdev->bd_invalidated)
1208 rescan_partitions(disk, bdev);
1209 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 struct block_device *whole;
1211 whole = bdget_disk(disk, 0);
1212 ret = -ENOMEM;
1213 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001214 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001215 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001216 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001218 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 bdev->bd_contains = whole;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 bdev->bd_inode->i_data.backing_dev_info =
1221 whole->bd_inode->i_data.backing_dev_info;
Tejun Heo89f97492008-11-05 10:21:06 +01001222 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001223 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001224 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001226 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 }
Tejun Heo89f97492008-11-05 10:21:06 +01001228 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230 } else {
1231 put_disk(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001232 module_put(disk->fops->owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001233 disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (bdev->bd_contains == bdev) {
1235 if (bdev->bd_disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001236 ret = bdev->bd_disk->fops->open(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001238 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240 if (bdev->bd_invalidated)
1241 rescan_partitions(bdev->bd_disk, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
1243 }
1244 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001245 if (for_part)
1246 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001247 mutex_unlock(&bdev->bd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 unlock_kernel();
1249 return 0;
1250
Tejun Heo0762b8b2008-08-25 19:56:12 +09001251 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001252 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001254 bdev->bd_part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
1256 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001257 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001259 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001260 mutex_unlock(&bdev->bd_mutex);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001261 out_unlock_kernel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 unlock_kernel();
Tejun Heo0762b8b2008-08-25 19:56:12 +09001263
Tejun Heo0762b8b2008-08-25 19:56:12 +09001264 if (disk)
1265 module_put(disk->fops->owner);
1266 put_disk(disk);
1267 bdput(bdev);
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return ret;
1270}
1271
Al Viro572c4892007-10-08 13:24:05 -04001272int blkdev_get(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
Al Viro572c4892007-10-08 13:24:05 -04001274 return __blkdev_get(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001275}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276EXPORT_SYMBOL(blkdev_get);
1277
1278static int blkdev_open(struct inode * inode, struct file * filp)
1279{
1280 struct block_device *bdev;
1281 int res;
1282
1283 /*
1284 * Preserve backwards compatibility and allow large file access
1285 * even if userspace doesn't ask for it explicitly. Some mkfs
1286 * binary needs it. We might want to drop this workaround
1287 * during an unstable branch.
1288 */
1289 filp->f_flags |= O_LARGEFILE;
1290
Al Viro572c4892007-10-08 13:24:05 -04001291 if (filp->f_flags & O_NDELAY)
1292 filp->f_mode |= FMODE_NDELAY;
1293 if (filp->f_flags & O_EXCL)
1294 filp->f_mode |= FMODE_EXCL;
1295 if ((filp->f_flags & O_ACCMODE) == 3)
1296 filp->f_mode |= FMODE_WRITE_IOCTL;
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001299 if (bdev == NULL)
1300 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Al Viro572c4892007-10-08 13:24:05 -04001302 filp->f_mapping = bdev->bd_inode->i_mapping;
1303
1304 res = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (res)
1306 return res;
1307
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001308 if (filp->f_mode & FMODE_EXCL) {
1309 res = bd_claim(bdev, filp);
1310 if (res)
1311 goto out_blkdev_put;
1312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001316 out_blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001317 blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 return res;
1319}
1320
Al Viro9a1c3542008-02-22 20:40:24 -05001321static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001322{
1323 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001324 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001325 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001326
NeilBrown6796bf52006-12-08 02:36:16 -08001327 mutex_lock_nested(&bdev->bd_mutex, for_part);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001328 lock_kernel();
NeilBrown37be4122006-12-08 02:36:16 -08001329 if (for_part)
1330 bdev->bd_part_count--;
1331
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001332 if (!--bdev->bd_openers) {
1333 sync_blockdev(bdev);
1334 kill_bdev(bdev);
1335 }
1336 if (bdev->bd_contains == bdev) {
1337 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001338 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001339 }
1340 if (!bdev->bd_openers) {
1341 struct module *owner = disk->fops->owner;
1342
1343 put_disk(disk);
1344 module_put(owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001345 disk_put_part(bdev->bd_part);
1346 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001347 bdev->bd_disk = NULL;
1348 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
NeilBrown37be4122006-12-08 02:36:16 -08001349 if (bdev != bdev->bd_contains)
1350 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001351 bdev->bd_contains = NULL;
1352 }
1353 unlock_kernel();
1354 mutex_unlock(&bdev->bd_mutex);
1355 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001356 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001357 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001358 return ret;
1359}
1360
Al Viro9a1c3542008-02-22 20:40:24 -05001361int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001362{
Al Viro9a1c3542008-02-22 20:40:24 -05001363 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001364}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001365EXPORT_SYMBOL(blkdev_put);
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367static int blkdev_close(struct inode * inode, struct file * filp)
1368{
1369 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
1370 if (bdev->bd_holder == filp)
1371 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -05001372 return blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
1374
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001375static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
Al Viro56b26ad2008-09-19 03:17:36 -04001377 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1378 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001379
1380 /*
1381 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1382 * to updated it before every ioctl.
1383 */
Al Viro56b26ad2008-09-19 03:17:36 -04001384 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001385 mode |= FMODE_NDELAY;
1386 else
1387 mode &= ~FMODE_NDELAY;
1388
Al Viro56b26ad2008-09-19 03:17:36 -04001389 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001392/*
1393 * Try to release a page associated with block device when the system
1394 * is under memory pressure.
1395 */
1396static int blkdev_releasepage(struct page *page, gfp_t wait)
1397{
1398 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1399
1400 if (super && super->s_op->bdev_try_to_free_page)
1401 return super->s_op->bdev_try_to_free_page(super, page, wait);
1402
1403 return try_to_free_buffers(page);
1404}
1405
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001406static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 .readpage = blkdev_readpage,
Jeff Moyerdb2dbb12009-04-22 14:08:13 +02001408 .readpages = blkdev_readpages,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 .writepage = blkdev_writepage,
1410 .sync_page = block_sync_page,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001411 .write_begin = blkdev_write_begin,
1412 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001414 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 .direct_IO = blkdev_direct_IO,
1416};
1417
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001418const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 .open = blkdev_open,
1420 .release = blkdev_close,
1421 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001422 .read = do_sync_read,
1423 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 .aio_read = generic_file_aio_read,
Badari Pulavarty027445c2006-09-30 23:28:46 -07001425 .aio_write = generic_file_aio_write_nolock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 .mmap = generic_file_mmap,
1427 .fsync = block_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001428 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429#ifdef CONFIG_COMPAT
1430 .compat_ioctl = compat_blkdev_ioctl,
1431#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001432 .splice_read = generic_file_splice_read,
1433 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434};
1435
1436int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1437{
1438 int res;
1439 mm_segment_t old_fs = get_fs();
1440 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001441 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 set_fs(old_fs);
1443 return res;
1444}
1445
1446EXPORT_SYMBOL(ioctl_by_bdev);
1447
1448/**
1449 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001450 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001452 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 * namespace if possible and return it. Return ERR_PTR(error)
1454 * otherwise.
1455 */
Al Viro421748e2008-08-02 01:04:36 -04001456struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
1458 struct block_device *bdev;
1459 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001460 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 int error;
1462
Al Viro421748e2008-08-02 01:04:36 -04001463 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 return ERR_PTR(-EINVAL);
1465
Al Viro421748e2008-08-02 01:04:36 -04001466 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (error)
1468 return ERR_PTR(error);
1469
Al Viro421748e2008-08-02 01:04:36 -04001470 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 error = -ENOTBLK;
1472 if (!S_ISBLK(inode->i_mode))
1473 goto fail;
1474 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001475 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 goto fail;
1477 error = -ENOMEM;
1478 bdev = bd_acquire(inode);
1479 if (!bdev)
1480 goto fail;
1481out:
Al Viro421748e2008-08-02 01:04:36 -04001482 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return bdev;
1484fail:
1485 bdev = ERR_PTR(error);
1486 goto out;
1487}
Al Virod5686b42008-08-01 05:00:11 -04001488EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490/**
Al Viro30c40d22008-02-22 19:50:45 -05001491 * open_bdev_exclusive - open a block device by name and set it up for use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 *
1493 * @path: special file representing the block device
Al Viro30c40d22008-02-22 19:50:45 -05001494 * @mode: FMODE_... combination to pass be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 * @holder: owner for exclusion
1496 *
1497 * Open the blockdevice described by the special file at @path, claim it
1498 * for the @holder.
1499 */
Al Viro30c40d22008-02-22 19:50:45 -05001500struct block_device *open_bdev_exclusive(const char *path, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
1502 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 int error = 0;
1504
1505 bdev = lookup_bdev(path);
1506 if (IS_ERR(bdev))
1507 return bdev;
1508
Al Viro572c4892007-10-08 13:24:05 -04001509 error = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (error)
1511 return ERR_PTR(error);
1512 error = -EACCES;
Al Viro30c40d22008-02-22 19:50:45 -05001513 if ((mode & FMODE_WRITE) && bdev_read_only(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 goto blkdev_put;
1515 error = bd_claim(bdev, holder);
1516 if (error)
1517 goto blkdev_put;
1518
1519 return bdev;
1520
1521blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001522 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return ERR_PTR(error);
1524}
1525
Al Viro30c40d22008-02-22 19:50:45 -05001526EXPORT_SYMBOL(open_bdev_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528/**
Al Viro30c40d22008-02-22 19:50:45 -05001529 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 *
1531 * @bdev: blockdevice to close
Al Viro30c40d22008-02-22 19:50:45 -05001532 * @mode: mode, must match that used to open.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 *
Al Viro30c40d22008-02-22 19:50:45 -05001534 * This is the counterpart to open_bdev_exclusive().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 */
Al Viro30c40d22008-02-22 19:50:45 -05001536void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
1538 bd_release(bdev);
Al Viro30c40d22008-02-22 19:50:45 -05001539 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
Al Viro30c40d22008-02-22 19:50:45 -05001542EXPORT_SYMBOL(close_bdev_exclusive);
David Howellsb71e8a42006-08-29 19:06:11 +01001543
1544int __invalidate_device(struct block_device *bdev)
1545{
1546 struct super_block *sb = get_super(bdev);
1547 int res = 0;
1548
1549 if (sb) {
1550 /*
1551 * no need to lock the super, get_super holds the
1552 * read mutex so the filesystem cannot go away
1553 * under us (->put_super runs with the write lock
1554 * hold).
1555 */
1556 shrink_dcache_sb(sb);
1557 res = invalidate_inodes(sb);
1558 drop_super(sb);
1559 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001560 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001561 return res;
1562}
1563EXPORT_SYMBOL(__invalidate_device);