mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
30afcb4bd2
Alter the block device ->direct_access() API to work with the new get_xip_mem() API (that requires both kaddr and pfn are returned). Some architectures will not do the right thing in their virt_to_page() for use by XIP (to translate from the kernel virtual address returned by direct_access(), to a user mappable pfn in XIP's page fault handler. However, we can't switch it to just return the pfn and not the kaddr, because we have no good way to get a kva from a pfn, and XIP requires the kva for its read(2) and write(2) handlers. So we have to return both. Signed-off-by: Jared Hulbert <jaredeh@gmail.com> Signed-off-by: Nick Piggin <npiggin@suse.de> Cc: Carsten Otte <cotte@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: linux-mm@kvack.org Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
98 lines
2.1 KiB
C
98 lines
2.1 KiB
C
/*
|
|
* linux/fs/ext2/xip.c
|
|
*
|
|
* Copyright (C) 2005 IBM Corporation
|
|
* Author: Carsten Otte (cotte@de.ibm.com)
|
|
*/
|
|
|
|
#include <linux/mm.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/genhd.h>
|
|
#include <linux/buffer_head.h>
|
|
#include <linux/ext2_fs_sb.h>
|
|
#include <linux/ext2_fs.h>
|
|
#include "ext2.h"
|
|
#include "xip.h"
|
|
|
|
static inline int
|
|
__inode_direct_access(struct inode *inode, sector_t sector,
|
|
void **kaddr, unsigned long *pfn)
|
|
{
|
|
struct block_device *bdev = inode->i_sb->s_bdev;
|
|
struct block_device_operations *ops = bdev->bd_disk->fops;
|
|
|
|
BUG_ON(!ops->direct_access);
|
|
return ops->direct_access(bdev, sector, kaddr, pfn);
|
|
}
|
|
|
|
static inline int
|
|
__ext2_get_sector(struct inode *inode, sector_t offset, int create,
|
|
sector_t *result)
|
|
{
|
|
struct buffer_head tmp;
|
|
int rc;
|
|
|
|
memset(&tmp, 0, sizeof(struct buffer_head));
|
|
rc = ext2_get_block(inode, offset/ (PAGE_SIZE/512), &tmp,
|
|
create);
|
|
*result = tmp.b_blocknr;
|
|
|
|
/* did we get a sparse block (hole in the file)? */
|
|
if (!tmp.b_blocknr && !rc) {
|
|
BUG_ON(create);
|
|
rc = -ENODATA;
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
int
|
|
ext2_clear_xip_target(struct inode *inode, int block)
|
|
{
|
|
sector_t sector = block * (PAGE_SIZE/512);
|
|
void *kaddr;
|
|
unsigned long pfn;
|
|
int rc;
|
|
|
|
rc = __inode_direct_access(inode, sector, &kaddr, &pfn);
|
|
if (!rc)
|
|
clear_page(kaddr);
|
|
return rc;
|
|
}
|
|
|
|
void ext2_xip_verify_sb(struct super_block *sb)
|
|
{
|
|
struct ext2_sb_info *sbi = EXT2_SB(sb);
|
|
|
|
if ((sbi->s_mount_opt & EXT2_MOUNT_XIP) &&
|
|
!sb->s_bdev->bd_disk->fops->direct_access) {
|
|
sbi->s_mount_opt &= (~EXT2_MOUNT_XIP);
|
|
ext2_warning(sb, __FUNCTION__,
|
|
"ignoring xip option - not supported by bdev");
|
|
}
|
|
}
|
|
|
|
struct page *
|
|
ext2_get_xip_page(struct address_space *mapping, sector_t offset,
|
|
int create)
|
|
{
|
|
int rc;
|
|
void *kaddr;
|
|
unsigned long pfn;
|
|
sector_t sector;
|
|
|
|
/* first, retrieve the sector number */
|
|
rc = __ext2_get_sector(mapping->host, offset, create, §or);
|
|
if (rc)
|
|
goto error;
|
|
|
|
/* retrieve address of the target data */
|
|
rc = __inode_direct_access
|
|
(mapping->host, sector * (PAGE_SIZE/512), &kaddr, &pfn);
|
|
if (!rc)
|
|
return pfn_to_page(pfn);
|
|
|
|
error:
|
|
return ERR_PTR(rc);
|
|
}
|