All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Dumazet <dada1@cosmosbay.com>
To: Eric Dumazet <dada1@cosmosbay.com>
Cc: Davide Libenzi <davidel@xmailserver.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Ulrich Drepper <drepper@redhat.com>, Ingo Molnar <mingo@elte.hu>
Subject: Re: [patch 1/8] fdmap v2 - fdmap core
Date: Fri, 08 Jun 2007 07:00:13 +0200	[thread overview]
Message-ID: <4668E25D.3010109@cosmosbay.com> (raw)
In-Reply-To: <4668E106.9040509@cosmosbay.com>

Eric Dumazet a écrit :
> 
> struct fd_map {
>     /*
>      * read mostly part
>      */
>     unsigned int base;   /* 0x00 */
>     unsigned int size;   /* 0x04 */
>     struct list_head slist; /* 0x08 */
>     struct list_head *slots; /* 0x18 */
>     unsigned long *map; /* 0x28 */
>     void (*freecb)(void *, struct fd_map *); /* 0x30 */
>     void *freecb_priv; /* 0x38 */
> 
>     /*
>      * written part on a separate cache line in SMP
>      */
>     unsigned int fdnext ____cacheline_aligned_in_smp; /* 0x40 */
> 
>     struct fd_map *next;  /* 0x48 */
>     struct rcu_head rcu; /* 0x50 */
> };

Well, offsets are wrong but layout OK

struct fd_map {
     /*
      * read mostly part
      */
     unsigned int base;   /* 0x00 */
     unsigned int size;   /* 0x04 */
     struct list_head slist; /* 0x08 */
     struct list_head *slots; /* 0x18 */
     unsigned long *map; /* 0x20 */
     void (*freecb)(void *, struct fd_map *); /* 0x28 */
     void *freecb_priv; /* 0x30 */
	/* one 8 bytes hole */

     /*
      * written part on a separate cache line in SMP
      */
     unsigned int fdnext ____cacheline_aligned_in_smp; /* 0x40 */

     struct fd_map *next;  /* 0x48 */
     struct rcu_head rcu; /* 0x50 */
}; /* size 0x60 , aligned to 0x80 */


  reply	other threads:[~2007-06-08  5:00 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-06-06 22:30 [patch 1/8] fdmap v2 - fdmap core Davide Libenzi
2007-06-07  6:54 ` Eric Dumazet
2007-06-07  7:10   ` Davide Libenzi
2007-06-07 10:39     ` [patch 7/8] fdmap v2 - implement sys_socket2 Eric Dumazet
2007-06-07 15:42       ` Davide Libenzi
2007-06-08  4:54 ` [patch 1/8] fdmap v2 - fdmap core Eric Dumazet
2007-06-08  5:00   ` Eric Dumazet [this message]
2007-06-08  5:22     ` Davide Libenzi
2007-06-08  5:25     ` Davide Libenzi

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=4668E25D.3010109@cosmosbay.com \
    --to=dada1@cosmosbay.com \
    --cc=akpm@linux-foundation.org \
    --cc=davidel@xmailserver.org \
    --cc=drepper@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=torvalds@linux-foundation.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.