#ifndef __ASM_GENERIC_CACHE_H #define __ASM_GENERIC_CACHE_H /* * 32 bytes appears to be the most common cache line size, * so make that the default here. Architectures with larger * cache lines need to provide their own cache.h. */ #define L1_CACHE_SHIFT 5 #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT) #endif /* __ASM_GENERIC_CACHE_H */ git' href='https://universe.0xinfinity.dev/distro/kernel' title='kernel Git repository'/>
summaryrefslogtreecommitdiff
path: root/include/linux/buffer_head.h
AgeCommit message (Expand)Author
2023-01-18buffer: add b_folio as an alias of b_pageMatthew Wilcox (Oracle)
2022-10-10Merge tag 'mm-stable-2022-10-08' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds
2022-10-06Merge tag 'ext4_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/t...Linus Torvalds
2022-09-29fs/buffer: make submit_bh & submit_bh_wbc return type as voidRitesh Harjani (IBM)
2022-09-11fs/buffer: remove bh_submit_read() helperZhang Yi
2022-09-11fs/buffer: remove ll_rw_block() helperZhang Yi
2022-09-11fs/buffer: add some new buffer read helpersZhang Yi
2022-09-11fs/buffer: remove __breadahead_gfp()Zhang Yi
2022-09-08fs: only do a memory barrier for the first set_buffer_uptodate()Linus Torvalds
2022-08-26wait_on_bit: add an acquire memory barrierMikulas Patocka
2022-08-09add barriers to buffer_uptodate and set_buffer_uptodateMikulas Patocka
2022-08-03Merge tag 'folio-6.0' of git://git.infradead.org/users/willy/pagecacheLinus Torvalds
2022-08-02fs: remove the nobh helpersChristoph Hellwig
2022-08-02mm/migrate: Convert buffer_migrate_page() to buffer_migrate_folio()Matthew Wilcox (Oracle)
2022-07-14fs/buffer: Combine two submit_bh() and ll_rw_block() argumentsBart Van Assche
2022-07-14fs/buffer: Use the new blk_opf_t typeBart Van Assche
2022-05-09fs: Change try_to_free_buffers() to take a folioMatthew Wilcox (Oracle)
2022-05-09fs: Convert block_read_full_page() to block_read_full_folio()Matthew Wilcox (Oracle)
2022-05-08fs: Convert is_dirty_writeback() to take a folioMatthew Wilcox (Oracle)
2022-05-08fs: Remove aop flags parameter from nobh_write_begin()Matthew Wilcox (Oracle)
2022-05-08fs: Remove aop flags parameter from cont_write_begin()Matthew Wilcox (Oracle)
2022-05-08fs: Remove aop flags parameter from block_write_begin()Matthew Wilcox (Oracle)
2022-03-16fs: Convert __set_page_dirty_buffers to block_dirty_folioMatthew Wilcox (Oracle)
2022-03-15fs: Turn block_invalidatepage into block_invalidate_folioMatthew Wilcox (Oracle)
2022-03-14fs: Convert is_partially_uptodate to foliosMatthew Wilcox (Oracle)
2022-03-14buffer: Add folio_buffers()Matthew Wilcox (Oracle)
2021-09-24mm: fs: invalidate bh_lrus for only cold pathMinchan Kim