blob: 8c3c6899ccf33f433969e1b48b045a6a896b55ef [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 */
79 if (size < bdev_hardsect_size(bdev))
80 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{
109 int minsize = bdev_hardsect_size(sb->s_bdev);
110 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}
207
208/**
209 * freeze_bdev -- lock a filesystem and force it into a consistent state
210 * @bdev: blockdevice to lock
211 *
212 * This takes the block device bd_mount_sem to make sure no new mounts
213 * happen on bdev until thaw_bdev() is called.
214 * If a superblock is found on this device, we take the s_umount semaphore
215 * on it to make sure nobody unmounts until the snapshot creation is done.
216 * The reference counter (bd_fsfreeze_count) guarantees that only the last
217 * unfreeze process can unfreeze the frozen filesystem actually when multiple
218 * freeze requests arrive simultaneously. It counts up in freeze_bdev() and
219 * count down in thaw_bdev(). When it becomes 0, thaw_bdev() will unfreeze
220 * actually.
221 */
222struct super_block *freeze_bdev(struct block_device *bdev)
223{
224 struct super_block *sb;
225 int error = 0;
226
227 mutex_lock(&bdev->bd_fsfreeze_mutex);
228 if (bdev->bd_fsfreeze_count > 0) {
229 bdev->bd_fsfreeze_count++;
230 sb = get_super(bdev);
231 mutex_unlock(&bdev->bd_fsfreeze_mutex);
232 return sb;
233 }
234 bdev->bd_fsfreeze_count++;
235
236 down(&bdev->bd_mount_sem);
237 sb = get_super(bdev);
238 if (sb && !(sb->s_flags & MS_RDONLY)) {
239 sb->s_frozen = SB_FREEZE_WRITE;
240 smp_wmb();
241
242 __fsync_super(sb);
243
244 sb->s_frozen = SB_FREEZE_TRANS;
245 smp_wmb();
246
247 sync_blockdev(sb->s_bdev);
248
249 if (sb->s_op->freeze_fs) {
250 error = sb->s_op->freeze_fs(sb);
251 if (error) {
252 printk(KERN_ERR
253 "VFS:Filesystem freeze failed\n");
254 sb->s_frozen = SB_UNFROZEN;
255 drop_super(sb);
256 up(&bdev->bd_mount_sem);
257 bdev->bd_fsfreeze_count--;
258 mutex_unlock(&bdev->bd_fsfreeze_mutex);
259 return ERR_PTR(error);
260 }
261 }
262 }
263
264 sync_blockdev(bdev);
265 mutex_unlock(&bdev->bd_fsfreeze_mutex);
266
267 return sb; /* thaw_bdev releases s->s_umount and bd_mount_sem */
268}
269EXPORT_SYMBOL(freeze_bdev);
270
271/**
272 * thaw_bdev -- unlock filesystem
273 * @bdev: blockdevice to unlock
274 * @sb: associated superblock
275 *
276 * Unlocks the filesystem and marks it writeable again after freeze_bdev().
277 */
278int thaw_bdev(struct block_device *bdev, struct super_block *sb)
279{
280 int error = 0;
281
282 mutex_lock(&bdev->bd_fsfreeze_mutex);
283 if (!bdev->bd_fsfreeze_count) {
284 mutex_unlock(&bdev->bd_fsfreeze_mutex);
285 return -EINVAL;
286 }
287
288 bdev->bd_fsfreeze_count--;
289 if (bdev->bd_fsfreeze_count > 0) {
290 if (sb)
291 drop_super(sb);
292 mutex_unlock(&bdev->bd_fsfreeze_mutex);
293 return 0;
294 }
295
296 if (sb) {
297 BUG_ON(sb->s_bdev != bdev);
298 if (!(sb->s_flags & MS_RDONLY)) {
299 if (sb->s_op->unfreeze_fs) {
300 error = sb->s_op->unfreeze_fs(sb);
301 if (error) {
302 printk(KERN_ERR
303 "VFS:Filesystem thaw failed\n");
304 sb->s_frozen = SB_FREEZE_TRANS;
305 bdev->bd_fsfreeze_count++;
306 mutex_unlock(&bdev->bd_fsfreeze_mutex);
307 return error;
308 }
309 }
310 sb->s_frozen = SB_UNFROZEN;
311 smp_wmb();
312 wake_up(&sb->s_wait_unfrozen);
313 }
314 drop_super(sb);
315 }
316
317 up(&bdev->bd_mount_sem);
318 mutex_unlock(&bdev->bd_fsfreeze_mutex);
319 return 0;
320}
321EXPORT_SYMBOL(thaw_bdev);
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
324{
325 return block_write_full_page(page, blkdev_get_block, wbc);
326}
327
328static int blkdev_readpage(struct file * file, struct page * page)
329{
330 return block_read_full_page(page, blkdev_get_block);
331}
332
Nick Piggin6272b5a2007-10-16 01:25:04 -0700333static int blkdev_write_begin(struct file *file, struct address_space *mapping,
334 loff_t pos, unsigned len, unsigned flags,
335 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700337 *pagep = NULL;
338 return block_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
339 blkdev_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Nick Piggin6272b5a2007-10-16 01:25:04 -0700342static int blkdev_write_end(struct file *file, struct address_space *mapping,
343 loff_t pos, unsigned len, unsigned copied,
344 struct page *page, void *fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Nick Piggin6272b5a2007-10-16 01:25:04 -0700346 int ret;
347 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
348
349 unlock_page(page);
350 page_cache_release(page);
351
352 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355/*
356 * private llseek:
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800357 * for a block special file file->f_path.dentry->d_inode->i_size is zero
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * so we compute the size by hand (just as in block_read/write above)
359 */
360static loff_t block_llseek(struct file *file, loff_t offset, int origin)
361{
362 struct inode *bd_inode = file->f_mapping->host;
363 loff_t size;
364 loff_t retval;
365
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800366 mutex_lock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 size = i_size_read(bd_inode);
368
369 switch (origin) {
370 case 2:
371 offset += size;
372 break;
373 case 1:
374 offset += file->f_pos;
375 }
376 retval = -EINVAL;
377 if (offset >= 0 && offset <= size) {
378 if (offset != file->f_pos) {
379 file->f_pos = offset;
380 }
381 retval = offset;
382 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800383 mutex_unlock(&bd_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return retval;
385}
386
387/*
388 * Filp is never NULL; the only case when ->fsync() is called with
389 * NULL first argument is nfsd_sync_dir() and that's not a directory.
390 */
391
392static int block_fsync(struct file *filp, struct dentry *dentry, int datasync)
393{
394 return sync_blockdev(I_BDEV(filp->f_mapping->host));
395}
396
397/*
398 * pseudo-fs
399 */
400
401static __cacheline_aligned_in_smp DEFINE_SPINLOCK(bdev_lock);
Christoph Lametere18b8902006-12-06 20:33:20 -0800402static struct kmem_cache * bdev_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404static struct inode *bdev_alloc_inode(struct super_block *sb)
405{
Christoph Lametere94b1762006-12-06 20:33:17 -0800406 struct bdev_inode *ei = kmem_cache_alloc(bdev_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (!ei)
408 return NULL;
409 return &ei->vfs_inode;
410}
411
412static void bdev_destroy_inode(struct inode *inode)
413{
414 struct bdev_inode *bdi = BDEV_I(inode);
415
416 bdi->bdev.bd_inode_backing_dev_info = NULL;
417 kmem_cache_free(bdev_cachep, bdi);
418}
419
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700420static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 struct bdev_inode *ei = (struct bdev_inode *) foo;
423 struct block_device *bdev = &ei->bdev;
424
Christoph Lametera35afb82007-05-16 22:10:57 -0700425 memset(bdev, 0, sizeof(*bdev));
426 mutex_init(&bdev->bd_mutex);
427 sema_init(&bdev->bd_mount_sem, 1);
428 INIT_LIST_HEAD(&bdev->bd_inodes);
429 INIT_LIST_HEAD(&bdev->bd_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800430#ifdef CONFIG_SYSFS
Christoph Lametera35afb82007-05-16 22:10:57 -0700431 INIT_LIST_HEAD(&bdev->bd_holder_list);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800432#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700433 inode_init_once(&ei->vfs_inode);
Takashi Satofcccf502009-01-09 16:40:59 -0800434 /* Initialize mutex for freeze. */
435 mutex_init(&bdev->bd_fsfreeze_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
438static inline void __bd_forget(struct inode *inode)
439{
440 list_del_init(&inode->i_devices);
441 inode->i_bdev = NULL;
442 inode->i_mapping = &inode->i_data;
443}
444
445static void bdev_clear_inode(struct inode *inode)
446{
447 struct block_device *bdev = &BDEV_I(inode)->bdev;
448 struct list_head *p;
449 spin_lock(&bdev_lock);
450 while ( (p = bdev->bd_inodes.next) != &bdev->bd_inodes ) {
451 __bd_forget(list_entry(p, struct inode, i_devices));
452 }
453 list_del_init(&bdev->bd_list);
454 spin_unlock(&bdev_lock);
455}
456
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800457static const struct super_operations bdev_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 .statfs = simple_statfs,
459 .alloc_inode = bdev_alloc_inode,
460 .destroy_inode = bdev_destroy_inode,
461 .drop_inode = generic_delete_inode,
462 .clear_inode = bdev_clear_inode,
463};
464
David Howells454e2392006-06-23 02:02:57 -0700465static int bd_get_sb(struct file_system_type *fs_type,
466 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
David Howells454e2392006-06-23 02:02:57 -0700468 return get_sb_pseudo(fs_type, "bdev:", &bdev_sops, 0x62646576, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
471static struct file_system_type bd_type = {
472 .name = "bdev",
473 .get_sb = bd_get_sb,
474 .kill_sb = kill_anon_super,
475};
476
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800477struct super_block *blockdev_superblock __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479void __init bdev_cache_init(void)
480{
481 int err;
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800482 struct vfsmount *bd_mnt;
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 bdev_cachep = kmem_cache_create("bdev_cache", sizeof(struct bdev_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800485 0, (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
486 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +0900487 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 err = register_filesystem(&bd_type);
489 if (err)
490 panic("Cannot register bdev pseudo-fs");
491 bd_mnt = kern_mount(&bd_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (IS_ERR(bd_mnt))
493 panic("Cannot create bdev pseudo-fs");
494 blockdev_superblock = bd_mnt->mnt_sb; /* For writeback */
495}
496
497/*
498 * Most likely _very_ bad one - but then it's hardly critical for small
499 * /dev and can be fixed when somebody will need really large one.
500 * Keep in mind that it will be fed through icache hash function too.
501 */
502static inline unsigned long hash(dev_t dev)
503{
504 return MAJOR(dev)+MINOR(dev);
505}
506
507static int bdev_test(struct inode *inode, void *data)
508{
509 return BDEV_I(inode)->bdev.bd_dev == *(dev_t *)data;
510}
511
512static int bdev_set(struct inode *inode, void *data)
513{
514 BDEV_I(inode)->bdev.bd_dev = *(dev_t *)data;
515 return 0;
516}
517
518static LIST_HEAD(all_bdevs);
519
520struct block_device *bdget(dev_t dev)
521{
522 struct block_device *bdev;
523 struct inode *inode;
524
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800525 inode = iget5_locked(blockdev_superblock, hash(dev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 bdev_test, bdev_set, &dev);
527
528 if (!inode)
529 return NULL;
530
531 bdev = &BDEV_I(inode)->bdev;
532
533 if (inode->i_state & I_NEW) {
534 bdev->bd_contains = NULL;
535 bdev->bd_inode = inode;
536 bdev->bd_block_size = (1 << inode->i_blkbits);
537 bdev->bd_part_count = 0;
538 bdev->bd_invalidated = 0;
539 inode->i_mode = S_IFBLK;
540 inode->i_rdev = dev;
541 inode->i_bdev = bdev;
542 inode->i_data.a_ops = &def_blk_aops;
543 mapping_set_gfp_mask(&inode->i_data, GFP_USER);
544 inode->i_data.backing_dev_info = &default_backing_dev_info;
545 spin_lock(&bdev_lock);
546 list_add(&bdev->bd_list, &all_bdevs);
547 spin_unlock(&bdev_lock);
548 unlock_new_inode(inode);
549 }
550 return bdev;
551}
552
553EXPORT_SYMBOL(bdget);
554
555long nr_blockdev_pages(void)
556{
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700557 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 long ret = 0;
559 spin_lock(&bdev_lock);
Matthias Kaehlcke203a2932007-07-15 23:40:23 -0700560 list_for_each_entry(bdev, &all_bdevs, bd_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 ret += bdev->bd_inode->i_mapping->nrpages;
562 }
563 spin_unlock(&bdev_lock);
564 return ret;
565}
566
567void bdput(struct block_device *bdev)
568{
569 iput(bdev->bd_inode);
570}
571
572EXPORT_SYMBOL(bdput);
573
574static struct block_device *bd_acquire(struct inode *inode)
575{
576 struct block_device *bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 spin_lock(&bdev_lock);
579 bdev = inode->i_bdev;
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700580 if (bdev) {
581 atomic_inc(&bdev->bd_inode->i_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 spin_unlock(&bdev_lock);
583 return bdev;
584 }
585 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 bdev = bdget(inode->i_rdev);
588 if (bdev) {
589 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700590 if (!inode->i_bdev) {
591 /*
592 * We take an additional bd_inode->i_count for inode,
593 * and it's released in clear_inode() of inode.
594 * So, we can access it via ->i_mapping always
595 * without igrab().
596 */
597 atomic_inc(&bdev->bd_inode->i_count);
598 inode->i_bdev = bdev;
599 inode->i_mapping = bdev->bd_inode->i_mapping;
600 list_add(&inode->i_devices, &bdev->bd_inodes);
601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 spin_unlock(&bdev_lock);
603 }
604 return bdev;
605}
606
607/* Call when you free inode */
608
609void bd_forget(struct inode *inode)
610{
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700611 struct block_device *bdev = NULL;
612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 spin_lock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700614 if (inode->i_bdev) {
Denis ChengRqc2acf7b2008-12-01 14:34:56 -0800615 if (!sb_is_blkdev_sb(inode->i_sb))
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700616 bdev = inode->i_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 __bd_forget(inode);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 spin_unlock(&bdev_lock);
OGAWA Hirofumi09d967c2006-06-22 14:47:21 -0700620
621 if (bdev)
622 iput(bdev->bd_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625int bd_claim(struct block_device *bdev, void *holder)
626{
627 int res;
628 spin_lock(&bdev_lock);
629
630 /* first decide result */
631 if (bdev->bd_holder == holder)
632 res = 0; /* already a holder */
633 else if (bdev->bd_holder != NULL)
634 res = -EBUSY; /* held by someone else */
635 else if (bdev->bd_contains == bdev)
636 res = 0; /* is a whole device which isn't held */
637
638 else if (bdev->bd_contains->bd_holder == bd_claim)
639 res = 0; /* is a partition of a device that is being partitioned */
640 else if (bdev->bd_contains->bd_holder != NULL)
641 res = -EBUSY; /* is a partition of a held device */
642 else
643 res = 0; /* is a partition of an un-held device */
644
645 /* now impose change */
646 if (res==0) {
647 /* note that for a whole device bd_holders
648 * will be incremented twice, and bd_holder will
649 * be set to bd_claim before being set to holder
650 */
651 bdev->bd_contains->bd_holders ++;
652 bdev->bd_contains->bd_holder = bd_claim;
653 bdev->bd_holders++;
654 bdev->bd_holder = holder;
655 }
656 spin_unlock(&bdev_lock);
657 return res;
658}
659
660EXPORT_SYMBOL(bd_claim);
661
662void bd_release(struct block_device *bdev)
663{
664 spin_lock(&bdev_lock);
665 if (!--bdev->bd_contains->bd_holders)
666 bdev->bd_contains->bd_holder = NULL;
667 if (!--bdev->bd_holders)
668 bdev->bd_holder = NULL;
669 spin_unlock(&bdev_lock);
670}
671
672EXPORT_SYMBOL(bd_release);
673
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800674#ifdef CONFIG_SYSFS
675/*
676 * Functions for bd_claim_by_kobject / bd_release_from_kobject
677 *
678 * If a kobject is passed to bd_claim_by_kobject()
679 * and the kobject has a parent directory,
680 * following symlinks are created:
681 * o from the kobject to the claimed bdev
682 * o from "holders" directory of the bdev to the parent of the kobject
683 * bd_release_from_kobject() removes these symlinks.
684 *
685 * Example:
686 * If /dev/dm-0 maps to /dev/sda, kobject corresponding to
687 * /sys/block/dm-0/slaves is passed to bd_claim_by_kobject(), then:
688 * /sys/block/dm-0/slaves/sda --> /sys/block/sda
689 * /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
690 */
691
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700692static int add_symlink(struct kobject *from, struct kobject *to)
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800693{
694 if (!from || !to)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700695 return 0;
696 return sysfs_create_link(from, to, kobject_name(to));
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800697}
698
699static void del_symlink(struct kobject *from, struct kobject *to)
700{
701 if (!from || !to)
702 return;
703 sysfs_remove_link(from, kobject_name(to));
704}
705
706/*
707 * 'struct bd_holder' contains pointers to kobjects symlinked by
708 * bd_claim_by_kobject.
709 * It's connected to bd_holder_list which is protected by bdev->bd_sem.
710 */
711struct bd_holder {
712 struct list_head list; /* chain of holders of the bdev */
713 int count; /* references from the holder */
714 struct kobject *sdir; /* holder object, e.g. "/block/dm-0/slaves" */
715 struct kobject *hdev; /* e.g. "/block/dm-0" */
716 struct kobject *hdir; /* e.g. "/block/sda/holders" */
717 struct kobject *sdev; /* e.g. "/block/sda" */
718};
719
720/*
721 * Get references of related kobjects at once.
722 * Returns 1 on success. 0 on failure.
723 *
724 * Should call bd_holder_release_dirs() after successful use.
725 */
726static int bd_holder_grab_dirs(struct block_device *bdev,
727 struct bd_holder *bo)
728{
729 if (!bdev || !bo)
730 return 0;
731
732 bo->sdir = kobject_get(bo->sdir);
733 if (!bo->sdir)
734 return 0;
735
736 bo->hdev = kobject_get(bo->sdir->parent);
737 if (!bo->hdev)
738 goto fail_put_sdir;
739
Tejun Heo0762b8b2008-08-25 19:56:12 +0900740 bo->sdev = kobject_get(&part_to_dev(bdev->bd_part)->kobj);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800741 if (!bo->sdev)
742 goto fail_put_hdev;
743
Tejun Heo4c465012008-08-25 19:56:11 +0900744 bo->hdir = kobject_get(bdev->bd_part->holder_dir);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800745 if (!bo->hdir)
746 goto fail_put_sdev;
747
748 return 1;
749
750fail_put_sdev:
751 kobject_put(bo->sdev);
752fail_put_hdev:
753 kobject_put(bo->hdev);
754fail_put_sdir:
755 kobject_put(bo->sdir);
756
757 return 0;
758}
759
760/* Put references of related kobjects at once. */
761static void bd_holder_release_dirs(struct bd_holder *bo)
762{
763 kobject_put(bo->hdir);
764 kobject_put(bo->sdev);
765 kobject_put(bo->hdev);
766 kobject_put(bo->sdir);
767}
768
769static struct bd_holder *alloc_bd_holder(struct kobject *kobj)
770{
771 struct bd_holder *bo;
772
773 bo = kzalloc(sizeof(*bo), GFP_KERNEL);
774 if (!bo)
775 return NULL;
776
777 bo->count = 1;
778 bo->sdir = kobj;
779
780 return bo;
781}
782
783static void free_bd_holder(struct bd_holder *bo)
784{
785 kfree(bo);
786}
787
788/**
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500789 * find_bd_holder - find matching struct bd_holder from the block device
790 *
791 * @bdev: struct block device to be searched
792 * @bo: target struct bd_holder
793 *
794 * Returns matching entry with @bo in @bdev->bd_holder_list.
795 * If found, increment the reference count and return the pointer.
796 * If not found, returns NULL.
797 */
Andrew Morton36a561d2006-10-30 22:07:03 -0800798static struct bd_holder *find_bd_holder(struct block_device *bdev,
799 struct bd_holder *bo)
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500800{
801 struct bd_holder *tmp;
802
803 list_for_each_entry(tmp, &bdev->bd_holder_list, list)
804 if (tmp->sdir == bo->sdir) {
805 tmp->count++;
806 return tmp;
807 }
808
809 return NULL;
810}
811
812/**
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800813 * add_bd_holder - create sysfs symlinks for bd_claim() relationship
814 *
815 * @bdev: block device to be bd_claimed
816 * @bo: preallocated and initialized by alloc_bd_holder()
817 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500818 * Add @bo to @bdev->bd_holder_list, create symlinks.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800819 *
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500820 * Returns 0 if symlinks are created.
821 * Returns -ve if something fails.
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800822 */
823static int add_bd_holder(struct block_device *bdev, struct bd_holder *bo)
824{
Johannes Weiner4e916722007-07-15 23:41:25 -0700825 int err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800826
827 if (!bo)
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700828 return -EINVAL;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800829
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800830 if (!bd_holder_grab_dirs(bdev, bo))
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700831 return -EBUSY;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800832
Johannes Weiner4e916722007-07-15 23:41:25 -0700833 err = add_symlink(bo->sdir, bo->sdev);
834 if (err)
835 return err;
836
837 err = add_symlink(bo->hdir, bo->hdev);
838 if (err) {
839 del_symlink(bo->sdir, bo->sdev);
840 return err;
Andrew Morton4d7dd8f2006-09-29 01:58:56 -0700841 }
Johannes Weiner4e916722007-07-15 23:41:25 -0700842
843 list_add_tail(&bo->list, &bdev->bd_holder_list);
844 return 0;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800845}
846
847/**
848 * del_bd_holder - delete sysfs symlinks for bd_claim() relationship
849 *
850 * @bdev: block device to be bd_claimed
851 * @kobj: holder's kobject
852 *
853 * If there is matching entry with @kobj in @bdev->bd_holder_list
854 * and no other bd_claim() from the same kobject,
855 * remove the struct bd_holder from the list, delete symlinks for it.
856 *
857 * Returns a pointer to the struct bd_holder when it's removed from the list
858 * and ready to be freed.
859 * Returns NULL if matching claim isn't found or there is other bd_claim()
860 * by the same kobject.
861 */
862static struct bd_holder *del_bd_holder(struct block_device *bdev,
863 struct kobject *kobj)
864{
865 struct bd_holder *bo;
866
867 list_for_each_entry(bo, &bdev->bd_holder_list, list) {
868 if (bo->sdir == kobj) {
869 bo->count--;
870 BUG_ON(bo->count < 0);
871 if (!bo->count) {
872 list_del(&bo->list);
873 del_symlink(bo->sdir, bo->sdev);
874 del_symlink(bo->hdir, bo->hdev);
875 bd_holder_release_dirs(bo);
876 return bo;
877 }
878 break;
879 }
880 }
881
882 return NULL;
883}
884
885/**
886 * bd_claim_by_kobject - bd_claim() with additional kobject signature
887 *
888 * @bdev: block device to be claimed
889 * @holder: holder's signature
890 * @kobj: holder's kobject
891 *
892 * Do bd_claim() and if it succeeds, create sysfs symlinks between
893 * the bdev and the holder's kobject.
894 * Use bd_release_from_kobject() when relesing the claimed bdev.
895 *
896 * Returns 0 on success. (same as bd_claim())
897 * Returns errno on failure.
898 */
899static int bd_claim_by_kobject(struct block_device *bdev, void *holder,
900 struct kobject *kobj)
901{
Johannes Weiner4e916722007-07-15 23:41:25 -0700902 int err;
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500903 struct bd_holder *bo, *found;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800904
905 if (!kobj)
906 return -EINVAL;
907
908 bo = alloc_bd_holder(kobj);
909 if (!bo)
910 return -ENOMEM;
911
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800912 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomuradf6c0cd2006-10-30 16:23:56 -0500913
Johannes Weiner4e916722007-07-15 23:41:25 -0700914 err = bd_claim(bdev, holder);
915 if (err)
Andrew Morton4210df22007-07-15 23:41:28 -0700916 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700917
918 found = find_bd_holder(bdev, bo);
919 if (found)
Andrew Morton4210df22007-07-15 23:41:28 -0700920 goto fail;
Johannes Weiner4e916722007-07-15 23:41:25 -0700921
922 err = add_bd_holder(bdev, bo);
923 if (err)
924 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700925 else
926 bo = NULL;
927fail:
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800928 mutex_unlock(&bdev->bd_mutex);
Andrew Morton4210df22007-07-15 23:41:28 -0700929 free_bd_holder(bo);
Johannes Weiner4e916722007-07-15 23:41:25 -0700930 return err;
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800931}
932
933/**
934 * bd_release_from_kobject - bd_release() with additional kobject signature
935 *
936 * @bdev: block device to be released
937 * @kobj: holder's kobject
938 *
939 * Do bd_release() and remove sysfs symlinks created by bd_claim_by_kobject().
940 */
941static void bd_release_from_kobject(struct block_device *bdev,
942 struct kobject *kobj)
943{
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800944 if (!kobj)
945 return;
946
Peter Zijlstra2e7b6512006-12-08 02:36:13 -0800947 mutex_lock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800948 bd_release(bdev);
Andrew Morton4210df22007-07-15 23:41:28 -0700949 free_bd_holder(del_bd_holder(bdev, kobj));
Jun'ichi Nomurab4cf1b72006-03-27 01:18:00 -0800950 mutex_unlock(&bdev->bd_mutex);
Jun'ichi Nomura641dc632006-03-27 01:17:57 -0800951}
952
953/**
954 * bd_claim_by_disk - wrapper function for bd_claim_by_kobject()
955 *
956 * @bdev: block device to be claimed
957 * @holder: holder's signature
958 * @disk: holder's gendisk
959 *
960 * Call bd_claim_by_kobject() with getting @disk->slave_dir.
961 */
962int bd_claim_by_disk(struct block_device *bdev, void *holder,
963 struct gendisk *disk)
964{
965 return bd_claim_by_kobject(bdev, holder, kobject_get(disk->slave_dir));
966}
967EXPORT_SYMBOL_GPL(bd_claim_by_disk);
968
969/**
970 * bd_release_from_disk - wrapper function for bd_release_from_kobject()
971 *
972 * @bdev: block device to be claimed
973 * @disk: holder's gendisk
974 *
975 * Call bd_release_from_kobject() and put @disk->slave_dir.
976 */
977void bd_release_from_disk(struct block_device *bdev, struct gendisk *disk)
978{
979 bd_release_from_kobject(bdev, disk->slave_dir);
980 kobject_put(disk->slave_dir);
981}
982EXPORT_SYMBOL_GPL(bd_release_from_disk);
983#endif
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/*
986 * Tries to open block device by device number. Use it ONLY if you
987 * really do not have anything better - i.e. when you are behind a
988 * truly sucky interface and all you are given is a device number. _Never_
989 * to be used for internal purposes. If you ever need it - reconsider
990 * your API.
991 */
Al Viroaeb5d722008-09-02 15:28:45 -0400992struct block_device *open_by_devnum(dev_t dev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 struct block_device *bdev = bdget(dev);
995 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (bdev)
Al Viro572c4892007-10-08 13:24:05 -0400997 err = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return err ? ERR_PTR(err) : bdev;
999}
1000
1001EXPORT_SYMBOL(open_by_devnum);
1002
Andrew Patterson0c002c22008-09-04 14:27:20 -06001003/**
Andrew Patterson56ade442008-09-04 14:27:40 -06001004 * flush_disk - invalidates all buffer-cache entries on a disk
1005 *
1006 * @bdev: struct block device to be flushed
1007 *
1008 * Invalidates all buffer-cache entries on a disk. It should be called
1009 * when a disk has been changed -- either by a media change or online
1010 * resize.
1011 */
1012static void flush_disk(struct block_device *bdev)
1013{
1014 if (__invalidate_device(bdev)) {
1015 char name[BDEVNAME_SIZE] = "";
1016
1017 if (bdev->bd_disk)
1018 disk_name(bdev->bd_disk, 0, name);
1019 printk(KERN_WARNING "VFS: busy inodes on changed media or "
1020 "resized disk %s\n", name);
1021 }
1022
1023 if (!bdev->bd_disk)
1024 return;
1025 if (disk_partitionable(bdev->bd_disk))
1026 bdev->bd_invalidated = 1;
1027}
1028
1029/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001030 * check_disk_size_change - checks for disk size change and adjusts bdev size.
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001031 * @disk: struct gendisk to check
1032 * @bdev: struct bdev to adjust.
1033 *
1034 * This routine checks to see if the bdev size does not match the disk size
1035 * and adjusts it if it differs.
1036 */
1037void check_disk_size_change(struct gendisk *disk, struct block_device *bdev)
1038{
1039 loff_t disk_size, bdev_size;
1040
1041 disk_size = (loff_t)get_capacity(disk) << 9;
1042 bdev_size = i_size_read(bdev->bd_inode);
1043 if (disk_size != bdev_size) {
1044 char name[BDEVNAME_SIZE];
1045
1046 disk_name(disk, 0, name);
1047 printk(KERN_INFO
1048 "%s: detected capacity change from %lld to %lld\n",
1049 name, bdev_size, disk_size);
1050 i_size_write(bdev->bd_inode, disk_size);
Andrew Patterson608aeef2008-09-04 14:27:45 -06001051 flush_disk(bdev);
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001052 }
1053}
1054EXPORT_SYMBOL(check_disk_size_change);
1055
1056/**
Randy Dunlap57d1b532008-10-09 10:42:38 +02001057 * revalidate_disk - wrapper for lower-level driver's revalidate_disk call-back
Andrew Patterson0c002c22008-09-04 14:27:20 -06001058 * @disk: struct gendisk to be revalidated
1059 *
1060 * This routine is a wrapper for lower-level driver's revalidate_disk
1061 * call-backs. It is used to do common pre and post operations needed
1062 * for all revalidate_disk operations.
1063 */
1064int revalidate_disk(struct gendisk *disk)
1065{
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001066 struct block_device *bdev;
Andrew Patterson0c002c22008-09-04 14:27:20 -06001067 int ret = 0;
1068
1069 if (disk->fops->revalidate_disk)
1070 ret = disk->fops->revalidate_disk(disk);
1071
Andrew Pattersonc3279d12008-09-04 14:27:25 -06001072 bdev = bdget_disk(disk, 0);
1073 if (!bdev)
1074 return ret;
1075
1076 mutex_lock(&bdev->bd_mutex);
1077 check_disk_size_change(disk, bdev);
1078 mutex_unlock(&bdev->bd_mutex);
1079 bdput(bdev);
Andrew Patterson0c002c22008-09-04 14:27:20 -06001080 return ret;
1081}
1082EXPORT_SYMBOL(revalidate_disk);
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084/*
1085 * This routine checks whether a removable media has been changed,
1086 * and invalidates all buffer-cache-entries in that case. This
1087 * is a relatively slow routine, so we have to try to minimize using
1088 * it. Thus it is called only upon a 'mount' or 'open'. This
1089 * is the best way of combining speed and utility, I think.
1090 * People changing diskettes in the middle of an operation deserve
1091 * to lose :-)
1092 */
1093int check_disk_change(struct block_device *bdev)
1094{
1095 struct gendisk *disk = bdev->bd_disk;
1096 struct block_device_operations * bdops = disk->fops;
1097
1098 if (!bdops->media_changed)
1099 return 0;
1100 if (!bdops->media_changed(bdev->bd_disk))
1101 return 0;
1102
Andrew Patterson56ade442008-09-04 14:27:40 -06001103 flush_disk(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (bdops->revalidate_disk)
1105 bdops->revalidate_disk(bdev->bd_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return 1;
1107}
1108
1109EXPORT_SYMBOL(check_disk_change);
1110
1111void bd_set_size(struct block_device *bdev, loff_t size)
1112{
1113 unsigned bsize = bdev_hardsect_size(bdev);
1114
1115 bdev->bd_inode->i_size = size;
1116 while (bsize < PAGE_CACHE_SIZE) {
1117 if (size & bsize)
1118 break;
1119 bsize <<= 1;
1120 }
1121 bdev->bd_block_size = bsize;
1122 bdev->bd_inode->i_blkbits = blksize_bits(bsize);
1123}
1124EXPORT_SYMBOL(bd_set_size);
1125
Al Viro9a1c3542008-02-22 20:40:24 -05001126static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part);
NeilBrown37be4122006-12-08 02:36:16 -08001127
Peter Zijlstra6d740cd2007-02-20 13:58:18 -08001128/*
1129 * bd_mutex locking:
1130 *
1131 * mutex_lock(part->bd_mutex)
1132 * mutex_lock_nested(whole->bd_mutex, 1)
1133 */
1134
Al Viro572c4892007-10-08 13:24:05 -04001135static int __blkdev_get(struct block_device *bdev, fmode_t mode, int for_part)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 struct gendisk *disk;
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001138 int ret;
Tejun Heocf771cb2008-09-03 09:01:09 +02001139 int partno;
Al Virofe6e9c12008-06-23 08:30:55 -04001140 int perm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Al Viro572c4892007-10-08 13:24:05 -04001142 if (mode & FMODE_READ)
Al Virofe6e9c12008-06-23 08:30:55 -04001143 perm |= MAY_READ;
Al Viro572c4892007-10-08 13:24:05 -04001144 if (mode & FMODE_WRITE)
Al Virofe6e9c12008-06-23 08:30:55 -04001145 perm |= MAY_WRITE;
1146 /*
1147 * hooks: /n/, see "layering violations".
1148 */
1149 ret = devcgroup_inode_permission(bdev->bd_inode, perm);
Al Viro82666022008-08-01 05:32:04 -04001150 if (ret != 0) {
1151 bdput(bdev);
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001152 return ret;
Al Viro82666022008-08-01 05:32:04 -04001153 }
Pavel Emelyanov7db9cfd2008-06-05 22:46:27 -07001154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 lock_kernel();
NeilBrownd3374822009-01-09 08:31:10 +11001156 restart:
Tejun Heo0762b8b2008-08-25 19:56:12 +09001157
Tejun Heo89f97492008-11-05 10:21:06 +01001158 ret = -ENXIO;
Tejun Heocf771cb2008-09-03 09:01:09 +02001159 disk = get_gendisk(bdev->bd_dev, &partno);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001160 if (!disk)
1161 goto out_unlock_kernel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
NeilBrown6796bf52006-12-08 02:36:16 -08001163 mutex_lock_nested(&bdev->bd_mutex, for_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (!bdev->bd_openers) {
1165 bdev->bd_disk = disk;
1166 bdev->bd_contains = bdev;
Tejun Heocf771cb2008-09-03 09:01:09 +02001167 if (!partno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 struct backing_dev_info *bdi;
Tejun Heo89f97492008-11-05 10:21:06 +01001169
1170 ret = -ENXIO;
1171 bdev->bd_part = disk_get_part(disk, partno);
1172 if (!bdev->bd_part)
1173 goto out_clear;
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001176 ret = disk->fops->open(bdev, mode);
NeilBrownd3374822009-01-09 08:31:10 +11001177 if (ret == -ERESTARTSYS) {
1178 /* Lost a race with 'disk' being
1179 * deleted, try again.
1180 * See md.c
1181 */
1182 disk_put_part(bdev->bd_part);
1183 bdev->bd_part = NULL;
1184 module_put(disk->fops->owner);
1185 put_disk(disk);
1186 bdev->bd_disk = NULL;
1187 mutex_unlock(&bdev->bd_mutex);
1188 goto restart;
1189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001191 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 if (!bdev->bd_openers) {
1194 bd_set_size(bdev,(loff_t)get_capacity(disk)<<9);
1195 bdi = blk_get_backing_dev_info(bdev);
1196 if (bdi == NULL)
1197 bdi = &default_backing_dev_info;
1198 bdev->bd_inode->i_data.backing_dev_info = bdi;
1199 }
1200 if (bdev->bd_invalidated)
1201 rescan_partitions(disk, bdev);
1202 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 struct block_device *whole;
1204 whole = bdget_disk(disk, 0);
1205 ret = -ENOMEM;
1206 if (!whole)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001207 goto out_clear;
NeilBrown37be4122006-12-08 02:36:16 -08001208 BUG_ON(for_part);
Al Viro572c4892007-10-08 13:24:05 -04001209 ret = __blkdev_get(whole, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001211 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 bdev->bd_contains = whole;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 bdev->bd_inode->i_data.backing_dev_info =
1214 whole->bd_inode->i_data.backing_dev_info;
Tejun Heo89f97492008-11-05 10:21:06 +01001215 bdev->bd_part = disk_get_part(disk, partno);
Tejun Heoe71bf0d2008-09-03 09:03:02 +02001216 if (!(disk->flags & GENHD_FL_UP) ||
Tejun Heo89f97492008-11-05 10:21:06 +01001217 !bdev->bd_part || !bdev->bd_part->nr_sects) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 ret = -ENXIO;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001219 goto out_clear;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
Tejun Heo89f97492008-11-05 10:21:06 +01001221 bd_set_size(bdev, (loff_t)bdev->bd_part->nr_sects << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223 } else {
1224 put_disk(disk);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001225 module_put(disk->fops->owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001226 disk = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (bdev->bd_contains == bdev) {
1228 if (bdev->bd_disk->fops->open) {
Al Viro572c4892007-10-08 13:24:05 -04001229 ret = bdev->bd_disk->fops->open(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (ret)
Tejun Heo0762b8b2008-08-25 19:56:12 +09001231 goto out_unlock_bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233 if (bdev->bd_invalidated)
1234 rescan_partitions(bdev->bd_disk, bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 }
1236 }
1237 bdev->bd_openers++;
NeilBrown37be4122006-12-08 02:36:16 -08001238 if (for_part)
1239 bdev->bd_part_count++;
Arjan van de Venc039e312006-03-23 03:00:28 -08001240 mutex_unlock(&bdev->bd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 unlock_kernel();
1242 return 0;
1243
Tejun Heo0762b8b2008-08-25 19:56:12 +09001244 out_clear:
Tejun Heo89f97492008-11-05 10:21:06 +01001245 disk_put_part(bdev->bd_part);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 bdev->bd_disk = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001247 bdev->bd_part = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
1249 if (bdev != bdev->bd_contains)
Al Viro572c4892007-10-08 13:24:05 -04001250 __blkdev_put(bdev->bd_contains, mode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 bdev->bd_contains = NULL;
Tejun Heo0762b8b2008-08-25 19:56:12 +09001252 out_unlock_bdev:
Arjan van de Venc039e312006-03-23 03:00:28 -08001253 mutex_unlock(&bdev->bd_mutex);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001254 out_unlock_kernel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 unlock_kernel();
Tejun Heo0762b8b2008-08-25 19:56:12 +09001256
Tejun Heo0762b8b2008-08-25 19:56:12 +09001257 if (disk)
1258 module_put(disk->fops->owner);
1259 put_disk(disk);
1260 bdput(bdev);
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 return ret;
1263}
1264
Al Viro572c4892007-10-08 13:24:05 -04001265int blkdev_get(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Al Viro572c4892007-10-08 13:24:05 -04001267 return __blkdev_get(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001268}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269EXPORT_SYMBOL(blkdev_get);
1270
1271static int blkdev_open(struct inode * inode, struct file * filp)
1272{
1273 struct block_device *bdev;
1274 int res;
1275
1276 /*
1277 * Preserve backwards compatibility and allow large file access
1278 * even if userspace doesn't ask for it explicitly. Some mkfs
1279 * binary needs it. We might want to drop this workaround
1280 * during an unstable branch.
1281 */
1282 filp->f_flags |= O_LARGEFILE;
1283
Al Viro572c4892007-10-08 13:24:05 -04001284 if (filp->f_flags & O_NDELAY)
1285 filp->f_mode |= FMODE_NDELAY;
1286 if (filp->f_flags & O_EXCL)
1287 filp->f_mode |= FMODE_EXCL;
1288 if ((filp->f_flags & O_ACCMODE) == 3)
1289 filp->f_mode |= FMODE_WRITE_IOCTL;
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 bdev = bd_acquire(inode);
Pavel Emelianov6a2aae02006-10-28 10:38:33 -07001292 if (bdev == NULL)
1293 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Al Viro572c4892007-10-08 13:24:05 -04001295 filp->f_mapping = bdev->bd_inode->i_mapping;
1296
1297 res = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (res)
1299 return res;
1300
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001301 if (filp->f_mode & FMODE_EXCL) {
1302 res = bd_claim(bdev, filp);
1303 if (res)
1304 goto out_blkdev_put;
1305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001307 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Christoph Hellwigebbefc02008-11-05 14:54:41 +01001309 out_blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001310 blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return res;
1312}
1313
Al Viro9a1c3542008-02-22 20:40:24 -05001314static int __blkdev_put(struct block_device *bdev, fmode_t mode, int for_part)
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001315{
1316 int ret = 0;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001317 struct gendisk *disk = bdev->bd_disk;
NeilBrown37be4122006-12-08 02:36:16 -08001318 struct block_device *victim = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001319
NeilBrown6796bf52006-12-08 02:36:16 -08001320 mutex_lock_nested(&bdev->bd_mutex, for_part);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001321 lock_kernel();
NeilBrown37be4122006-12-08 02:36:16 -08001322 if (for_part)
1323 bdev->bd_part_count--;
1324
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001325 if (!--bdev->bd_openers) {
1326 sync_blockdev(bdev);
1327 kill_bdev(bdev);
1328 }
1329 if (bdev->bd_contains == bdev) {
1330 if (disk->fops->release)
Al Viro9a1c3542008-02-22 20:40:24 -05001331 ret = disk->fops->release(disk, mode);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001332 }
1333 if (!bdev->bd_openers) {
1334 struct module *owner = disk->fops->owner;
1335
1336 put_disk(disk);
1337 module_put(owner);
Tejun Heo0762b8b2008-08-25 19:56:12 +09001338 disk_put_part(bdev->bd_part);
1339 bdev->bd_part = NULL;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001340 bdev->bd_disk = NULL;
1341 bdev->bd_inode->i_data.backing_dev_info = &default_backing_dev_info;
NeilBrown37be4122006-12-08 02:36:16 -08001342 if (bdev != bdev->bd_contains)
1343 victim = bdev->bd_contains;
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001344 bdev->bd_contains = NULL;
1345 }
1346 unlock_kernel();
1347 mutex_unlock(&bdev->bd_mutex);
1348 bdput(bdev);
NeilBrown37be4122006-12-08 02:36:16 -08001349 if (victim)
Al Viro9a1c3542008-02-22 20:40:24 -05001350 __blkdev_put(victim, mode, 1);
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001351 return ret;
1352}
1353
Al Viro9a1c3542008-02-22 20:40:24 -05001354int blkdev_put(struct block_device *bdev, fmode_t mode)
NeilBrown37be4122006-12-08 02:36:16 -08001355{
Al Viro9a1c3542008-02-22 20:40:24 -05001356 return __blkdev_put(bdev, mode, 0);
NeilBrown37be4122006-12-08 02:36:16 -08001357}
Peter Zijlstra2e7b6512006-12-08 02:36:13 -08001358EXPORT_SYMBOL(blkdev_put);
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360static int blkdev_close(struct inode * inode, struct file * filp)
1361{
1362 struct block_device *bdev = I_BDEV(filp->f_mapping->host);
1363 if (bdev->bd_holder == filp)
1364 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -05001365 return blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001368static long block_ioctl(struct file *file, unsigned cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Al Viro56b26ad2008-09-19 03:17:36 -04001370 struct block_device *bdev = I_BDEV(file->f_mapping->host);
1371 fmode_t mode = file->f_mode;
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001372
1373 /*
1374 * O_NDELAY can be altered using fcntl(.., F_SETFL, ..), so we have
1375 * to updated it before every ioctl.
1376 */
Al Viro56b26ad2008-09-19 03:17:36 -04001377 if (file->f_flags & O_NDELAY)
Christoph Hellwigfd4ce1a2008-11-05 14:58:42 +01001378 mode |= FMODE_NDELAY;
1379 else
1380 mode &= ~FMODE_NDELAY;
1381
Al Viro56b26ad2008-09-19 03:17:36 -04001382 return blkdev_ioctl(bdev, mode, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001385/*
1386 * Try to release a page associated with block device when the system
1387 * is under memory pressure.
1388 */
1389static int blkdev_releasepage(struct page *page, gfp_t wait)
1390{
1391 struct super_block *super = BDEV_I(page->mapping->host)->bdev.bd_super;
1392
1393 if (super && super->s_op->bdev_try_to_free_page)
1394 return super->s_op->bdev_try_to_free_page(super, page, wait);
1395
1396 return try_to_free_buffers(page);
1397}
1398
Adrian Bunk4c54ac62008-02-18 13:48:31 +01001399static const struct address_space_operations def_blk_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 .readpage = blkdev_readpage,
1401 .writepage = blkdev_writepage,
1402 .sync_page = block_sync_page,
Nick Piggin6272b5a2007-10-16 01:25:04 -07001403 .write_begin = blkdev_write_begin,
1404 .write_end = blkdev_write_end,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 .writepages = generic_writepages,
Theodore Ts'o87d8fe12009-01-03 09:47:09 -05001406 .releasepage = blkdev_releasepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 .direct_IO = blkdev_direct_IO,
1408};
1409
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001410const struct file_operations def_blk_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 .open = blkdev_open,
1412 .release = blkdev_close,
1413 .llseek = block_llseek,
Badari Pulavarty543ade12006-09-30 23:28:48 -07001414 .read = do_sync_read,
1415 .write = do_sync_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 .aio_read = generic_file_aio_read,
Badari Pulavarty027445c2006-09-30 23:28:46 -07001417 .aio_write = generic_file_aio_write_nolock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 .mmap = generic_file_mmap,
1419 .fsync = block_fsync,
Arnd Bergmannbb93e3a2005-06-23 00:10:15 -07001420 .unlocked_ioctl = block_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421#ifdef CONFIG_COMPAT
1422 .compat_ioctl = compat_blkdev_ioctl,
1423#endif
Jens Axboe7f9c51f2006-05-01 19:59:32 +02001424 .splice_read = generic_file_splice_read,
1425 .splice_write = generic_file_splice_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426};
1427
1428int ioctl_by_bdev(struct block_device *bdev, unsigned cmd, unsigned long arg)
1429{
1430 int res;
1431 mm_segment_t old_fs = get_fs();
1432 set_fs(KERNEL_DS);
Al Viro56b26ad2008-09-19 03:17:36 -04001433 res = blkdev_ioctl(bdev, 0, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 set_fs(old_fs);
1435 return res;
1436}
1437
1438EXPORT_SYMBOL(ioctl_by_bdev);
1439
1440/**
1441 * lookup_bdev - lookup a struct block_device by name
Randy Dunlap94e29592009-01-06 14:41:15 -08001442 * @pathname: special file representing the block device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 *
Randy Dunlap57d1b532008-10-09 10:42:38 +02001444 * Get a reference to the blockdevice at @pathname in the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 * namespace if possible and return it. Return ERR_PTR(error)
1446 * otherwise.
1447 */
Al Viro421748e2008-08-02 01:04:36 -04001448struct block_device *lookup_bdev(const char *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 struct block_device *bdev;
1451 struct inode *inode;
Al Viro421748e2008-08-02 01:04:36 -04001452 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int error;
1454
Al Viro421748e2008-08-02 01:04:36 -04001455 if (!pathname || !*pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return ERR_PTR(-EINVAL);
1457
Al Viro421748e2008-08-02 01:04:36 -04001458 error = kern_path(pathname, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (error)
1460 return ERR_PTR(error);
1461
Al Viro421748e2008-08-02 01:04:36 -04001462 inode = path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 error = -ENOTBLK;
1464 if (!S_ISBLK(inode->i_mode))
1465 goto fail;
1466 error = -EACCES;
Al Viro421748e2008-08-02 01:04:36 -04001467 if (path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 goto fail;
1469 error = -ENOMEM;
1470 bdev = bd_acquire(inode);
1471 if (!bdev)
1472 goto fail;
1473out:
Al Viro421748e2008-08-02 01:04:36 -04001474 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return bdev;
1476fail:
1477 bdev = ERR_PTR(error);
1478 goto out;
1479}
Al Virod5686b42008-08-01 05:00:11 -04001480EXPORT_SYMBOL(lookup_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482/**
Al Viro30c40d22008-02-22 19:50:45 -05001483 * open_bdev_exclusive - open a block device by name and set it up for use
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 *
1485 * @path: special file representing the block device
Al Viro30c40d22008-02-22 19:50:45 -05001486 * @mode: FMODE_... combination to pass be used
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 * @holder: owner for exclusion
1488 *
1489 * Open the blockdevice described by the special file at @path, claim it
1490 * for the @holder.
1491 */
Al Viro30c40d22008-02-22 19:50:45 -05001492struct block_device *open_bdev_exclusive(const char *path, fmode_t mode, void *holder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
1494 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 int error = 0;
1496
1497 bdev = lookup_bdev(path);
1498 if (IS_ERR(bdev))
1499 return bdev;
1500
Al Viro572c4892007-10-08 13:24:05 -04001501 error = blkdev_get(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (error)
1503 return ERR_PTR(error);
1504 error = -EACCES;
Al Viro30c40d22008-02-22 19:50:45 -05001505 if ((mode & FMODE_WRITE) && bdev_read_only(bdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 goto blkdev_put;
1507 error = bd_claim(bdev, holder);
1508 if (error)
1509 goto blkdev_put;
1510
1511 return bdev;
1512
1513blkdev_put:
Al Viro9a1c3542008-02-22 20:40:24 -05001514 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return ERR_PTR(error);
1516}
1517
Al Viro30c40d22008-02-22 19:50:45 -05001518EXPORT_SYMBOL(open_bdev_exclusive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520/**
Al Viro30c40d22008-02-22 19:50:45 -05001521 * close_bdev_exclusive - close a blockdevice opened by open_bdev_exclusive()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 *
1523 * @bdev: blockdevice to close
Al Viro30c40d22008-02-22 19:50:45 -05001524 * @mode: mode, must match that used to open.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 *
Al Viro30c40d22008-02-22 19:50:45 -05001526 * This is the counterpart to open_bdev_exclusive().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 */
Al Viro30c40d22008-02-22 19:50:45 -05001528void close_bdev_exclusive(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
1530 bd_release(bdev);
Al Viro30c40d22008-02-22 19:50:45 -05001531 blkdev_put(bdev, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Al Viro30c40d22008-02-22 19:50:45 -05001534EXPORT_SYMBOL(close_bdev_exclusive);
David Howellsb71e8a42006-08-29 19:06:11 +01001535
1536int __invalidate_device(struct block_device *bdev)
1537{
1538 struct super_block *sb = get_super(bdev);
1539 int res = 0;
1540
1541 if (sb) {
1542 /*
1543 * no need to lock the super, get_super holds the
1544 * read mutex so the filesystem cannot go away
1545 * under us (->put_super runs with the write lock
1546 * hold).
1547 */
1548 shrink_dcache_sb(sb);
1549 res = invalidate_inodes(sb);
1550 drop_super(sb);
1551 }
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001552 invalidate_bdev(bdev);
David Howellsb71e8a42006-08-29 19:06:11 +01001553 return res;
1554}
1555EXPORT_SYMBOL(__invalidate_device);