Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45116
b: refs/heads/master
c: 131612d
h: refs/heads/master
v: v3
  • Loading branch information
Dimitri Gorokhovik authored and Linus Torvalds committed Dec 30, 2006
1 parent e26dfe2 commit 514e399
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 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: a3f99f8ba8cbd2d4e231b767b3d6236a555da38c
refs/heads/master: 131612dfe7923bd0ce5f82d6ed8303a7ef96e574
4 changes: 3 additions & 1 deletion trunk/fs/ramfs/file-mmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@
*/

#include <linux/fs.h>
#include <linux/mm.h>

const struct address_space_operations ramfs_aops = {
.readpage = simple_readpage,
.prepare_write = simple_prepare_write,
.commit_write = simple_commit_write
.commit_write = simple_commit_write,
.set_page_dirty = __set_page_dirty_nobuffers,
};

const struct file_operations ramfs_file_operations = {
Expand Down
4 changes: 3 additions & 1 deletion trunk/fs/ramfs/file-nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include <linux/module.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/pagemap.h>
#include <linux/highmem.h>
#include <linux/init.h>
Expand All @@ -30,7 +31,8 @@ static int ramfs_nommu_setattr(struct dentry *, struct iattr *);
const struct address_space_operations ramfs_aops = {
.readpage = simple_readpage,
.prepare_write = simple_prepare_write,
.commit_write = simple_commit_write
.commit_write = simple_commit_write,
.set_page_dirty = __set_page_dirty_nobuffers,
};

const struct file_operations ramfs_file_operations = {
Expand Down

0 comments on commit 514e399

Please sign in to comment.