From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Bottomley Subject: Re: [PATCH] strstrip incorrectly marked __must_check Date: Tue, 03 Nov 2009 13:11:42 -0600 Message-ID: <1257275502.2454.2.camel@mulgrave.site> References: <1257273488.9427.27.camel@mulgrave.site> <20091103105921.160d5599.akpm@linux-foundation.org> <20091103190420.GY10555@parisc-linux.org> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from cantor.suse.de ([195.135.220.2]:33367 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754847AbZKCTLo (ORCPT ); Tue, 3 Nov 2009 14:11:44 -0500 In-Reply-To: <20091103190420.GY10555@parisc-linux.org> Sender: linux-scsi-owner@vger.kernel.org List-Id: linux-scsi@vger.kernel.org To: Matthew Wilcox Cc: Andrew Morton , KOSAKI Motohiro , linux-scsi@vger.kernel.org, linux-kernel On Tue, 2009-11-03 at 12:04 -0700, Matthew Wilcox wrote: > static inline void strsrip_tail(char *str) > { > - char *x __used; > - x = strstrip(str); > + char *x = strstrip(str); > + BUG_ON(x != str); > } Please, no. I said didn't care about leading whitespace ... I didn't say there wasn't any. James