[<prev] [next>] [day] [month] [year] [list]
Message-ID: <5285A434.2080608@oracle.com>
Date: Fri, 15 Nov 2013 12:33:56 +0800
From: Jeff Liu <jeff.liu@...cle.com>
To: linux-kernel@...r.kernel.org
CC: akpm@...ux-foundation.org, "xfs@....sgi.com" <xfs@....sgi.com>,
cluster-devel@...hat.com, linux-mtd@...ts.infradead.org,
jfs-discussion@...ts.sourceforge.net, oleg@...hat.com,
jiri@...nulli.us, gregkh@...uxfoundation.org
Subject: [PATCH 4/6] ubifs: simplify drop_last_node() via list_last_entry_or_null()
From: Jie Liu <jeff.liu@...cle.com>
Simplify the code in drop_last_node() via list_last_entry_or_null().
Signed-off-by: Jie Liu <jeff.liu@...cle.com>
---
fs/ubifs/recovery.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/fs/ubifs/recovery.c b/fs/ubifs/recovery.c
index 065096e..e46c394 100644
--- a/fs/ubifs/recovery.c
+++ b/fs/ubifs/recovery.c
@@ -603,12 +603,10 @@ static void drop_last_group(struct ubifs_scan_leb *sleb, int *offs)
*/
static void drop_last_node(struct ubifs_scan_leb *sleb, int *offs)
{
- struct ubifs_scan_node *snod;
-
- if (!list_empty(&sleb->nodes)) {
- snod = list_entry(sleb->nodes.prev, struct ubifs_scan_node,
- list);
+ struct ubifs_scan_node *snod = list_last_entry_or_null(&sleb->nodes,
+ struct ubifs_scan_node, list);
+ if (snod) {
dbg_rcvry("dropping last node at %d:%d",
sleb->lnum, snod->offs);
*offs = snod->offs;
--
1.8.3.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists