Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329034
b: refs/heads/master
c: 834ab12
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Liu authored and Ben Myers committed Aug 24, 2012
1 parent 3819336 commit 549a801
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 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: e599b3253c5e49f7a2a579eef2fc2aa066989ef5
refs/heads/master: 834ab12228fad777a11007a24cb6286b02c9a41c
10 changes: 4 additions & 6 deletions trunk/fs/xfs/xfs_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -962,8 +962,7 @@ xfs_vm_page_mkwrite(
STATIC loff_t
xfs_seek_data(
struct file *file,
loff_t start,
u32 type)
loff_t start)
{
struct inode *inode = file->f_mapping->host;
struct xfs_inode *ip = XFS_I(inode);
Expand Down Expand Up @@ -1029,8 +1028,7 @@ xfs_seek_data(
STATIC loff_t
xfs_seek_hole(
struct file *file,
loff_t start,
u32 type)
loff_t start)
{
struct inode *inode = file->f_mapping->host;
struct xfs_inode *ip = XFS_I(inode);
Expand Down Expand Up @@ -1092,9 +1090,9 @@ xfs_file_llseek(
case SEEK_SET:
return generic_file_llseek(file, offset, origin);
case SEEK_DATA:
return xfs_seek_data(file, offset, origin);
return xfs_seek_data(file, offset);
case SEEK_HOLE:
return xfs_seek_hole(file, offset, origin);
return xfs_seek_hole(file, offset);
default:
return -EINVAL;
}
Expand Down

0 comments on commit 549a801

Please sign in to comment.