From: "Antonino A. Daplas" <adaplas@hotpop.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>,
Antonino Daplas <adaplas@pol.net>
Cc: Jesper Juhl <juhl-lkml@dif.dk>,
linux-kernel <linux-kernel@vger.kernel.org>,
Linux Frame Buffer Device Development
<linux-fbdev-devel@lists.sourceforge.net>,
Alex Kern <alex.kern@gmx.de>,
Ani Joshi <ajoshi@shell.unixbox.com>,
"Ben. Herrenschmidt" <benh@kernel.crashing.org>,
Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
Helge Deller <deller@gmx.de>, Philipp Rumpf <prumpf@tux.org>,
James Simmons <jsimmons@users.sourceforge.net>,
"Eddie C. Dost" <ecd@skynet.be>, Nicolas Pitre <nico@cam.org>,
linux-arm-kernel@lists.arm.linux.org.uk,
Andrew Morton <akpm@osdl.org>
Subject: Re: [PATCH] remove redundant NULL checks before kfree() in drivers/video/
Date: Mon, 21 Mar 2005 06:18:12 +0800 [thread overview]
Message-ID: <200503210618.12793.adaplas@hotpop.com> (raw)
In-Reply-To: <Pine.LNX.4.62.0503202248270.27963@gorilla.sonytel.be>
On Monday 21 March 2005 05:49, Geert Uytterhoeven wrote:
> On Mon, 21 Mar 2005, Antonino A. Daplas wrote:
> > On Sunday 20 March 2005 06:59, Jesper Juhl wrote:
> > > Checking a pointer for NULL before calling kfree() on it is redundant,
> > > kfree() deals with NULL pointers just fine.
> > > This patch removes such checks from files in drivers/video/
> > >
> > > Since this is a fairly trivial change (and the same change made
> > > everywhere) I've just made a single patch for all the files and CC all
> > > authors/maintainers of those files I could find for comments. If
> > > spliting this into one patch pr file is prefered, then I can easily do
> > > that as well.
> >
> > [snip]
> >
> > > --- linux-2.6.11-mm4-orig/drivers/video/console/bitblit.c 2005-03-16
> > > 15:45:26.000000000 +0100 +++
> > > linux-2.6.11-mm4/drivers/video/console/bitblit.c 2005-03-19
> > > 22:27:39.000000000 +0100 @@ -199,8 +199,7 @@ static void
> > > bit_putcs(struct vc_data *vc
> > > count -= cnt;
> > > }
> > >
> > > - if (buf)
> > > - kfree(buf);
> > > + kfree(buf);
> > > }
> >
> > This is performance critical, so I would like the check to remain. A
> > comment may be added in this section.
>
> The first thing kfree() does is check for the NULL pointer. And since
> kfree() is used a lot, it's probably already in the cache.
It's not the kfree that matters, but the fact that buf is almost always NULL.
Tony
next prev parent reply other threads:[~2005-03-20 22:18 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-03-19 22:59 [PATCH] remove redundant NULL checks before kfree() in drivers/video/ Jesper Juhl
2005-03-20 20:53 ` Antonino A. Daplas
2005-03-20 21:49 ` Geert Uytterhoeven
2005-03-20 22:18 ` Antonino A. Daplas [this message]
2005-03-20 22:01 ` Jan Engelhardt
2005-03-20 22:02 ` Jesper Juhl
2005-03-20 22:17 ` Antonino A. Daplas
2005-03-20 22:29 ` Jesper Juhl
2005-03-20 22:45 ` [new patch] Re: [PATCH] remove redundant NULL checks before kfree() in drivers/video/w100fb.c and add if()+comment back in drivers/video/console/bitblit.c Jesper Juhl
2005-03-20 23:04 ` Antonino A. Daplas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200503210618.12793.adaplas@hotpop.com \
--to=adaplas@hotpop.com \
--cc=adaplas@pol.net \
--cc=ajoshi@shell.unixbox.com \
--cc=akpm@osdl.org \
--cc=alex.kern@gmx.de \
--cc=benh@kernel.crashing.org \
--cc=deller@gmx.de \
--cc=ecd@skynet.be \
--cc=geert@linux-m68k.org \
--cc=jsimmons@users.sourceforge.net \
--cc=juhl-lkml@dif.dk \
--cc=linux-arm-kernel@lists.arm.linux.org.uk \
--cc=linux-fbdev-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=nico@cam.org \
--cc=prumpf@tux.org \
--cc=tsbogend@alpha.franken.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox