aboutsummaryrefslogtreecommitdiff
path: root/stand/libsa/gzipfs.c
Commit message (Collapse)AuthorAgeFilesLines
* libsa: Remove redundant sys/cdefs.hWarner Losh2024-02-221-1/+0
| | | | Sponsored by: Netflix
* Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
| | | | Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
* stand: Use c99 structure initialization for gzipfs_fsopsWarner Losh2022-07-241-8/+8
| | | | Sponsored by: Netflix
* libsa: Fix infinite loop in bzipfs & gzipfsDavid Bright2021-06-011-0/+3
| | | | | | | | | | | | | | | | A bug in the loader's bzipfs & gzipfs filesystems caused compressed kernel and modules not to work on EFI systems with a veriexec-enabled loader. Since the size of files in these filesystems are not known _a priori_ `stat` would initialize the size to -1 and the loader would then hang in an infinite loop while trying to seek (read) to the end of file since the loop termination condition compares the current offset to that negative target position. Reviewers: vangyzen, imp, Bret Ketchum (Bret.Ketchum@dell.com) Differential Revision: https://reviews.freebsd.org/D30414 Sponsored by: Dell EMC Isilon MFC to: stable/12, stable/13 MFC after: 1 week
* libsa: gzipfs.c converts pointers to integer types with different signToomas Soome2018-08-071-1/+1
| | | | | | | Signed versus unsigned char. Notes: svn path=/head/; revision=337413
* Move sys/boot to stand. Fix all references to new locationWarner Losh2017-11-141-0/+337
Sponsored by: Netflix Notes: svn path=/head/; revision=325834