Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752450Ab0AGMgd (ORCPT ); Thu, 7 Jan 2010 07:36:33 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752383Ab0AGMgc (ORCPT ); Thu, 7 Jan 2010 07:36:32 -0500 Received: from mail-ew0-f219.google.com ([209.85.219.219]:60414 "EHLO mail-ew0-f219.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752347Ab0AGMgc convert rfc822-to-8bit (ORCPT ); Thu, 7 Jan 2010 07:36:32 -0500 MIME-Version: 1.0 In-Reply-To: <6599ad831001061701x72098dacn7a5d916418396e33@mail.gmail.com> References: <9411cbdd545e1232c916bfef03a60cf95510016d.1262186098.git.kirill@shutemov.name> <6599ad831001061701x72098dacn7a5d916418396e33@mail.gmail.com> Date: Thu, 7 Jan 2010 14:36:29 +0200 Message-ID: Subject: Re: [PATCH v5 1/4] cgroup: implement eventfd-based generic API for notifications From: "Kirill A. Shutemov" To: Paul Menage Cc: containers@lists.linux-foundation.org, linux-mm@kvack.org, Li Zefan , Andrew Morton , KAMEZAWA Hiroyuki , Balbir Singh , Pavel Emelyanov , Dan Malek , Vladislav Buzov , Daisuke Nishimura , Alexander Shishkin , linux-kernel@vger.kernel.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 954 Lines: 20 On Thu, Jan 7, 2010 at 3:01 AM, Paul Menage wrote: > On Wed, Dec 30, 2009 at 7:57 AM, Kirill A. Shutemov > wrote: >> + >> +       if (!IS_ERR(efile)) >> +               fput(efile); > > While this is OK currently, it's a bit fragile. efile starts as NULL, > and IS_ERR(NULL) is false. So if we jump to fail: before trying to do > the eventfd_fget() then we'll try to fput(NULL), which will oops. This > works because we don't currently jump to fail: until after > eventfd_fget(), but someone could add an extra setup step between the > kzalloc() and the eventfd_fget() which could fail. So we need to use IS_ERR_OR_NULL here instread of IS_ERR, don't we? -- 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/