Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753367AbYHCAHQ (ORCPT ); Sat, 2 Aug 2008 20:07:16 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751785AbYHCAHB (ORCPT ); Sat, 2 Aug 2008 20:07:01 -0400 Received: from kirsty.vergenet.net ([202.4.237.240]:52458 "EHLO kirsty.vergenet.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751755AbYHCAHA (ORCPT ); Sat, 2 Aug 2008 20:07:00 -0400 Date: Sun, 3 Aug 2008 10:06:58 +1000 From: Simon Horman To: linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Tony Luck , Keith Owens Subject: [patch] IA64: suppress return value of down_trylock() in salinfo_work_to_do() Message-ID: <20080803000654.GA30659@verge.net.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1539 Lines: 38 salinfo_work_to_do() intentionally ignores the return value of down_trylock() and calls up() regardless of if the lock was taken or not. This patch suppresses the warning generated by ignoring this return value - down_trylock() is annotated with __must_check. (void)down_trylock() was not sufficient. arch/ia64/kernel/salinfo.c: In function `salinfo_work_to_do': arch/ia64/kernel/salinfo.c:195: warning: ignoring return value of `down_trylock' # ia64-unknown-linux-gnu-gcc --version ia64-unknown-linux-gnu-gcc (GCC) 3.4.5 Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Signed-off-by: Simon Horman Index: linux-2.6/arch/ia64/kernel/salinfo.c =================================================================== --- linux-2.6.orig/arch/ia64/kernel/salinfo.c 2008-08-03 09:52:08.000000000 +1000 +++ linux-2.6/arch/ia64/kernel/salinfo.c 2008-08-03 10:03:36.000000000 +1000 @@ -192,7 +192,7 @@ struct salinfo_platform_oemdata_parms { static void salinfo_work_to_do(struct salinfo_data *data) { - down_trylock(&data->mutex); + if (down_trylock(&data->mutex)) { ; }; /* Ignore return value */ up(&data->mutex); } -- 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/