Skip to content

Commit

Permalink
QATAPP-27707: README: fix typo lenth -> length
Browse files Browse the repository at this point in the history
* QATAPP-27707: README: fix typo lenth -> length

Change-Id: I5b6c986e1c9c75e3e482639c4fc9143a0c3ef90d

* QATAPP-27708: add .gitignore file

Change-Id: Ia775a7b61a426eb1d495378d92df056fc9b3c792
Signed-off-by: XingHongChenIntel <[email protected]>
Co-authored-by: Mitchell <[email protected]>
Signed-off-by: Chengfei Zhu <[email protected]>
  • Loading branch information
XingHongChenIntel and mitchdz committed Nov 3, 2022
1 parent a073390 commit e79cd7e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e79cd7e

Please sign in to comment.