mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
To: "Jason A. Donenfeld" <Jason@zx2c4.com>
Cc: linux-kernel@vger.kernel.org, linux-crypto@vger.kernel.org,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Peter Zijlstra" <peterz@infradead.org>,
	"Theodore Ts'o" <tytso@mit.edu>,
	"Sultan Alsawaf" <sultan@kerneltoast.com>,
	"Jonathan Neuschäfer" <j.neuschaefer@gmx.net>,
	"Dominik Brodowski" <linux@dominikbrodowski.net>
Subject: Re: [PATCH v5] random: defer fast pool mixing to worker
Date: Fri, 11 Feb 2022 16:00:48 +0100	[thread overview]
Message-ID: <YgZ6IEbiDgz5X1ON@linutronix.de> (raw)
In-Reply-To: <20220211130807.491750-1-Jason@zx2c4.com>

On 2022-02-11 14:08:07 [+0100], Jason A. Donenfeld wrote:
…
> +static void mix_interrupt_randomness(struct work_struct *work)
> +{
> +	struct fast_pool *fast_pool = container_of(work, struct fast_pool, mix);
> +	unsigned long pool[ARRAY_SIZE(fast_pool->pool)];
> +	unsigned int count_snapshot;
> +	size_t i;
> +
> +	/* Check to see if we're running on the wrong CPU due to hotplug. */
> +	migrate_disable();
> +	if (fast_pool != this_cpu_ptr(&irq_randomness)) {
> +		migrate_enable();
> +		/*
> +		 * If we are unlucky enough to have been moved to another CPU,
> +		 * then we set our count to zero atomically so that when the
> +		 * CPU comes back online, it can enqueue work again. The
> +		 * _release here pairs with the atomic_inc_return_acquire in
> +		 * add_interrupt_randomness().
> +		 */
> +		atomic_set_release(&fast_pool->count, 0);
> +		return;
> +	}
> +
> +	/*
> +	 * Copy the pool to the stack so that the mixer always has a
> +	 * consistent view. It's extremely unlikely but possible that
> +	 * this 2 or 4 word read is interrupted by an irq, but in case
> +	 * it is, we double check that count stays the same.
> +	 */
> +	do {
> +		count_snapshot = (unsigned int)atomic_read(&fast_pool->count);
> +		for (i = 0; i < ARRAY_SIZE(pool); ++i)
> +			pool[i] = READ_ONCE(fast_pool->pool[i]);
> +	} while (count_snapshot != (unsigned int)atomic_read(&fast_pool->count));

Which what I wrote in the last mail, can't we just have a cmpxchg loop
here?

Sebastian

  reply	other threads:[~2022-02-11 15:00 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-11 13:08 Jason A. Donenfeld
2022-02-11 15:00 ` Sebastian Andrzej Siewior [this message]
2022-02-11 16:25   ` [PATCH v6] " Jason A. Donenfeld
2022-02-11 16:44     ` Sebastian Andrzej Siewior
2022-02-11 16:50       ` Jason A. Donenfeld
2022-02-11 16:58         ` Sebastian Andrzej Siewior
2022-02-11 17:00           ` Jason A. Donenfeld
2022-02-11 17:15             ` Sebastian Andrzej Siewior
2022-02-11 17:17               ` Jason A. Donenfeld
2022-02-11 17:26                 ` Sebastian Andrzej Siewior
2022-02-13 21:04                   ` Jason A. Donenfeld
2022-02-14 10:19                     ` Jason A. Donenfeld
2022-02-13 17:37           ` Jason A. Donenfeld
2022-02-14  9:16             ` Sebastian Andrzej Siewior
2022-02-14 10:17               ` Jason A. Donenfeld
2022-02-14 11:16                 ` Sebastian Andrzej Siewior
2022-02-14 14:47                   ` Jason A. Donenfeld
2022-02-11 17:07         ` [PATCH v7] " Jason A. Donenfeld
2022-02-11 17:20           ` Sultan Alsawaf
2022-02-11 17:24           ` Sebastian Andrzej Siewior

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=YgZ6IEbiDgz5X1ON@linutronix.de \
    --to=bigeasy@linutronix.de \
    --cc=Jason@zx2c4.com \
    --cc=j.neuschaefer@gmx.net \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@dominikbrodowski.net \
    --cc=peterz@infradead.org \
    --cc=sultan@kerneltoast.com \
    --cc=tglx@linutronix.de \
    --cc=tytso@mit.edu \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®