| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/fs/ext2/xip.c | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2005 IBM Corporation | 
|  | 5 | * Author: Carsten Otte (cotte@de.ibm.com) | 
|  | 6 | */ | 
|  | 7 |  | 
|  | 8 | #include <linux/mm.h> | 
|  | 9 | #include <linux/fs.h> | 
|  | 10 | #include <linux/genhd.h> | 
|  | 11 | #include <linux/buffer_head.h> | 
| Al Viro | 08f8585 | 2007-10-08 13:26:20 -0400 | [diff] [blame] | 12 | #include <linux/blkdev.h> | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 13 | #include "ext2.h" | 
|  | 14 | #include "xip.h" | 
|  | 15 |  | 
|  | 16 | static inline int | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 17 | __inode_direct_access(struct inode *inode, sector_t block, | 
| Jared Hulbert | 30afcb4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 18 | void **kaddr, unsigned long *pfn) | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 19 | { | 
| Jared Hulbert | 30afcb4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 20 | struct block_device *bdev = inode->i_sb->s_bdev; | 
| Alexey Dobriyan | 83d5cde | 2009-09-21 17:01:13 -0700 | [diff] [blame] | 21 | const struct block_device_operations *ops = bdev->bd_disk->fops; | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 22 | sector_t sector; | 
|  | 23 |  | 
|  | 24 | sector = block * (PAGE_SIZE / 512); /* ext2 block to bdev sector */ | 
| Jared Hulbert | 30afcb4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 25 |  | 
|  | 26 | BUG_ON(!ops->direct_access); | 
|  | 27 | return ops->direct_access(bdev, sector, kaddr, pfn); | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 28 | } | 
|  | 29 |  | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 30 | static inline int | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 31 | __ext2_get_block(struct inode *inode, pgoff_t pgoff, int create, | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 32 | sector_t *result) | 
|  | 33 | { | 
|  | 34 | struct buffer_head tmp; | 
|  | 35 | int rc; | 
|  | 36 |  | 
|  | 37 | memset(&tmp, 0, sizeof(struct buffer_head)); | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 38 | rc = ext2_get_block(inode, pgoff, &tmp, create); | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 39 | *result = tmp.b_blocknr; | 
|  | 40 |  | 
|  | 41 | /* did we get a sparse block (hole in the file)? */ | 
| Carsten Otte | 0cfc11e | 2005-07-27 11:43:52 -0700 | [diff] [blame] | 42 | if (!tmp.b_blocknr && !rc) { | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 43 | BUG_ON(create); | 
|  | 44 | rc = -ENODATA; | 
|  | 45 | } | 
|  | 46 |  | 
|  | 47 | return rc; | 
|  | 48 | } | 
|  | 49 |  | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 50 | int | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 51 | ext2_clear_xip_target(struct inode *inode, sector_t block) | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 52 | { | 
| Jared Hulbert | 30afcb4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 53 | void *kaddr; | 
|  | 54 | unsigned long pfn; | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 55 | int rc; | 
|  | 56 |  | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 57 | rc = __inode_direct_access(inode, block, &kaddr, &pfn); | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 58 | if (!rc) | 
| Jared Hulbert | 30afcb4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 59 | clear_page(kaddr); | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 60 | return rc; | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 61 | } | 
|  | 62 |  | 
|  | 63 | void ext2_xip_verify_sb(struct super_block *sb) | 
|  | 64 | { | 
|  | 65 | struct ext2_sb_info *sbi = EXT2_SB(sb); | 
|  | 66 |  | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 67 | if ((sbi->s_mount_opt & EXT2_MOUNT_XIP) && | 
|  | 68 | !sb->s_bdev->bd_disk->fops->direct_access) { | 
|  | 69 | sbi->s_mount_opt &= (~EXT2_MOUNT_XIP); | 
| Alexey Fisher | 2314b07 | 2009-11-19 19:12:51 +0100 | [diff] [blame] | 70 | ext2_msg(sb, KERN_WARNING, | 
|  | 71 | "warning: ignoring xip option - " | 
|  | 72 | "not supported by bdev"); | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 73 | } | 
|  | 74 | } | 
|  | 75 |  | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 76 | int ext2_get_xip_mem(struct address_space *mapping, pgoff_t pgoff, int create, | 
|  | 77 | void **kmem, unsigned long *pfn) | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 78 | { | 
|  | 79 | int rc; | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 80 | sector_t block; | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 81 |  | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 82 | /* first, retrieve the sector number */ | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 83 | rc = __ext2_get_block(mapping->host, pgoff, create, &block); | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 84 | if (rc) | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 85 | return rc; | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 86 |  | 
| Carsten Otte | afa597b | 2005-07-15 03:56:30 -0700 | [diff] [blame] | 87 | /* retrieve address of the target data */ | 
| Nick Piggin | 70688e4 | 2008-04-28 02:13:02 -0700 | [diff] [blame] | 88 | rc = __inode_direct_access(mapping->host, block, kmem, pfn); | 
|  | 89 | return rc; | 
| Carsten Otte | 6d79125 | 2005-06-23 22:05:26 -0700 | [diff] [blame] | 90 | } |