Name | Size | Last modified (GMT) | Description | |
Parent directory | 2024-10-29 14:06:28 | |||
include/ | 2024-10-29 14:06:28 | |||
99-nx-gzip.rules | 52 bytes | 2024-10-29 14:06:28 | ||
Makefile | 197 bytes | 2024-10-29 14:06:28 | ||
README | 1554 bytes | 2024-10-29 14:06:28 | ||
gunz_test.c | 28085 bytes | 2024-10-29 14:06:28 | ||
gzfht_test.c | 10968 bytes | 2024-10-29 14:06:28 | ||
gzip_vas.c | 6416 bytes | 2024-10-29 14:06:28 | ||
nx-gzip-test.sh | 647 bytes | 2024-10-29 14:06:28 |
1 Test the nx-gzip function: 2 ========================= 3 4 Verify that following device exists: 5 /dev/crypto/nx-gzip 6 If you get a permission error run as sudo or set the device permissions: 7 sudo chmod go+rw /dev/crypto/nx-gzip 8 However, chmod may not survive across boots. You may create a udev file such 9 as: 10 /etc/udev/rules.d/99-nx-gzip.rules 11 12 13 To manually build and run: 14 $ gcc -O3 -I./include -o gzfht_test gzfht_test.c gzip_vas.c 15 $ gcc -O3 -I./include -o gunz_test gunz_test.c gzip_vas.c 16 17 18 Compress any file using Fixed Huffman mode. Output will have a .nx.gz suffix: 19 $ ./gzfht_test gzip_vas.c 20 file gzip_vas.c read, 6413 bytes 21 compressed 6413 to 3124 bytes total, crc32 checksum = abd15e8a 22 23 24 Uncompress the previous output. Output will have a .nx.gunzip suffix: 25 ./gunz_test gzip_vas.c.nx.gz 26 gzHeader FLG 0 27 00 00 00 00 04 03 28 gzHeader MTIME, XFL, OS ignored 29 computed checksum abd15e8a isize 0000190d 30 stored checksum abd15e8a isize 0000190d 31 decomp is complete: fclose 32 33 34 Compare two files: 35 $ sha1sum gzip_vas.c.nx.gz.nx.gunzip gzip_vas.c 36 bf43e3c0c3651f5f22b6f9784cd9b1eeab4120b6 gzip_vas.c.nx.gz.nx.gunzip 37 bf43e3c0c3651f5f22b6f9784cd9b1eeab4120b6 gzip_vas.c 38 39 40 Note that the code here are intended for testing the nx-gzip hardware function. 41 They are not intended for demonstrating performance or compression ratio. 42 By being simplistic these selftests expect to allocate the entire set of source 43 and target pages in the memory so it needs enough memory to work. 44 For more information and source code consider using: 45 https://github.com/libnxz/power-gzip
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.