Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 144820
b: refs/heads/master
c: f9dbd05
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro committed May 9, 2009
1 parent 94486fb commit d184d8b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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: 6e8341a11eb21826b7192d0bb88cb5b44900a9af
refs/heads/master: f9dbd05bc97d1d4f17c2057612f6a8e4dbd039e0
2 changes: 1 addition & 1 deletion trunk/fs/ufs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,6 @@ int ufs_empty_dir(struct inode * inode)
const struct file_operations ufs_dir_operations = {
.read = generic_read_dir,
.readdir = ufs_readdir,
.fsync = file_fsync,
.fsync = ufs_sync_file,
.llseek = generic_file_llseek,
};
2 changes: 1 addition & 1 deletion trunk/fs/ufs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "ufs.h"


static int ufs_sync_file(struct file *file, struct dentry *dentry, int datasync)
int ufs_sync_file(struct file *file, struct dentry *dentry, int datasync)
{
struct inode *inode = dentry->d_inode;
int err;
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/ufs/ufs.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ extern void ufs_set_link(struct inode *dir, struct ufs_dir_entry *de,
/* file.c */
extern const struct inode_operations ufs_file_inode_operations;
extern const struct file_operations ufs_file_operations;

extern const struct address_space_operations ufs_aops;
extern int ufs_sync_file(struct file *, struct dentry *, int);

/* ialloc.c */
extern void ufs_free_inode (struct inode *inode);
Expand Down

0 comments on commit d184d8b

Please sign in to comment.