
hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/ICPOEB CVE: NA ---------------------------------------------------------------------- Fix kabi breakage in struct readahead_control. Fixes: 77d075221ae7 ("mm/readahead: add readahead_control->dropbehind member") Signed-off-by: Long Li <leo.lilong@huawei.com> --- include/linux/pagemap.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index f3b0a19ae3af..c4b363e9d9f4 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h @@ -1375,14 +1375,13 @@ struct readahead_control { struct file *file; struct address_space *mapping; struct file_ra_state *ra; - KABI_RESERVE(1) + KABI_USE(1, bool dropbehind) KABI_RESERVE(2) KABI_RESERVE(3) /* private: use the readahead_* accessors instead */ pgoff_t _index; unsigned int _nr_pages; unsigned int _batch_count; - bool dropbehind; bool _workingset; unsigned long _pflags; }; -- 2.39.2