Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 149575
b: refs/heads/master
c: fa03274
h: refs/heads/master
i:
  149573: a4d1ed2
  149571: f08f0bf
  149567: 6309868
v: v3
  • Loading branch information
Ryusuke Konishi committed Jun 10, 2009
1 parent 511333b commit 00780aa
Show file tree
Hide file tree
Showing 4 changed files with 8 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: a53b4751ae92adb372017222887f3ec625cba60b
refs/heads/master: fa032744ad41de1b0a1807e7c379c6196e72ad80
4 changes: 3 additions & 1 deletion trunk/fs/nilfs2/btnode.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ void nilfs_btnode_cache_init_once(struct address_space *btnc)
INIT_LIST_HEAD(&btnc->i_mmap_nonlinear);
}

static struct address_space_operations def_btnode_aops;
static struct address_space_operations def_btnode_aops = {
.sync_page = block_sync_page,
};

void nilfs_btnode_cache_init(struct address_space *btnc,
struct backing_dev_info *bdi)
Expand Down
5 changes: 3 additions & 2 deletions trunk/fs/nilfs2/gcinode.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@
#include "dat.h"
#include "ifile.h"

static struct address_space_operations def_gcinode_aops = {};
/* XXX need def_gcinode_iops/fops? */
static struct address_space_operations def_gcinode_aops = {
.sync_page = block_sync_page,
};

/*
* nilfs_gccache_submit_read_data() - add data buffer and submit read request
Expand Down
1 change: 1 addition & 0 deletions trunk/fs/nilfs2/mdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@ nilfs_mdt_write_page(struct page *page, struct writeback_control *wbc)

static struct address_space_operations def_mdt_aops = {
.writepage = nilfs_mdt_write_page,
.sync_page = block_sync_page,
};

static struct inode_operations def_mdt_iops;
Expand Down

0 comments on commit 00780aa

Please sign in to comment.