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


Groups > linux.kernel > #1391011 > unrolled thread

[PATCH v2] crypto: Add a flag allowing the self-tests to be disabled at runtime.

Started by"Richard W.M. Jones" <rjones@redhat.com>
First post2016-04-29 13:10 +0200
Last post2016-04-29 13:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH v2] crypto: Add a flag allowing the self-tests to be disabled at runtime. "Richard W.M. Jones" <rjones@redhat.com> - 2016-04-29 13:10 +0200

#1391011 — [PATCH v2] crypto: Add a flag allowing the self-tests to be disabled at runtime.

From"Richard W.M. Jones" <rjones@redhat.com>
Date2016-04-29 13:10 +0200
Subject[PATCH v2] crypto: Add a flag allowing the self-tests to be disabled at runtime.
Message-ID<rtet4-4St-23@gated-at.bofh.it>
v1 -> v2:

 - Use printk_once.

Because the serial console is so slow, printing the message multiple
times consumed about 6ms extra later on in the boot.  Printing it only
once is both neater and avoids this extra overhead.

Rich.

- - -

I'm trying to reduce the time taken in the kernel in initcalls, with
my aim being to reduce the current ~700ms spent in initcalls before
userspace, down to something like 100ms.  All times on my Broadwell-U
laptop, under virtualization.  The purpose of this is to be able to
launch VMs around containers with minimal overhead, like Intel Clear
Containers, but using standard distro kernels and qemu.

Currently the kernel spends 28ms (on my laptop) running crypto
algorithm self-tests.  Although it's possibe to disable these at
compile time, Fedora kernel maintainers want to maintain a single
kernel image for all uses.

So this commit adds a runtime flag which callers can set to skip the
self-tests in the fast container/virtualization case.

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web