]>
Commit | Line | Data |
---|---|---|
6d79125b CO |
1 | /* |
2 | * linux/fs/ext2/xip.c | |
3 | * | |
4 | * Copyright (C) 2005 IBM Corporation | |
5 | * Author: Carsten Otte ([email protected]) | |
6 | */ | |
7 | ||
8 | #include <linux/mm.h> | |
9 | #include <linux/fs.h> | |
10 | #include <linux/genhd.h> | |
11 | #include <linux/buffer_head.h> | |
08f85851 | 12 | #include <linux/blkdev.h> |
6d79125b CO |
13 | #include "ext2.h" |
14 | #include "xip.h" | |
15 | ||
16 | static inline int | |
70688e4d | 17 | __inode_direct_access(struct inode *inode, sector_t block, |
30afcb4b | 18 | void **kaddr, unsigned long *pfn) |
afa597ba | 19 | { |
30afcb4b | 20 | struct block_device *bdev = inode->i_sb->s_bdev; |
83d5cde4 | 21 | const struct block_device_operations *ops = bdev->bd_disk->fops; |
70688e4d NP |
22 | sector_t sector; |
23 | ||
24 | sector = block * (PAGE_SIZE / 512); /* ext2 block to bdev sector */ | |
30afcb4b JH |
25 | |
26 | BUG_ON(!ops->direct_access); | |
27 | return ops->direct_access(bdev, sector, kaddr, pfn); | |
6d79125b CO |
28 | } |
29 | ||
afa597ba | 30 | static inline int |
70688e4d | 31 | __ext2_get_block(struct inode *inode, pgoff_t pgoff, int create, |
afa597ba CO |
32 | sector_t *result) |
33 | { | |
34 | struct buffer_head tmp; | |
35 | int rc; | |
36 | ||
37 | memset(&tmp, 0, sizeof(struct buffer_head)); | |
70688e4d | 38 | rc = ext2_get_block(inode, pgoff, &tmp, create); |
afa597ba CO |
39 | *result = tmp.b_blocknr; |
40 | ||
41 | /* did we get a sparse block (hole in the file)? */ | |
0cfc11ed | 42 | if (!tmp.b_blocknr && !rc) { |
afa597ba CO |
43 | BUG_ON(create); |
44 | rc = -ENODATA; | |
45 | } | |
46 | ||
47 | return rc; | |
48 | } | |
49 | ||
6d79125b | 50 | int |
70688e4d | 51 | ext2_clear_xip_target(struct inode *inode, sector_t block) |
afa597ba | 52 | { |
30afcb4b JH |
53 | void *kaddr; |
54 | unsigned long pfn; | |
6d79125b CO |
55 | int rc; |
56 | ||
70688e4d | 57 | rc = __inode_direct_access(inode, block, &kaddr, &pfn); |
afa597ba | 58 | if (!rc) |
30afcb4b | 59 | clear_page(kaddr); |
afa597ba | 60 | return rc; |
6d79125b CO |
61 | } |
62 | ||
63 | void ext2_xip_verify_sb(struct super_block *sb) | |
64 | { | |
65 | struct ext2_sb_info *sbi = EXT2_SB(sb); | |
66 | ||
afa597ba CO |
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); | |
2314b07c OR |
70 | ext2_msg(sb, KERN_WARNING, |
71 | "warning: ignoring xip option - " | |
72 | "not supported by bdev"); | |
6d79125b CO |
73 | } |
74 | } | |
75 | ||
70688e4d NP |
76 | int ext2_get_xip_mem(struct address_space *mapping, pgoff_t pgoff, int create, |
77 | void **kmem, unsigned long *pfn) | |
6d79125b CO |
78 | { |
79 | int rc; | |
70688e4d | 80 | sector_t block; |
6d79125b | 81 | |
afa597ba | 82 | /* first, retrieve the sector number */ |
70688e4d | 83 | rc = __ext2_get_block(mapping->host, pgoff, create, &block); |
6d79125b | 84 | if (rc) |
70688e4d | 85 | return rc; |
6d79125b | 86 | |
afa597ba | 87 | /* retrieve address of the target data */ |
70688e4d NP |
88 | rc = __inode_direct_access(mapping->host, block, kmem, pfn); |
89 | return rc; | |
6d79125b | 90 | } |