Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 94025
b: refs/heads/master
c: 30afcb4
h: refs/heads/master
i:
  94023: 444c9f2
v: v3
  • Loading branch information
Jared Hulbert authored and Linus Torvalds committed Apr 28, 2008
1 parent e2570d0 commit 439c246
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 423bad600443c590f34ed7ce357591f76f48f137
refs/heads/master: 30afcb4bd2762fa4b87b17ada9500aa46dc10b1b
5 changes: 3 additions & 2 deletions trunk/arch/powerpc/sysdev/axonram.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ axon_ram_make_request(struct request_queue *queue, struct bio *bio)
*/
static int
axon_ram_direct_access(struct block_device *device, sector_t sector,
unsigned long *data)
void **kaddr, unsigned long *pfn)
{
struct axon_ram_bank *bank = device->bd_disk->private_data;
loff_t offset;
Expand All @@ -154,7 +154,8 @@ axon_ram_direct_access(struct block_device *device, sector_t sector,
return -ERANGE;
}

*data = bank->ph_addr + offset;
*kaddr = (void *)(bank->ph_addr + offset);
*pfn = virt_to_phys(kaddr) >> PAGE_SHIFT;

return 0;
}
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/block/brd.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ static int brd_make_request(struct request_queue *q, struct bio *bio)

#ifdef CONFIG_BLK_DEV_XIP
static int brd_direct_access (struct block_device *bdev, sector_t sector,
unsigned long *data)
void **kaddr, unsigned long *pfn)
{
struct brd_device *brd = bdev->bd_disk->private_data;
struct page *page;
Expand All @@ -333,7 +333,8 @@ static int brd_direct_access (struct block_device *bdev, sector_t sector,
page = brd_insert_page(brd, sector);
if (!page)
return -ENOMEM;
*data = (unsigned long)page_address(page);
*kaddr = page_address(page);
*pfn = page_to_pfn(page);

return 0;
}
Expand Down
8 changes: 5 additions & 3 deletions trunk/drivers/s390/block/dcssblk.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static int dcssblk_open(struct inode *inode, struct file *filp);
static int dcssblk_release(struct inode *inode, struct file *filp);
static int dcssblk_make_request(struct request_queue *q, struct bio *bio);
static int dcssblk_direct_access(struct block_device *bdev, sector_t secnum,
unsigned long *data);
void **kaddr, unsigned long *pfn);

static char dcssblk_segments[DCSSBLK_PARM_LEN] = "\0";

Expand Down Expand Up @@ -636,7 +636,7 @@ dcssblk_make_request(struct request_queue *q, struct bio *bio)

static int
dcssblk_direct_access (struct block_device *bdev, sector_t secnum,
unsigned long *data)
void **kaddr, unsigned long *pfn)
{
struct dcssblk_dev_info *dev_info;
unsigned long pgoff;
Expand All @@ -649,7 +649,9 @@ dcssblk_direct_access (struct block_device *bdev, sector_t secnum,
pgoff = secnum / (PAGE_SIZE / 512);
if ((pgoff+1)*PAGE_SIZE-1 > dev_info->end - dev_info->start)
return -ERANGE;
*data = (unsigned long) (dev_info->start+pgoff*PAGE_SIZE);
*kaddr = (void *) (dev_info->start+pgoff*PAGE_SIZE);
*pfn = virt_to_phys(*kaddr) >> PAGE_SHIFT;

return 0;
}

Expand Down
24 changes: 14 additions & 10 deletions trunk/fs/ext2/xip.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@

static inline int
__inode_direct_access(struct inode *inode, sector_t sector,
unsigned long *data)
void **kaddr, unsigned long *pfn)
{
BUG_ON(!inode->i_sb->s_bdev->bd_disk->fops->direct_access);
return inode->i_sb->s_bdev->bd_disk->fops
->direct_access(inode->i_sb->s_bdev,sector,data);
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
Expand Down Expand Up @@ -48,12 +50,13 @@ int
ext2_clear_xip_target(struct inode *inode, int block)
{
sector_t sector = block * (PAGE_SIZE/512);
unsigned long data;
void *kaddr;
unsigned long pfn;
int rc;

rc = __inode_direct_access(inode, sector, &data);
rc = __inode_direct_access(inode, sector, &kaddr, &pfn);
if (!rc)
clear_page((void*)data);
clear_page(kaddr);
return rc;
}

Expand All @@ -74,7 +77,8 @@ ext2_get_xip_page(struct address_space *mapping, sector_t offset,
int create)
{
int rc;
unsigned long data;
void *kaddr;
unsigned long pfn;
sector_t sector;

/* first, retrieve the sector number */
Expand All @@ -84,9 +88,9 @@ ext2_get_xip_page(struct address_space *mapping, sector_t offset,

/* retrieve address of the target data */
rc = __inode_direct_access
(mapping->host, sector * (PAGE_SIZE/512), &data);
(mapping->host, sector * (PAGE_SIZE/512), &kaddr, &pfn);
if (!rc)
return virt_to_page(data);
return pfn_to_page(pfn);

error:
return ERR_PTR(rc);
Expand Down
3 changes: 2 additions & 1 deletion trunk/include/linux/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,8 @@ struct block_device_operations {
int (*ioctl) (struct inode *, struct file *, unsigned, unsigned long);
long (*unlocked_ioctl) (struct file *, unsigned, unsigned long);
long (*compat_ioctl) (struct file *, unsigned, unsigned long);
int (*direct_access) (struct block_device *, sector_t, unsigned long *);
int (*direct_access) (struct block_device *, sector_t,
void **, unsigned long *);
int (*media_changed) (struct gendisk *);
int (*revalidate_disk) (struct gendisk *);
int (*getgeo)(struct block_device *, struct hd_geometry *);
Expand Down

0 comments on commit 439c246

Please sign in to comment.