From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-in-05.arcor-online.net (mail-in-05.arcor-online.net [151.189.21.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.arcor.de", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTP id 8D8E1DDEF0 for ; Sat, 9 Jun 2007 06:06:13 +1000 (EST) In-Reply-To: <200706082201.26308.arnd@arndb.de> References: <200706082126.23435.arnd@arndb.de> <65a522813f1b95748a3acc0c05e0285c@kernel.crashing.org> <200706082201.26308.arnd@arndb.de> Mime-Version: 1.0 (Apple Message framework v623) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Message-Id: From: Segher Boessenkool Subject: Re: [RFC/PATCH 4/4] Add support for MSI on Axon-based Cell systems Date: Fri, 8 Jun 2007 22:06:02 +0200 To: Arnd Bergmann Cc: linuxppc-dev@ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , >> That wasn't my question though? > > Sorry, I misread this. The of_node_get is done because we keep > a reference to the device node in the axon_msic struct. There is > no module_exit function in the driver that could clean up the > axon_msic, so we must never have an of_node_put as far as I > understand. >>>>>> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 if = (axon_msi_setup_one(of_node_get(node)) =3D=3D 0) >>>>>> + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 found++; What if axon_msi_setup_one() returns an error? Sounds to me like the get() should be inside that function no matter what? If the reference counting isn't obvious, it is obviously wrong ;-) Segher