All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Dumazet <dada1@cosmosbay.com>
To: Vadim Lobanov <vlobanov@speakeasy.net>
Cc: akpm@osdl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] fdtable: Eradicate fdarray overflow.
Date: Thu, 12 Oct 2006 08:32:43 +0200	[thread overview]
Message-ID: <452DE18B.9030701@cosmosbay.com> (raw)
In-Reply-To: <200610112307.38485.vlobanov@speakeasy.net>

Vadim Lobanov a écrit :
> On Wednesday 11 October 2006 22:19, Eric Dumazet wrote:
>> Hi Vadim
>>
>> I find your PAGE_SIZE/4 minimum allocation quite unjustified.
>>
>> For architectures with 64K PAGE_SIZE, we endup allocating 16K, for poor
>> tasks that happen to touch a not so high (>= 64) file descriptor...
>>
>> I would vote for a fixed size, like 1024
> 
> In my opinion, always picking 1024 would be highly suboptimal for some 
> architectures (x86-64 in particular -- that's a whole page, just for the 
> fdarray!). If anything, I'd prefer something similar to this pseudo-code:

I was speaking of 1024 bytes.

I was the guy who made fdset going from PAGE_SIZE to 64 bytes (L1_CACHE_BYTES 
if you dare), I wont be the guy responsible for a reverse path on fdtable :)

That is replace your (PAGE_SIZE/4)  by 1024, wich was you probably meant
No archi has a smaller page, so no need to play with min_t() macro...

> 
> #define FDTABLE_MIN min_t(uint, PAGE_SIZE / 4 / sizeof(struct file *), 1024)
> ...
> nr /= FDTABLE_MIN;
> nr = roundup_pow_of_two(nr + 1);
> nr *= FDTABLE_MIN;
> 
> gcc should be smart enough to optimize that expression into a single constant. 
> At least it did (version 4.1.0) in my quick test here.
> 
>> Eric
> 
> Let me know what you think. Please don't just go radio-silent on me. ;)
> 

radio-silent ? well, it seems I already sent you many mails about your patches :)

Eric


  reply	other threads:[~2006-10-12  6:32 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-10-12  2:58 [PATCH] fdtable: Eradicate fdarray overflow Vadim Lobanov
2006-10-12  5:19 ` Eric Dumazet
2006-10-12  6:07   ` Vadim Lobanov
2006-10-12  6:32     ` Eric Dumazet [this message]
2006-10-12  7:16       ` Vadim Lobanov

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=452DE18B.9030701@cosmosbay.com \
    --to=dada1@cosmosbay.com \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=vlobanov@speakeasy.net \
    /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.