mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-22 01:43:37 -04:00
This is practically generic code; other filesystems will want to call it from other places, but there's nothing ext2-specific about it. Make it a little more generic by allowing it to take a count of the number of bytes to zero rather than fixing it to a single page. Thanks to Dave Hansen for suggesting that I need to call cond_resched() if zeroing more than one page. Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com> Cc: Andreas Dilger <andreas.dilger@intel.com> Cc: Boaz Harrosh <boaz@plexistor.com> Cc: Christoph Hellwig <hch@lst.de> Cc: Dave Chinner <david@fromorbit.com> Cc: Jan Kara <jack@suse.cz> Cc: Jens Axboe <axboe@kernel.dk> Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Ross Zwisler <ross.zwisler@linux.intel.com> Cc: Theodore Ts'o <tytso@mit.edu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
72 lines
1.7 KiB
C
72 lines
1.7 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/blkdev.h>
|
|
#include "ext2.h"
|
|
#include "xip.h"
|
|
|
|
static inline long __inode_direct_access(struct inode *inode, sector_t block,
|
|
void **kaddr, unsigned long *pfn, long size)
|
|
{
|
|
struct block_device *bdev = inode->i_sb->s_bdev;
|
|
sector_t sector = block * (PAGE_SIZE / 512);
|
|
return bdev_direct_access(bdev, sector, kaddr, pfn, size);
|
|
}
|
|
|
|
static inline int
|
|
__ext2_get_block(struct inode *inode, pgoff_t pgoff, int create,
|
|
sector_t *result)
|
|
{
|
|
struct buffer_head tmp;
|
|
int rc;
|
|
|
|
memset(&tmp, 0, sizeof(struct buffer_head));
|
|
tmp.b_size = 1 << inode->i_blkbits;
|
|
rc = ext2_get_block(inode, pgoff, &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;
|
|
}
|
|
|
|
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_msg(sb, KERN_WARNING,
|
|
"warning: ignoring xip option - "
|
|
"not supported by bdev");
|
|
}
|
|
}
|
|
|
|
int ext2_get_xip_mem(struct address_space *mapping, pgoff_t pgoff, int create,
|
|
void **kmem, unsigned long *pfn)
|
|
{
|
|
long rc;
|
|
sector_t block;
|
|
|
|
/* first, retrieve the sector number */
|
|
rc = __ext2_get_block(mapping->host, pgoff, create, &block);
|
|
if (rc)
|
|
return rc;
|
|
|
|
/* retrieve address of the target data */
|
|
rc = __inode_direct_access(mapping->host, block, kmem, pfn, PAGE_SIZE);
|
|
return (rc < 0) ? rc : 0;
|
|
}
|