From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932245Ab1GELbV (ORCPT ); Tue, 5 Jul 2011 07:31:21 -0400 Received: from a.ns.miles-group.at ([95.130.255.143]:41775 "EHLO radon.swed.at" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932213Ab1GELbU convert rfc822-to-8bit (ORCPT ); Tue, 5 Jul 2011 07:31:20 -0400 From: Richard Weinberger To: Vitaliy Ivanov Subject: Re: [PATCH 1/4] uml: cow_user.c warning corrections Date: Tue, 5 Jul 2011 13:31:14 +0200 User-Agent: KMail/1.13.7 (Linux/2.6.37.6-0.5-desktop; KDE/4.6.4; x86_64; ; ) Cc: Jeff Dike , Linus Torvalds , "akpm@linux-foundation.org" , user-mode-linux-devel@lists.sourceforge.net, lkml References: <1309821341.4527.5.camel@vitaliy-Vostro-1400> <201107051128.25262.richard@nod.at> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="windows-1252" Content-Transfer-Encoding: 8BIT Message-Id: <201107051331.15504.richard@nod.at> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Am Dienstag 05 Juli 2011, 13:10:34 schrieb Vitaliy Ivanov: > On Tue, Jul 5, 2011 at 12:28 PM, Richard Weinberger wrote: > > Am Dienstag 05 Juli 2011, 01:15:41 schrieb Vitaliy Ivanov: > >> From 6201d3e862fca8670b206338dc90303ea0acc77d Mon Sep 17 00:00:00 2001 > >> From: Vitaliy Ivanov > >> Date: Tue, 5 Jul 2011 01:57:51 +0300 > >> Subject: [PATCH 1/4] uml: cow_user.c warning corrections > >> MIME-Version: 1.0 > >> Content-Type: text/plain; charset=UTF-8 > >> Content-Transfer-Encoding: 8bit > >> > >> arch/um/drivers/cow_user.c: In function ‘absolutize’: > >> arch/um/drivers/cow_user.c:189:7: warning: ignoring return value of > >> ‘chdir’, declared with attribute warn_unused_result > > > > What compiler flags are you using? > > Using the default settings this warning does not show up. > > Most of the "ignoring return value" are totally useless. > > chdir is defined with warn_unused_result attribute and my gcc on > Ubuntu 11.04 issues warnings. > I don't use any additional flags on compiling UML. Ah, because of -D_FORTIFY_SOURCE=2, right? Then your patches makes sense. I'll add it to my queue. Thanks, //richard