* VM code question
@ 2003-10-14 1:32 Darren Williams
2003-10-14 1:44 ` William Lee Irwin III
0 siblings, 1 reply; 5+ messages in thread
From: Darren Williams @ 2003-10-14 1:32 UTC (permalink / raw)
To: Linux Kern
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
--------------------------------------------------
Darren Williams <dsw@gelato.unsw.edu.au>
Gelato@UNSW <www.gelato.unsw.edu.au>
--------------------------------------------------
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: VM code question
2003-10-14 1:32 VM code question Darren Williams
@ 2003-10-14 1:44 ` William Lee Irwin III
2003-10-14 1:52 ` Nick Piggin
0 siblings, 1 reply; 5+ messages in thread
From: William Lee Irwin III @ 2003-10-14 1:44 UTC (permalink / raw)
To: Darren Williams; +Cc: Linux Kern
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: VM code question
2003-10-14 1:44 ` William Lee Irwin III
@ 2003-10-14 1:52 ` Nick Piggin
2003-10-14 2:03 ` William Lee Irwin III
2003-10-14 5:07 ` Matt Mackall
0 siblings, 2 replies; 5+ messages in thread
From: Nick Piggin @ 2003-10-14 1:52 UTC (permalink / raw)
To: William Lee Irwin III; +Cc: Darren Williams, Linux Kernel
William Lee Irwin III wrote:
>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.
>
AFAIKS the 0 is not part of the address calculation method though. It
is only used in the argument to the typeof operator. I think 0 is used
simply because its as good a place as any, right?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: VM code question
2003-10-14 1:52 ` Nick Piggin
@ 2003-10-14 2:03 ` William Lee Irwin III
2003-10-14 5:07 ` Matt Mackall
1 sibling, 0 replies; 5+ messages in thread
From: William Lee Irwin III @ 2003-10-14 2:03 UTC (permalink / raw)
To: Nick Piggin; +Cc: Darren Williams, Linux Kernel
William Lee Irwin III wrote:
>> 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.
On Tue, Oct 14, 2003 at 11:52:36AM +1000, Nick Piggin wrote:
> AFAIKS the 0 is not part of the address calculation method though. It
> is only used in the argument to the typeof operator. I think 0 is used
> simply because its as good a place as any, right?
This is actually done differently from how I remember. Yes, 0 is useless.
-- wli
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: VM code question
2003-10-14 1:52 ` Nick Piggin
2003-10-14 2:03 ` William Lee Irwin III
@ 2003-10-14 5:07 ` Matt Mackall
1 sibling, 0 replies; 5+ messages in thread
From: Matt Mackall @ 2003-10-14 5:07 UTC (permalink / raw)
To: Nick Piggin; +Cc: William Lee Irwin III, Darren Williams, Linux Kernel
On Tue, Oct 14, 2003 at 11:52:36AM +1000, Nick Piggin wrote:
>
>
> William Lee Irwin III wrote:
>
> >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.
> >
>
> AFAIKS the 0 is not part of the address calculation method though. It
> is only used in the argument to the typeof operator. I think 0 is used
> simply because its as good a place as any, right?
It could be simplified to:
((type *)((char *)(ptr) - offsetof(type, member)))
The other bit is just there to throw errors if you cast in a pointer
of the wrong type. To do this, we've got to create a pointer of the
same type as &type.member so that assigning to it without casting will
throw a warning if ptr isn't of the right type. But we can't do
typeof(&type.member), as type is a type name and not an object. So
0 is simply the shortest, safest thing to cast to a (type *).
--
Matt Mackall : http://www.selenic.com : Linux development and consulting
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-10-14 5:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-14 1:32 VM code question Darren Williams
2003-10-14 1:44 ` William Lee Irwin III
2003-10-14 1:52 ` Nick Piggin
2003-10-14 2:03 ` William Lee Irwin III
2003-10-14 5:07 ` Matt Mackall
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox