diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 19:20:15 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 19:20:15 +0100 |
| commit | 885f5974cdf65b59415837ae97f5a14ef1350670 (patch) | |
| tree | 66ac13de29c7f4932c5fcae11773df574e4e256a /include/arch/x86_64/linux/fs.h | |
| parent | 8f9e448b2ef6db7cd905540c21f3c5b190e7a1e7 (diff) | |
feat: add gzip and new headers
Diffstat (limited to 'include/arch/x86_64/linux/fs.h')
| -rw-r--r-- | include/arch/x86_64/linux/fs.h | 24 |
1 files changed, 13 insertions, 11 deletions
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 \ |
