From: Daniel Phillips <phillips@bonn-fries.net>
To: Geert Uytterhoeven <geert@linux-m68k.org>,
Jeff Garzik <jgarzik@mandrakesoft.com>
Cc: David Flynn <Dave@keston.u-net.com> rjd@xyzzy.clara.co.uk,
Bill Pringlemeir <bpringle@sympatico.ca>,
linux-kernel@vger.kernel.org
Subject: Re: Newbie idiotic questions.
Date: Sun, 17 Jun 2001 22:08:23 +0200 [thread overview]
Message-ID: <0106172208230T.00879@starship> (raw)
In-Reply-To: <Pine.LNX.4.05.10106172115110.12465-100000@callisto.of.borg>
In-Reply-To: <Pine.LNX.4.05.10106172115110.12465-100000@callisto.of.borg>
On Sunday 17 June 2001 21:18, Geert Uytterhoeven wrote:
> On Sun, 17 Jun 2001, Jeff Garzik wrote:
> > David Flynn wrote:
> > > > Daniel Phillips wrote:
> > > > > - if ((card->mpuout = kmalloc(sizeof(struct emu10k1_mpuout),
GFP_KERNEL))
> > >
> > > > > + if ((card->mpuout = kmalloc(sizeof(*card->mpuout),
GFP_KERNEL))
> > > >
> > > > Yeah, this is fine. The original posted omitted the '*' which was
> > > > not fine :)
> > >
> > > The only other thing left to ask, is which is easier to read when
> > > glancing through the code, and which is easier to read when maintaining
> > > the code. imho, ist the former for reading the code, i dont know about
> > > maintaing the code since i dont do that, however in my own projects i
> > > prefere the former when maintaing the code.
> >
> > It's the preference of the maintainer. It's a tossup: using the type
> > in the kmalloc makes the type being allocated obvious. But using
> > sizeof(*var) is a tiny bit more resistant to change.
> >
> > Neither one sufficiently affects long term maintenance AFAICS, so it's
> > personal preference, not any sort of kernel standard one way or the
> > other...
>
> The first one can be made a bit safer against changes by creating a `knew'
>
> macro that behaves like `new' in C++:
> | #define knew(type, flags) (type *)kmalloc(sizeof(type), (flags))
>
> If the types in the assignment don't match, gcc will tell you.
Well, since we are still beating this one to death, I'd written a "knew"
macro as well, and put it aside. It does the assignment for you too:
#define knew(p) ((p) = (typeof(p)) kmalloc(sizeof(*(p)), GFP_KERNEL))
Example:
struct foo { int a; int b; };
struct { struct foo *foo; } *foobar;
if (knew(foobar))
if (knew(foobar->foo))
printk("foo: %p\n", foobar->foo);
Terse and clear at the same time, and type safe. I still don't like it much.
--
Daniel
next prev parent reply other threads:[~2001-06-17 20:05 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-06-17 1:19 Newbie idiotic questions Bill Pringlemeir
2001-06-17 1:32 ` Jeff Garzik
2001-06-17 10:48 ` Daniel Phillips
2001-06-17 12:27 ` rjd
2001-06-17 15:01 ` Daniel Phillips
2001-06-17 15:08 ` Jeff Garzik
2001-06-17 15:38 ` David Flynn
2001-06-17 15:54 ` Jeff Garzik
2001-06-17 19:18 ` Geert Uytterhoeven
2001-06-17 20:08 ` Daniel Phillips [this message]
2001-06-17 20:37 ` Alexander Viro
2001-06-17 21:28 ` Daniel Phillips
2001-06-17 22:33 ` Alexander Viro
2001-06-18 9:14 ` Roman Zippel
2001-06-18 9:30 ` Alexander Viro
2001-06-17 21:17 ` Bill Pringlemeir
2001-06-17 1:35 ` Richard B. Johnson
2001-06-17 3:01 ` Arnaldo Carvalho de Melo
2001-06-17 8:06 ` rjd
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=0106172208230T.00879@starship \
--to=phillips@bonn-fries.net \
--cc=Dave@keston.u-net.com \
--cc=geert@linux-m68k.org \
--cc=jgarzik@mandrakesoft.com \
/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