Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934990AbbEOVoU (ORCPT ); Fri, 15 May 2015 17:44:20 -0400 Received: from mailrelay101.isp.belgacom.be ([195.238.20.128]:54559 "EHLO mailrelay101.isp.belgacom.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934149AbbEOVoR (ORCPT ); Fri, 15 May 2015 17:44:17 -0400 X-Belgacom-Dynamic: yes X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.1 cv=aVuRYB9jFzFsbHnyIO6WTXMsFsysg296qeRS+2aVNsk= c=1 sm=2 a=y6yYtsWXSWPsydeY20gA:9 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2DKDwCNZ1ZV/yMoQ1dcgxCBMrJiAQEBAQUBgQSYTQKBMU0BAQEBAQGBC0EDg18BAQQnLyMQUTkeGYgwAddMAQEIIoYWiikHFoQXBZ1UjH+KACNhgSkcgVQ8MYJGAQEB From: Fabian Frederick To: linux-kernel@vger.kernel.org Cc: Fabian Frederick , Artem Bityutskiy , Adrian Hunter , linux-mtd@lists.infradead.org Subject: [PATCH 2/6 linux-next] ubifs: simplify return in shrink_liability() Date: Fri, 15 May 2015 23:43:56 +0200 Message-Id: <1431726240-4675-2-git-send-email-fabf@skynet.be> X-Mailer: git-send-email 2.4.0 In-Reply-To: <1431726240-4675-1-git-send-email-fabf@skynet.be> References: <1431726240-4675-1-git-send-email-fabf@skynet.be> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1124 Lines: 41 Directly return ubifs_return_leb() instead of storing value in err and testing it. Signed-off-by: Fabian Frederick --- fs/ubifs/budget.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/fs/ubifs/budget.c b/fs/ubifs/budget.c index 11a11b3..c07b770 100644 --- a/fs/ubifs/budget.c +++ b/fs/ubifs/budget.c @@ -77,7 +77,7 @@ static void shrink_liability(struct ubifs_info *c, int nr_to_write) */ static int run_gc(struct ubifs_info *c) { - int err, lnum; + int lnum; /* Make some free space by garbage-collecting dirty space */ down_read(&c->commit_sem); @@ -88,10 +88,7 @@ static int run_gc(struct ubifs_info *c) /* GC freed one LEB, return it to lprops */ dbg_budg("GC freed LEB %d", lnum); - err = ubifs_return_leb(c, lnum); - if (err) - return err; - return 0; + return ubifs_return_leb(c, lnum); } /** -- 2.4.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/