Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1253103

Re: Thought about credit_entropy_bits() math

From "George Spelvin" <linux@horizon.com>
Newsgroups linux.kernel
Subject Re: Thought about credit_entropy_bits() math
Date 2015-10-21 20:20 +0200
Message-ID <qm69r-2wo-9@gated-at.bofh.it> (permalink)
References <qm69r-2wo-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


(Resend because I can't spell "kernel.org".)

H. Peter Anvin wrote:
> The main advantage with this approximation is that it doesn't need a
> multiplication instruction.  Instead, it can be implemented with two
> shifts and a subtract on hardware for which multiplication is slow.

Er...  I'm as addicted to micro-optimization as anyone, which is why
I posted all those various approximations, but I'm taking about going
from one to two, not zero to one.

The current approximaion is used right in the middle of a non-constant
multiply:
	unsigned int add = ((pool_size - entropy_count)*anfrac*3) >> s;


(Does Linux even run on any hardware without a multiply instruction?
There are tons of multiplies all over the scheduler.  The worst cases
I can think of just have slow bitwise multiplies: the nommu 68000 and
SPARCv7's multiply step.)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

Re: Thought about credit_entropy_bits() math "George Spelvin" <linux@horizon.com> - 2015-10-21 20:20 +0200

csiph-web