From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Stephen Hemminger <stephen.hemminger@vyatta.com>
Cc: David Miller <davem@davemloft.net>, netdev@vger.kernel.org
Subject: Re: [PATCH 1/3] sfq: timer is deferrable
Date: Fri, 18 Jan 2008 20:34:46 -0800 [thread overview]
Message-ID: <20080119043446.GB24840@linux.vnet.ibm.com> (raw)
In-Reply-To: <20080118144900.1df0dd90@deepthought>
On Fri, Jan 18, 2008 at 02:49:00PM -0800, Stephen Hemminger wrote:
> The perturbation timer used for re-keying can be deferred, it doesn't
> need to be deterministic.
The only concern that I can come up with is that the sfq_perturbation
timer might be on one CPU, and all the operations using the corresponding
SFQ on another. This could in theory allow a nearly omniscient attacker
to exploit an SFQ imbalance while preventing perturbation of the hash
function.
This does not seem to be a valid concern at this point, since there are
very few uses of init_timer_deferrable(). And if it should become a
problem, one approach would be to have some sort of per-timer limit to
the deferral. Of course, at that point one would need to figure out
what this limit should be!
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> Signed-off-by: Stephen Hemminger <stephen.hemminger@vyatta.com>
>
>
> --- a/net/sched/sch_sfq.c 2008-01-17 08:29:24.000000000 -0800
> +++ b/net/sched/sch_sfq.c 2008-01-17 09:00:58.000000000 -0800
> @@ -426,7 +426,9 @@ static int sfq_init(struct Qdisc *sch, s
> struct sfq_sched_data *q = qdisc_priv(sch);
> int i;
>
> - setup_timer(&q->perturb_timer, sfq_perturbation, (unsigned long)sch);
> + q->perturb_timer.function = sfq_perturbation;
> + q->perturb_timer.data = (unsigned long)sch;;
> + init_timer_deferrable(&q->perturb_timer);
>
> for (i=0; i<SFQ_HASH_DIVISOR; i++)
> q->ht[i] = SFQ_DEPTH;
next parent reply other threads:[~2008-01-19 4:34 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20080118144900.1df0dd90@deepthought>
2008-01-19 4:34 ` Paul E. McKenney [this message]
2008-01-19 4:36 ` [PATCH 1/3] sfq: timer is deferrable Stephen Hemminger
2008-01-19 5:57 ` Paul E. McKenney
2008-01-21 1:18 ` David Miller
2008-01-19 0:11 Stephen Hemminger
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=20080119043446.GB24840@linux.vnet.ibm.com \
--to=paulmck@linux.vnet.ibm.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
--cc=stephen.hemminger@vyatta.com \
/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.