diff options
author | 2021-04-02 16:13:13 -0700 | |
---|---|---|
committer | 2021-04-02 16:13:13 -0700 | |
commit | d93a0d43e3d0ba9e19387be4dae4a8d5b175a8d7 (patch) | |
tree | e49badc7daf845034102081c934aa767652aee17 /include/linux/blkdev.h | |
parent | Merge tag 'io_uring-5.12-2021-04-02' of git://git.kernel.dk/linux-block (diff) | |
parent | block: remove the unused RQF_ALLOCED flag (diff) | |
download | wireguard-linux-d93a0d43e3d0ba9e19387be4dae4a8d5b175a8d7.tar.xz wireguard-linux-d93a0d43e3d0ba9e19387be4dae4a8d5b175a8d7.zip |
Merge tag 'block-5.12-2021-04-02' of git://git.kernel.dk/linux-block
Pull block fixes from Jens Axboe:
- Remove comment that never came to fruition in 22 years of development
(Christoph)
- Remove unused request flag (Christoph)
- Fix for null_blk fake timeout handling (Damien)
- Fix for IOCB_NOWAIT being ignored for O_DIRECT on raw bdevs (Pavel)
- Error propagation fix for multiple split bios (Yufen)
* tag 'block-5.12-2021-04-02' of git://git.kernel.dk/linux-block:
block: remove the unused RQF_ALLOCED flag
block: update a few comments in uapi/linux/blkpg.h
block: don't ignore REQ_NOWAIT for direct IO
null_blk: fix command timeout completion handling
block: only update parent bi_status when bio fail
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index bc6bc8383b43..158aefae1030 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -85,8 +85,6 @@ typedef __u32 __bitwise req_flags_t; #define RQF_ELVPRIV ((__force req_flags_t)(1 << 12)) /* account into disk and partition IO statistics */ #define RQF_IO_STAT ((__force req_flags_t)(1 << 13)) -/* request came from our alloc pool */ -#define RQF_ALLOCED ((__force req_flags_t)(1 << 14)) /* runtime pm request */ #define RQF_PM ((__force req_flags_t)(1 << 15)) /* on IO scheduler merge hash */ |