blob: 1c3312858fcf42703b7bb1c6be52f24c9b1a5b47 [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>
Al Viro08f85852007-10-08 13:26:20 -040012#include <linux/blkdev.h>
Carsten Otte6d791252005-06-23 22:05:26 -070013#include "ext2.h"
14#include "xip.h"
15
16static inline int
Nick Piggin70688e42008-04-28 02:13:02 -070017__inode_direct_access(struct inode *inode, sector_t block,
Jared Hulbert30afcb42008-04-28 02:13:02 -070018 void **kaddr, unsigned long *pfn)
Carsten Otteafa597b2005-07-15 03:56:30 -070019{
Jared Hulbert30afcb42008-04-28 02:13:02 -070020 struct block_device *bdev = inode->i_sb->s_bdev;
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -070021 const struct block_device_operations *ops = bdev->bd_disk->fops;
Nick Piggin70688e42008-04-28 02:13:02 -070022 sector_t sector;
23
24 sector = block * (PAGE_SIZE / 512); /* ext2 block to bdev sector */
Jared Hulbert30afcb42008-04-28 02:13:02 -070025
26 BUG_ON(!ops->direct_access);
27 return ops->direct_access(bdev, sector, kaddr, pfn);
Carsten Otte6d791252005-06-23 22:05:26 -070028}
29
Carsten Otteafa597b2005-07-15 03:56:30 -070030static inline int
Nick Piggin70688e42008-04-28 02:13:02 -070031__ext2_get_block(struct inode *inode, pgoff_t pgoff, int create,
Carsten Otteafa597b2005-07-15 03:56:30 -070032 sector_t *result)
33{
34 struct buffer_head tmp;
35 int rc;
36
37 memset(&tmp, 0, sizeof(struct buffer_head));
Nick Piggin70688e42008-04-28 02:13:02 -070038 rc = ext2_get_block(inode, pgoff, &tmp, create);
Carsten Otteafa597b2005-07-15 03:56:30 -070039 *result = tmp.b_blocknr;
40
41 /* did we get a sparse block (hole in the file)? */
Carsten Otte0cfc11e2005-07-27 11:43:52 -070042 if (!tmp.b_blocknr && !rc) {
Carsten Otteafa597b2005-07-15 03:56:30 -070043 BUG_ON(create);
44 rc = -ENODATA;
45 }
46
47 return rc;
48}
49
Carsten Otte6d791252005-06-23 22:05:26 -070050int
Nick Piggin70688e42008-04-28 02:13:02 -070051ext2_clear_xip_target(struct inode *inode, sector_t block)
Carsten Otteafa597b2005-07-15 03:56:30 -070052{
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
Nick Piggin70688e42008-04-28 02:13:02 -070057 rc = __inode_direct_access(inode, block, &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);
Alexey Fisher2314b072009-11-19 19:12:51 +010070 ext2_msg(sb, KERN_WARNING,
71 "warning: ignoring xip option - "
72 "not supported by bdev");
Carsten Otte6d791252005-06-23 22:05:26 -070073 }
74}
75
Nick Piggin70688e42008-04-28 02:13:02 -070076int ext2_get_xip_mem(struct address_space *mapping, pgoff_t pgoff, int create,
77 void **kmem, unsigned long *pfn)
Carsten Otte6d791252005-06-23 22:05:26 -070078{
79 int rc;
Nick Piggin70688e42008-04-28 02:13:02 -070080 sector_t block;
Carsten Otte6d791252005-06-23 22:05:26 -070081
Carsten Otteafa597b2005-07-15 03:56:30 -070082 /* first, retrieve the sector number */
Nick Piggin70688e42008-04-28 02:13:02 -070083 rc = __ext2_get_block(mapping->host, pgoff, create, &block);
Carsten Otte6d791252005-06-23 22:05:26 -070084 if (rc)
Nick Piggin70688e42008-04-28 02:13:02 -070085 return rc;
Carsten Otte6d791252005-06-23 22:05:26 -070086
Carsten Otteafa597b2005-07-15 03:56:30 -070087 /* retrieve address of the target data */
Nick Piggin70688e42008-04-28 02:13:02 -070088 rc = __inode_direct_access(mapping->host, block, kmem, pfn);
89 return rc;
Carsten Otte6d791252005-06-23 22:05:26 -070090}