From: Nikolay Borisov <nborisov@suse.com>
To: linux-btrfs@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, herbert@gondor.apana.org.au,
Nikolay Borisov <nborisov@suse.com>
Subject: [PATCH 1/2] libcrc32c: Add crc32c_impl function
Date: Mon, 8 Jan 2018 11:45:04 +0200 [thread overview]
Message-ID: <1515404705-490-2-git-send-email-nborisov@suse.com> (raw)
In-Reply-To: <1515404705-490-1-git-send-email-nborisov@suse.com>
This function returns a string with the currently in-use implementation
of the crc32c algorithm, i.e crc32c-generic (for unoptimised, generic
implementation) or crc32c-intel for the sse optimised version. This
will be used by btrfs.
Signed-off-by: Nikolay Borisov <nborisov@suse.com>
---
include/linux/crc32c.h | 1 +
lib/libcrc32c.c | 6 ++++++
2 files changed, 7 insertions(+)
diff --git a/include/linux/crc32c.h b/include/linux/crc32c.h
index 357ae4611a45..bd21af828ff6 100644
--- a/include/linux/crc32c.h
+++ b/include/linux/crc32c.h
@@ -5,6 +5,7 @@
#include <linux/types.h>
extern u32 crc32c(u32 crc, const void *address, unsigned int length);
+extern const char *crc32c_impl(void);
/* This macro exists for backwards-compatibility. */
#define crc32c_le crc32c
diff --git a/lib/libcrc32c.c b/lib/libcrc32c.c
index 9f79547d1b97..eaf71e0e04be 100644
--- a/lib/libcrc32c.c
+++ b/lib/libcrc32c.c
@@ -71,6 +71,12 @@ static void __exit libcrc32c_mod_fini(void)
crypto_free_shash(tfm);
}
+const char *crc32c_impl(void)
+{
+ return crypto_tfm_alg_driver_name(crypto_shash_tfm(tfm));
+}
+EXPORT_SYMBOL(crc32c_impl);
+
module_init(libcrc32c_mod_init);
module_exit(libcrc32c_mod_fini);
--
2.7.4
next prev parent reply other threads:[~2018-01-08 9:45 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-08 9:45 [PATCH 0/2] Remove custom crc32c init code from btrfs Nikolay Borisov
2018-01-08 9:45 ` Nikolay Borisov [this message]
2018-02-02 17:29 ` [PATCH 1/2] libcrc32c: Add crc32c_impl function David Sterba
2018-02-03 9:51 ` Herbert Xu
2018-01-08 9:45 ` [PATCH 2/2] btrfs: Remove custom crc32c init code Nikolay Borisov
2018-02-02 17:17 ` David Sterba
2018-02-02 19:46 ` Andy Shevchenko
2018-02-05 22:53 ` David Sterba
2018-01-08 10:21 ` [PATCH 0/2] Remove custom crc32c init code from btrfs Timofey Titovets
2018-01-08 12:30 ` Nikolay Borisov
2018-02-05 22:59 ` David Sterba
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=1515404705-490-2-git-send-email-nborisov@suse.com \
--to=nborisov@suse.com \
--cc=herbert@gondor.apana.org.au \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).