Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754655AbYJPGCc (ORCPT ); Thu, 16 Oct 2008 02:02:32 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751606AbYJPGCX (ORCPT ); Thu, 16 Oct 2008 02:02:23 -0400 Received: from nebensachen.de ([195.34.83.29]:47764 "EHLO mail.nebensachen.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750992AbYJPGCW (ORCPT ); Thu, 16 Oct 2008 02:02:22 -0400 X-Hashcash: 1:20:081016:tj@kernel.org::HQN2SjHAvrQc0pMq:00006n4k X-Hashcash: 1:20:081016:achiang@hp.com::yoXErA15qGJkNI02:000096z X-Hashcash: 1:20:081016:jeff@redhat.com::TvL5+S4VmJ9nftSa:005NLw X-Hashcash: 1:20:081016:linux-ide@vger.kernel.org::985ygSyMltmCKfRF:000000000000000000000000000000000000MzCW X-Hashcash: 1:20:081016:linux-kernel@vger.kernel.org::Zmmfl3qaj2btrpZI:0000000000000000000000000000000000bGp From: Elias Oltmanns To: Tejun Heo Cc: Alex Chiang , jeff@redhat.com, linux-ide@vger.kernel.org, linux-kernel Subject: Re: [PATCH] stop gcc warning about uninitialized 'dev' in ata_scsi_scan_host References: <20081015232505.GB9272@ldl.fc.hp.com> <48F6A2E7.5090005@kernel.org> <20081016034042.GA27621@ldl.fc.hp.com> <48F6BAFE.6080106@kernel.org> Date: Thu, 16 Oct 2008 08:02:08 +0200 In-Reply-To: <48F6BAFE.6080106@kernel.org> (Tejun Heo's message of "Thu, 16 Oct 2008 12:54:38 +0900") Message-ID: <87r66hjcwv.fsf@denkblock.local> User-Agent: Gnus/5.110007 (No Gnus v0.7) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2334 Lines: 59 Tejun Heo wrote: > Alex Chiang wrote: >> * Tejun Heo : > >>> Alex Chiang wrote: >>>> Shuts up gcc-3.4.5-glibc-2.3.6 when it complains of: >>>> >>>> drivers/ata/libata-scsi.c: In function `ata_scsi_scan_host': >>>> drivers/ata/libata-scsi.c:3225: warning: 'dev' might be used >>>> uninitialized in this function >>>> >>>> Signed-off-by: Alex Chiang >>> Nacked-by: Tejun Heo >>> >>> Some gcc versions complain about sata_via, others complain >>> about something else. Some versions complain about some >>> iterator usages while not complaining about others, but none of >>> those complaints is actually wrong or dangerous. I don't think >>> adding = NULL whenever some version of gcc complains is the >>> right approach. >> >> Hm, ok. >> >> I guess we don't want to sprinkle these around all over the place >> just to solve cosmetic issues, which makes sense, but is there >> some other approach we could take instead? Any suggestions? Or >> just live with it? > > I think the current policy is blaming gcc but I also added quite a few > bogus NULL initializations here and there and caught several bugs thanks > to those warnings. We can think about adding an additional annotation > with leading double underbars which indicate that certain pointer > arguments to functions expect (or are okay with) pointers to > uninitialized variables which should be able to remove many of those > spurious warnings (on the caller side, the compiler can ignore the > warning and on the callee side the compiler can check whether it's being > dereferenced without being written to). Does anyone know whether gcc > already has that type of annotation? Well, I don't know of this particular kind of annotation. However, I don't quite see how that would solve the reported issue. Here, dev is a local variable and the warning is generated due to the line if (dev != last_failed_dev) { For this sort of thing we have: struct ata_device *uninitialized_var(dev); Or is that precisely the thing you did *not* want? Regards, Elias -- 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/