lkml.org 
[lkml]   [2015]   [Nov]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] vfs: use list_{first,next}_entry
Date
To make the intention clearer, use list_{first,next}_entry instead of
list_entry.

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
fs/pnode.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fs/pnode.c b/fs/pnode.c
index 6367e1e..4b394dc 100644
--- a/fs/pnode.c
+++ b/fs/pnode.c
@@ -16,17 +16,17 @@
/* return the next shared peer mount of @p */
static inline struct mount *next_peer(struct mount *p)
{
- return list_entry(p->mnt_share.next, struct mount, mnt_share);
+ return list_next_entry(p, mnt_share);
}

static inline struct mount *first_slave(struct mount *p)
{
- return list_entry(p->mnt_slave_list.next, struct mount, mnt_slave);
+ return list_first_entry(&p->mnt_slave_list, struct mount, mnt_slave);
}

static inline struct mount *next_slave(struct mount *p)
{
- return list_entry(p->mnt_slave.next, struct mount, mnt_slave);
+ return list_next_entry(p, mnt_slave);
}

static struct mount *get_peer_under_root(struct mount *mnt,
--
2.5.0



\
 
 \ /
  Last update: 2015-11-18 15:21    [W:0.068 / U:1.240 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site