From e79cd7e7396c552f8c94ad9b227c5de044731e70 Mon Sep 17 00:00:00 2001 From: xinghong chen Date: Tue, 18 Oct 2022 09:59:29 +0800 Subject: [PATCH] QATAPP-27707: README: fix typo lenth -> length * QATAPP-27707: README: fix typo lenth -> length Change-Id: I5b6c986e1c9c75e3e482639c4fc9143a0c3ef90d * QATAPP-27708: add .gitignore file Change-Id: Ia775a7b61a426eb1d495378d92df056fc9b3c792 Signed-off-by: XingHongChenIntel Co-authored-by: Mitchell Signed-off-by: Chengfei Zhu --- .gitignore | 37 +++++++++++++++++++++++++++++++++++++ README.md | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..389eeaf --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# automake file +autom4te.cache +m4 +src/.deps +src/.libs +utils/.deps +test/.deps + +aclocal.m4 +Makefile +Makefile.in +ar-lib +compile +config.guess +config.log +config.status +config.sub +configure +depcomp +install-sh +libtool +ltmain.sh +missing +qatzip.spec + +# compile obj +src/*.lo +src/*.o +src/*.la +utils/*.o +test/*.o + +# app +test/bt +test/test +utils/qzip +utils/qzstd \ No newline at end of file diff --git a/README.md b/README.md index d08428a..260f291 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ The compression level in QATzip could be mapped to standard zlib\* as below: in the other session. * For stream object, user should clear stream object by calling qzEndStream() before clear session object with qzTeardownSession(). Otherwise, memory leak happens. -* For stream object, stream lenth must be smaller than `strm_buff_sz`, or QATzip would generate multiple +* For stream object, stream length must be smaller than `strm_buff_sz`, or QATzip would generate multiple deflate block in order and has the last block with BFIN set. * For stream object, we will optimize the performance of the pre-allocation process using a thread-local stream buffer list in a future release.