From 885f5974cdf65b59415837ae97f5a14ef1350670 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 19:20:15 +0100 Subject: feat: add gzip and new headers --- include/arch/x86_64/linux/fs.h | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'include/arch/x86_64/linux/fs.h') diff --git a/include/arch/x86_64/linux/fs.h b/include/arch/x86_64/linux/fs.h index 23114c88..86ead53c 100644 --- a/include/arch/x86_64/linux/fs.h +++ b/include/arch/x86_64/linux/fs.h @@ -253,17 +253,19 @@ struct file_attr { /* the read-only stuff doesn't really belong here, but any other place is probably as bad and I don't want to create yet another include file. */ -#define BLKROSET _IO(0x12, 93) /* set device read-only (0 = read-write) */ -#define BLKROGET _IO(0x12, 94) /* get read-only status (0 = read_write) */ -#define BLKRRPART _IO(0x12, 95) /* re-read partition table */ -#define BLKGETSIZE _IO(0x12, 96) /* return device size /512 (long *arg) */ -#define BLKFLSBUF _IO(0x12, 97) /* flush buffer cache */ -#define BLKRASET _IO(0x12, 98) /* set read ahead for block device */ -#define BLKRAGET _IO(0x12, 99) /* get current read ahead setting */ -#define BLKFRASET _IO(0x12, 100) /* set filesystem (mm/filemap.c) read-ahead \ - */ -#define BLKFRAGET _IO(0x12, 101) /* get filesystem (mm/filemap.c) read-ahead \ - */ +#define BLKROSET _IO(0x12, 93) /* set device read-only (0 = read-write) */ +#define BLKROGET _IO(0x12, 94) /* get read-only status (0 = read_write) */ +#define BLKRRPART _IO(0x12, 95) /* re-read partition table */ +#define BLKGETSIZE _IO(0x12, 96) /* return device size /512 (long *arg) */ +#define BLKFLSBUF _IO(0x12, 97) /* flush buffer cache */ +#define BLKRASET _IO(0x12, 98) /* set read ahead for block device */ +#define BLKRAGET _IO(0x12, 99) /* get current read ahead setting */ +#define BLKFRASET \ + _IO(0x12, 100) /* set filesystem (mm/filemap.c) read-ahead \ + */ +#define BLKFRAGET \ + _IO(0x12, 101) /* get filesystem (mm/filemap.c) read-ahead \ + */ #define BLKSECTSET \ _IO(0x12, 102) /* set max sectors per request (ll_rw_blk.c) */ #define BLKSECTGET \ -- cgit v1.2.3