4 * Copyright (C) 2005 IBM Corporation
5 * Author: Carsten Otte (cotte@de.ibm.com)
10 #include <linux/genhd.h>
11 #include <linux/buffer_head.h>
12 #include <linux/ext2_fs_sb.h>
13 #include <linux/ext2_fs.h>
18 __inode_direct_access(struct inode
*inode
, sector_t sector
,
21 BUG_ON(!inode
->i_sb
->s_bdev
->bd_disk
->fops
->direct_access
);
22 return inode
->i_sb
->s_bdev
->bd_disk
->fops
23 ->direct_access(inode
->i_sb
->s_bdev
,sector
,data
);
27 __ext2_get_sector(struct inode
*inode
, sector_t offset
, int create
,
30 struct buffer_head tmp
;
33 memset(&tmp
, 0, sizeof(struct buffer_head
));
34 rc
= ext2_get_block(inode
, offset
/ (PAGE_SIZE
/512), &tmp
,
36 *result
= tmp
.b_blocknr
;
38 /* did we get a sparse block (hole in the file)? */
39 if (!tmp
.b_blocknr
&& !rc
) {
48 ext2_clear_xip_target(struct inode
*inode
, int block
)
50 sector_t sector
= block
* (PAGE_SIZE
/512);
54 rc
= __inode_direct_access(inode
, sector
, &data
);
56 clear_page((void*)data
);
60 void ext2_xip_verify_sb(struct super_block
*sb
)
62 struct ext2_sb_info
*sbi
= EXT2_SB(sb
);
64 if ((sbi
->s_mount_opt
& EXT2_MOUNT_XIP
) &&
65 !sb
->s_bdev
->bd_disk
->fops
->direct_access
) {
66 sbi
->s_mount_opt
&= (~EXT2_MOUNT_XIP
);
67 ext2_warning(sb
, __FUNCTION__
,
68 "ignoring xip option - not supported by bdev");
73 ext2_get_xip_page(struct address_space
*mapping
, sector_t offset
,
80 /* first, retrieve the sector number */
81 rc
= __ext2_get_sector(mapping
->host
, offset
, create
, §or
);
85 /* retrieve address of the target data */
86 rc
= __inode_direct_access
87 (mapping
->host
, sector
* (PAGE_SIZE
/512), &data
);
89 return virt_to_page(data
);