Re: p = kmalloc(sizeof(*p), )

From: Alan Cox
Date: Sun Sep 18 2005 - 16:05:06 EST


> It would be very useful when e.g. tracking down improper uses of
> struct file, struct dentry, etc. - stuff that should always be
> allocated by one helper function. Same goes for e.g. net_device -

Another useful trick here btw is to make such objects contain (when
debugging)

void *magic_ptr;

which is initialised as foo->magic_ptr = foo;

That catches anyone copying them and tells you what got copied

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/