aboutsummaryrefslogtreecommitdiffstats
path: root/module/zfs/gzip.c
diff options
context:
space:
mode:
authorwli5 <[email protected]>2017-03-23 08:58:47 +0800
committerBrian Behlendorf <[email protected]>2017-03-22 17:58:47 -0700
commit6a9d6359982cbff298dd17f68c3103d1269602fa (patch)
treebb4379c514eee44698a59d03b7a56ffc69973fe9 /module/zfs/gzip.c
parentd48be524ce96a1a6011bb658985c5b7087d576d2 (diff)
GZIP compression offloading with QAT accelerator
This patch implement the hardware accelerator method in GZIP compression in ZFS. When the ZFS pool is enabled GZIP compression, the compression API will be automatically transferred to the hardware accelerator to free up CPU resource and speed up the compression time. * To enable Intel QAT hardware acceleration in ZOL you need to have QAT hardware and the driver installed: * QAT hardware DH8950: http://ark.intel.com/products/79483/Intel-QuickAssist-Adapter-8950 * QAT driver: https://01.org/intel-quickassist-technology * Start QAT driver in your system: service qat_service start * Enable QAT in ZFS, e.g.: ./configure --with-qat=<qat-driver-path>/QAT1.6 make * Set GZIP compression in ZFS dataset: zfs set compression = gzip <dataset> * Get QAT hardware statistics by: cat /proc/spl/kstat/zfs/qat * To disable QAT in ZFS: insmod zfs.ko zfs_qat_disable=1 Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Jinshan Xiong <[email protected]> Signed-off-by: Weigang Li <[email protected]> Closes #5846
Diffstat (limited to 'module/zfs/gzip.c')
-rw-r--r--module/zfs/gzip.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/module/zfs/gzip.c b/module/zfs/gzip.c
index 6e5c859fe..6c8fdd308 100644
--- a/module/zfs/gzip.c
+++ b/module/zfs/gzip.c
@@ -28,6 +28,7 @@
#include <sys/debug.h>
#include <sys/types.h>
+#include "qat_compress.h"
#ifdef _KERNEL
@@ -56,6 +57,14 @@ gzip_compress(void *s_start, void *d_start, size_t s_len, size_t d_len, int n)
ASSERT(d_len <= s_len);
+ /* check if hardware accelerator can be used */
+ if (qat_use_accel(s_len)) {
+ if (qat_compress(QAT_COMPRESS, s_start,
+ s_len, d_start, d_len, &dstlen) == CPA_STATUS_SUCCESS)
+ return ((size_t)dstlen);
+ /* if hardware compress fail, do it again with software */
+ }
+
if (compress_func(d_start, &dstlen, s_start, s_len, n) != Z_OK) {
if (d_len != s_len)
return (s_len);
@@ -75,6 +84,14 @@ gzip_decompress(void *s_start, void *d_start, size_t s_len, size_t d_len, int n)
ASSERT(d_len >= s_len);
+ /* check if hardware accelerator can be used */
+ if (qat_use_accel(d_len)) {
+ if (qat_compress(QAT_DECOMPRESS, s_start, s_len,
+ d_start, d_len, &dstlen) == CPA_STATUS_SUCCESS)
+ return (0);
+ /* if hardware de-compress fail, do it again with software */
+ }
+
if (uncompress_func(d_start, &dstlen, s_start, s_len) != Z_OK)
return (-1);