blob: 430b4c8ee971e38d4611d27c7e0fbb2cff93e82c [file] [log] [blame]
Carsten Otte6d791252005-06-23 22:05:26 -07001/*
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>
12#include <linux/ext2_fs_sb.h>
13#include <linux/ext2_fs.h>
14#include "ext2.h"
15#include "xip.h"
16
17static inline int
Carsten Otteafa597b2005-07-15 03:56:30 -070018__inode_direct_access(struct inode *inode, sector_t sector,
Jared Hulbert30afcb42008-04-28 02:13:02 -070019 void **kaddr, unsigned long *pfn)
Carsten Otteafa597b2005-07-15 03:56:30 -070020{
Jared Hulbert30afcb42008-04-28 02:13:02 -070021 struct block_device *bdev = inode->i_sb->s_bdev;
22 struct block_device_operations *ops = bdev->bd_disk->fops;
23
24 BUG_ON(!ops->direct_access);
25 return ops->direct_access(bdev, sector, kaddr, pfn);
Carsten Otte6d791252005-06-23 22:05:26 -070026}
27
Carsten Otteafa597b2005-07-15 03:56:30 -070028static inline int
29__ext2_get_sector(struct inode *inode, sector_t offset, int create,
30 sector_t *result)
31{
32 struct buffer_head tmp;
33 int rc;
34
35 memset(&tmp, 0, sizeof(struct buffer_head));
36 rc = ext2_get_block(inode, offset/ (PAGE_SIZE/512), &tmp,
37 create);
38 *result = tmp.b_blocknr;
39
40 /* did we get a sparse block (hole in the file)? */
Carsten Otte0cfc11e2005-07-27 11:43:52 -070041 if (!tmp.b_blocknr && !rc) {
Carsten Otteafa597b2005-07-15 03:56:30 -070042 BUG_ON(create);
43 rc = -ENODATA;
44 }
45
46 return rc;
47}
48
Carsten Otte6d791252005-06-23 22:05:26 -070049int
Carsten Otteafa597b2005-07-15 03:56:30 -070050ext2_clear_xip_target(struct inode *inode, int block)
51{
52 sector_t sector = block * (PAGE_SIZE/512);
Jared Hulbert30afcb42008-04-28 02:13:02 -070053 void *kaddr;
54 unsigned long pfn;
Carsten Otte6d791252005-06-23 22:05:26 -070055 int rc;
56
Jared Hulbert30afcb42008-04-28 02:13:02 -070057 rc = __inode_direct_access(inode, sector, &kaddr, &pfn);
Carsten Otteafa597b2005-07-15 03:56:30 -070058 if (!rc)
Jared Hulbert30afcb42008-04-28 02:13:02 -070059 clear_page(kaddr);
Carsten Otteafa597b2005-07-15 03:56:30 -070060 return rc;
Carsten Otte6d791252005-06-23 22:05:26 -070061}
62
63void ext2_xip_verify_sb(struct super_block *sb)
64{
65 struct ext2_sb_info *sbi = EXT2_SB(sb);
66
Carsten Otteafa597b2005-07-15 03:56:30 -070067 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);
70 ext2_warning(sb, __FUNCTION__,
71 "ignoring xip option - not supported by bdev");
Carsten Otte6d791252005-06-23 22:05:26 -070072 }
73}
74
Carsten Otteafa597b2005-07-15 03:56:30 -070075struct page *
76ext2_get_xip_page(struct address_space *mapping, sector_t offset,
Carsten Otte6d791252005-06-23 22:05:26 -070077 int create)
78{
79 int rc;
Jared Hulbert30afcb42008-04-28 02:13:02 -070080 void *kaddr;
81 unsigned long pfn;
Carsten Otteafa597b2005-07-15 03:56:30 -070082 sector_t sector;
Carsten Otte6d791252005-06-23 22:05:26 -070083
Carsten Otteafa597b2005-07-15 03:56:30 -070084 /* first, retrieve the sector number */
85 rc = __ext2_get_sector(mapping->host, offset, create, &sector);
Carsten Otte6d791252005-06-23 22:05:26 -070086 if (rc)
Carsten Otteafa597b2005-07-15 03:56:30 -070087 goto error;
Carsten Otte6d791252005-06-23 22:05:26 -070088
Carsten Otteafa597b2005-07-15 03:56:30 -070089 /* retrieve address of the target data */
Carsten Otte6d791252005-06-23 22:05:26 -070090 rc = __inode_direct_access
Jared Hulbert30afcb42008-04-28 02:13:02 -070091 (mapping->host, sector * (PAGE_SIZE/512), &kaddr, &pfn);
Carsten Otteafa597b2005-07-15 03:56:30 -070092 if (!rc)
Jared Hulbert30afcb42008-04-28 02:13:02 -070093 return pfn_to_page(pfn);
Carsten Otte6d791252005-06-23 22:05:26 -070094
Carsten Otteafa597b2005-07-15 03:56:30 -070095 error:
96 return ERR_PTR(rc);
Carsten Otte6d791252005-06-23 22:05:26 -070097}