From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f178.google.com (mail-pf0-f178.google.com [209.85.192.178]) by kanga.kvack.org (Postfix) with ESMTP id EBB7C6B025E for ; Mon, 21 Mar 2016 22:23:05 -0400 (EDT) Received: by mail-pf0-f178.google.com with SMTP id 4so157390840pfd.0 for ; Mon, 21 Mar 2016 19:23:05 -0700 (PDT) Received: from lgeamrelo12.lge.com (LGEAMRELO12.lge.com. [156.147.23.52]) by mx.google.com with ESMTP id n79si649532pfj.101.2016.03.21.19.23.04 for ; Mon, 21 Mar 2016 19:23:05 -0700 (PDT) Date: Tue, 22 Mar 2016 11:22:03 +0900 From: Minchan Kim Subject: Re: [PATCH] zsmalloc: fix semicolon.cocci warnings Message-ID: <20160322022203.GB30070@bbox> References: <201603211705.9hgJl8K7%fengguang.wu@intel.com> <20160321094825.GA50080@roam.intel.com> MIME-Version: 1.0 In-Reply-To: <20160321094825.GA50080@roam.intel.com> Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Sender: owner-linux-mm@kvack.org List-ID: To: kbuild test robot Cc: kbuild-all@01.org, Andrew Morton , linux-kernel@vger.kernel.org, linux-mm@kvack.org, jlayton@poochiereds.net, bfields@fieldses.org, Vlastimil Babka , Joonsoo Kim , koct9i@gmail.com, aquini@redhat.com, virtualization@lists.linux-foundation.org, Mel Gorman , Hugh Dickins , Sergey Senozhatsky , Rik van Riel , rknize@motorola.com, Gioh Kim , Sangseok Lee , Chan Gyun Jeong , Al Viro , YiPing Xu On Mon, Mar 21, 2016 at 05:48:25PM +0800, kbuild test robot wrote: > mm/zsmalloc.c:1103:2-3: Unneeded semicolon > > > Remove unneeded semicolon. > > Generated by: scripts/coccinelle/misc/semicolon.cocci > > CC: Minchan Kim > Signed-off-by: Fengguang Wu > --- > > zsmalloc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/mm/zsmalloc.c > +++ b/mm/zsmalloc.c > @@ -1100,7 +1100,7 @@ void unlock_zspage(struct page *first_pa > VM_BUG_ON_PAGE(!PageLocked(cursor), cursor); > if (cursor != locked_page) > unlock_page(cursor); > - }; > + } > } > > static void free_zspage(struct zs_pool *pool, struct page *first_page) Thanks. Fixed.