blob: ca7f00312388efabd9a16b38c52df28e4917aee0 [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,
19 unsigned long *data)
20{
Carsten Otte6d791252005-06-23 22:05:26 -070021 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);
24}
25
Carsten Otteafa597b2005-07-15 03:56:30 -070026static inline int
27__ext2_get_sector(struct inode *inode, sector_t offset, int create,
28 sector_t *result)
29{
30 struct buffer_head tmp;
31 int rc;
32
33 memset(&tmp, 0, sizeof(struct buffer_head));
34 rc = ext2_get_block(inode, offset/ (PAGE_SIZE/512), &tmp,
35 create);
36 *result = tmp.b_blocknr;
37
38 /* did we get a sparse block (hole in the file)? */
Carsten Otte0cfc11e2005-07-27 11:43:52 -070039 if (!tmp.b_blocknr && !rc) {
Carsten Otteafa597b2005-07-15 03:56:30 -070040 BUG_ON(create);
41 rc = -ENODATA;
42 }
43
44 return rc;
45}
46
Carsten Otte6d791252005-06-23 22:05:26 -070047int
Carsten Otteafa597b2005-07-15 03:56:30 -070048ext2_clear_xip_target(struct inode *inode, int block)
49{
50 sector_t sector = block * (PAGE_SIZE/512);
Carsten Otte6d791252005-06-23 22:05:26 -070051 unsigned long data;
52 int rc;
53
54 rc = __inode_direct_access(inode, sector, &data);
Carsten Otteafa597b2005-07-15 03:56:30 -070055 if (!rc)
56 clear_page((void*)data);
57 return rc;
Carsten Otte6d791252005-06-23 22:05:26 -070058}
59
60void ext2_xip_verify_sb(struct super_block *sb)
61{
62 struct ext2_sb_info *sbi = EXT2_SB(sb);
63
Carsten Otteafa597b2005-07-15 03:56:30 -070064 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");
Carsten Otte6d791252005-06-23 22:05:26 -070069 }
70}
71
Carsten Otteafa597b2005-07-15 03:56:30 -070072struct page *
73ext2_get_xip_page(struct address_space *mapping, sector_t offset,
Carsten Otte6d791252005-06-23 22:05:26 -070074 int create)
75{
76 int rc;
77 unsigned long data;
Carsten Otteafa597b2005-07-15 03:56:30 -070078 sector_t sector;
Carsten Otte6d791252005-06-23 22:05:26 -070079
Carsten Otteafa597b2005-07-15 03:56:30 -070080 /* first, retrieve the sector number */
81 rc = __ext2_get_sector(mapping->host, offset, create, &sector);
Carsten Otte6d791252005-06-23 22:05:26 -070082 if (rc)
Carsten Otteafa597b2005-07-15 03:56:30 -070083 goto error;
Carsten Otte6d791252005-06-23 22:05:26 -070084
Carsten Otteafa597b2005-07-15 03:56:30 -070085 /* retrieve address of the target data */
Carsten Otte6d791252005-06-23 22:05:26 -070086 rc = __inode_direct_access
Carsten Otteafa597b2005-07-15 03:56:30 -070087 (mapping->host, sector * (PAGE_SIZE/512), &data);
88 if (!rc)
89 return virt_to_page(data);
Carsten Otte6d791252005-06-23 22:05:26 -070090
Carsten Otteafa597b2005-07-15 03:56:30 -070091 error:
92 return ERR_PTR(rc);
Carsten Otte6d791252005-06-23 22:05:26 -070093}