Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752150AbdFZPwq (ORCPT ); Mon, 26 Jun 2017 11:52:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:34286 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751392AbdFZPwj (ORCPT ); Mon, 26 Jun 2017 11:52:39 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 2B634C0467C5 Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=bfoster@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 2B634C0467C5 Date: Mon, 26 Jun 2017 11:52:37 -0400 From: Brian Foster To: kbuild test robot Cc: kbuild-all@01.org, "Darrick J. Wong" , linux-xfs@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] xfs: fix semicolon.cocci warnings Message-ID: <20170626155237.GA55060@bfoster.bfoster> References: <201706262342.mc5rV25t%fengguang.wu@intel.com> <20170626155744.GA78760@lkp-sb04.lkp.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170626155744.GA78760@lkp-sb04.lkp.intel.com> User-Agent: Mutt/1.8.0 (2017-02-23) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Mon, 26 Jun 2017 15:52:39 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1102 Lines: 34 On Mon, Jun 26, 2017 at 11:57:44PM +0800, kbuild test robot wrote: > fs/xfs/xfs_log.c:2092:38-39: Unneeded semicolon > > > Remove unneeded semicolon. > > Generated by: scripts/coccinelle/misc/semicolon.cocci > > Fixes: d4ca1d550d05 ("xfs: dump transaction usage details on log reservation overrun") > CC: Brian Foster > Signed-off-by: Fengguang Wu > --- Reviewed-by: Brian Foster > > xfs_log.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > --- a/fs/xfs/xfs_log.c > +++ b/fs/xfs/xfs_log.c > @@ -2089,7 +2089,7 @@ xlog_print_trans( > xfs_warn(mp, " type = 0x%x", vec->i_type); > xfs_warn(mp, " len = %d", vec->i_len); > xfs_warn(mp, " first %d bytes of iovec[%d]:", dumplen, i); > - xfs_hex_dump(vec->i_addr, dumplen);; > + xfs_hex_dump(vec->i_addr, dumplen); > > vec++; > } > -- > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html