diff options
author | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2011-05-04 23:56:51 -0400 |
---|---|---|
committer | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2011-05-10 09:21:56 -0400 |
commit | 0cc1283881d3fcc9011c713e067795ccec322ae7 (patch) | |
tree | 3d4c314f98b3fdcf2a7d2309e4dc468aa0d98ec4 /fs/nilfs2/segment.c | |
parent | 293ce0ed8c2d22ff044e6e9fa7b1d4be425d189b (diff) |
nilfs2: use list_first_entry
This uses list_first_entry macro instead of list_entry if it's used to
get the first entry.
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Diffstat (limited to 'fs/nilfs2/segment.c')
-rw-r--r-- | fs/nilfs2/segment.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nilfs2/segment.c b/fs/nilfs2/segment.c index 8a2b428b1838..186cabbe54d7 100644 --- a/fs/nilfs2/segment.c +++ b/fs/nilfs2/segment.c | |||
@@ -957,8 +957,8 @@ static int nilfs_segctor_apply_buffers(struct nilfs_sc_info *sci, | |||
957 | 957 | ||
958 | dispose_buffers: | 958 | dispose_buffers: |
959 | while (!list_empty(listp)) { | 959 | while (!list_empty(listp)) { |
960 | bh = list_entry(listp->next, struct buffer_head, | 960 | bh = list_first_entry(listp, struct buffer_head, |
961 | b_assoc_buffers); | 961 | b_assoc_buffers); |
962 | list_del_init(&bh->b_assoc_buffers); | 962 | list_del_init(&bh->b_assoc_buffers); |
963 | brelse(bh); | 963 | brelse(bh); |
964 | } | 964 | } |