Re: VM code question

From: William Lee Irwin III
Date: Mon Oct 13 2003 - 20:42:05 EST


On Tue, Oct 14, 2003 at 11:32:27AM +1000, Darren Williams wrote:
> I have a small question wrt some VM code.
> source file is include/linux/kernel.h
> #define container_of(ptr, type, member) ({ \
> const typeof( ((type *)0)->member ) *__mptr = (ptr); \
> (type *)( (char *)__mptr - offsetof(type,member) );})
> what is the use of the 0 (zero) in the typeof? I am thinking
> that we are casting 0 to (type *) then referencing 'member' of
> 'type', however why do we require the 0 ?
> Just curious

It's an address calculation method. We subtract the address of the
start of the structure from the address of the member inside the
structure.


-- wli
-
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/