mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-24 03:08:51 +03:00
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 <behlendorf1@llnl.gov> Reviewed-by: Jinshan Xiong <jinshan.xiong@intel.com> Signed-off-by: Weigang Li <weigang.li@intel.com> Closes #5846
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user