aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nilfs2
AgeCommit message (Expand)AuthorFilesLines
2024-04-16nilfs2: fix OOB in nilfs_set_de_typeJeongjun Park1-1/+1
2024-03-14nilfs2: prevent kernel bug at submit_bh_wbc()Ryusuke Konishi1-1/+1
2024-03-14nilfs2: fix failure to detect DAT corruption in btree and direct mappingsRyusuke Konishi2-4/+14
2024-03-12nilfs2: use div64_ul() instead of do_div()Thorsten Blum6-7/+7
2024-02-22nilfs2: convert cpfile to use kmap_localRyusuke Konishi1-45/+45
2024-02-22nilfs2: remove nilfs_cpfile_{get,put}_checkpoint()Ryusuke Konishi2-107/+0
2024-02-22nilfs2: localize highmem mapping for checkpoint reading within cpfileRyusuke Konishi5-34/+87
2024-02-22nilfs2: localize highmem mapping for checkpoint finalization within cpfileRyusuke Konishi3-46/+82
2024-02-22nilfs2: localize highmem mapping for checkpoint creation within cpfileRyusuke Konishi3-29/+77
2024-02-22nilfs2: convert ifile to use kmap_localRyusuke Konishi4-10/+9
2024-02-22nilfs2: do not acquire rwsem in nilfs_bmap_write()Ryusuke Konishi1-3/+0
2024-02-22nilfs2: move nilfs_bmap_write call out of nilfs_write_inode_commonRyusuke Konishi3-31/+57
2024-02-22nilfs2: convert DAT to use kmap_localRyusuke Konishi1-19/+19
2024-02-22nilfs2: convert persistent object allocator to use kmap_localRyusuke Konishi1-45/+46
2024-02-22nilfs2: convert sufile to use kmap_localRyusuke Konishi1-43/+43
2024-02-22nilfs2: convert metadata file common code to use kmap_localRyusuke Konishi1-2/+2
2024-02-22nilfs2: convert nilfs_copy_buffer() to use kmap_localRyusuke Konishi1-4/+4
2024-02-22nilfs2: convert segment buffer to use kmap_localRyusuke Konishi1-2/+2
2024-02-22nilfs2: convert recovery logic to use kmap_localRyusuke Konishi1-2/+2
2024-02-07nilfs2: fix potential bug in end_buffer_async_writeRyusuke Konishi1-3/+5
2024-02-07nilfs2: fix hang in nilfs_lookup_dirty_data_buffers()Ryusuke Konishi1-1/+7
2024-02-07nilfs2: fix data corruption in dsync block recovery for small block sizesRyusuke Konishi1-3/+4
2024-01-11Merge tag 'pull-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds1-6/+1
2024-01-09Merge tag 'mm-nonmm-stable-2024-01-09-10-33' of git://git.kernel.org/pub/scm/...Linus Torvalds14-365/+375
2024-01-08Merge tag 'vfs-6.8.super' of git://git.kernel.org/pub/scm/linux/kernel/git/vf...Linus Torvalds1-8/+0
2024-01-08Merge tag 'vfs-6.8.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs...Linus Torvalds1-2/+2
2023-12-29nilfs2: cpfile: fix some kernel-doc warningsRandy Dunlap1-5/+23
2023-12-29nilfs2: add missing set_freezable() for freezable kthreadKevin Hao1-0/+1
2023-12-20nilfs2: switch WARN_ONs to warning output in nilfs_sufile_do_free()Ryusuke Konishi1-2/+7
2023-12-20nilfs2: d_obtain_alias(ERR_PTR(...)) will do the right thing...Al Viro1-6/+1
2023-12-10nilfs2: convert nilfs_page_bug() to nilfs_folio_bug()Matthew Wilcox (Oracle)3-17/+18
2023-12-10nilfs2: convert nilfs_prepare_chunk() and nilfs_commit_chunk() to foliosMatthew Wilcox (Oracle)1-20/+19
2023-12-10nilfs2: convert nilfs_make_empty() to use a folioMatthew Wilcox (Oracle)1-9/+9
2023-12-10nilfs2: convert nilfs_empty_dir() to use a folioMatthew Wilcox (Oracle)1-15/+4
2023-12-10nilfs2: convert nilfs_add_link() to use a folioMatthew Wilcox (Oracle)1-17/+14
2023-12-10nilfs2: convert nilfs_rename() to use foliosMatthew Wilcox (Oracle)3-64/+60
2023-12-10nilfs2: convert nilfs_find_entry to use a folioMatthew Wilcox (Oracle)1-6/+6
2023-12-10nilfs2: convert nilfs_readdir to use a folioMatthew Wilcox (Oracle)1-5/+5
2023-12-10nilfs2: add nilfs_get_folio()Matthew Wilcox (Oracle)1-21/+32
2023-12-10nilfs2: switch to kmap_local for directory handlingMatthew Wilcox (Oracle)3-26/+19
2023-12-10nilfs2: pass the mapped address to nilfs_check_page()Matthew Wilcox (Oracle)1-3/+2
2023-12-10nilfs2: return the mapped address from nilfs_get_page()Matthew Wilcox (Oracle)1-30/+27
2023-12-10nilfs2: remove page_address() from nilfs_delete_entryMatthew Wilcox (Oracle)1-2/+2
2023-12-10nilfs2: remove page_address() from nilfs_add_linkMatthew Wilcox (Oracle)1-1/+1
2023-12-10nilfs2: remove page_address() from nilfs_set_linkMatthew Wilcox (Oracle)1-1/+1
2023-12-10nilfs2: eliminate staggered calls to kunmap in nilfs_renameRyusuke Konishi1-1/+2
2023-12-10nilfs2: move page release outside of nilfs_delete_entry and nilfs_set_linkRyusuke Konishi3-16/+14
2023-12-10nilfs2: convert nilfs_btnode_abort_change_key to use a folioMatthew Wilcox (Oracle)1-1/+1
2023-12-10nilfs2: convert nilfs_btnode_commit_change_key to use a folioMatthew Wilcox (Oracle)1-6/+6
2023-12-10nilfs2: convert nilfs_btnode_prepare_change_key to use a folioMatthew Wilcox (Oracle)1-9/+9
2023-12-10nilfs2: convert nilfs_btnode_delete to use a folioMatthew Wilcox (Oracle)1-9/+9
2023-12-10nilfs2: convert nilfs_btnode_submit_block to use a folioMatthew Wilcox (Oracle)1-4/+4
2023-12-10nilfs2: convert nilfs_btnode_create_block to use a folioMatthew Wilcox (Oracle)1-2/+2
2023-12-10nilfs2: convert nilfs_gccache_submit_read_data to use a folioMatthew Wilcox (Oracle)1-2/+2
2023-12-10nilfs2: convert nilfs_mdt_submit_block to use a folioMatthew Wilcox (Oracle)1-2/+2
2023-12-10nilfs2: convert nilfs_mdt_create_block to use a folioMatthew Wilcox (Oracle)1-2/+2
2023-12-10nilfs2: convert nilfs_page_mkwrite() to use a folioMatthew Wilcox (Oracle)1-13/+15
2023-12-10nilfs2: convert nilfs_segctor_prepare_write to use foliosMatthew Wilcox (Oracle)1-29/+29
2023-12-10nilfs2: convert to __nilfs_clear_folio_dirty()Matthew Wilcox (Oracle)3-11/+12
2023-12-10nilfs2: convert to nilfs_clear_folio_dirty()Matthew Wilcox (Oracle)4-16/+17
2023-12-10nilfs2: convert nilfs_mdt_write_page() to use a folioMatthew Wilcox (Oracle)1-6/+7
2023-12-10nilfs2: convert nilfs_writepage() to use a folioMatthew Wilcox (Oracle)1-4/+5
2023-12-10nilfs2: convert to nilfs_folio_buffers_clean()Matthew Wilcox (Oracle)3-12/+12
2023-12-10nilfs2: convert nilfs_forget_buffer to use a folioMatthew Wilcox (Oracle)1-5/+5
2023-12-10nilfs2: convert nilfs_segctor_complete_write to use foliosMatthew Wilcox (Oracle)1-28/+21
2023-12-10nilfs2: convert nilfs_abort_logs to use foliosMatthew Wilcox (Oracle)1-14/+14
2023-12-10nilfs2: add nilfs_end_folio_io()Matthew Wilcox (Oracle)1-14/+22
2023-12-10fs/nilfs2: use standard array-copy-functionPhilipp Stanner1-6/+4
2023-12-06nilfs2: prevent WARNING in nilfs_sufile_set_segment_usage()Ryusuke Konishi1-7/+35
2023-12-06nilfs2: fix missing error check for sb_set_blocksize callRyusuke Konishi1-1/+5
2023-11-21fs: Rename mapping private membersMatthew Wilcox (Oracle)1-2/+2
2023-11-18nilfs2: simplify device handlingJan Kara1-8/+0
2023-11-02Merge tag 'mm-stable-2023-11-01-14-33' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds4-84/+76
2023-10-25buffer: remove folio_create_empty_buffers()Matthew Wilcox (Oracle)3-4/+4
2023-10-25nilfs2: convert nilfs_lookup_dirty_data_buffers to use folio_create_empty_buf...Matthew Wilcox (Oracle)1-4/+3
2023-10-25nilfs2: remove nilfs_page_get_nth_blockMatthew Wilcox (Oracle)1-6/+0
2023-10-25nilfs2: convert nilfs_mdt_get_frozen_buffer to use a folioMatthew Wilcox (Oracle)1-7/+9
2023-10-25nilfs2: convert nilfs_mdt_forget_block() to use a folioMatthew Wilcox (Oracle)1-16/+14
2023-10-25nilfs2: convert nilfs_copy_page() to nilfs_copy_folio()Matthew Wilcox (Oracle)1-24/+26
2023-10-25nilfs2: convert nilfs_grab_buffer() to use a folioMatthew Wilcox (Oracle)1-13/+13
2023-10-25nilfs2: convert nilfs_mdt_freeze_buffer to use a folioMatthew Wilcox (Oracle)1-9/+11
2023-10-25buffer: add get_nth_bh()Matthew Wilcox (Oracle)1-6/+1
2023-10-18nilfs2: convert to new timestamp accessorsJeff Layton2-13/+13
2023-09-29nilfs2: fix potential use after free in nilfs_gccache_submit_read_data()Pan Bian1-3/+3
2023-08-29Merge tag 'for-6.6/block-2023-08-28' of git://git.kernel.dk/linuxLinus Torvalds2-1/+2
2023-08-29Merge tag 'mm-nonmm-stable-2023-08-28-22-48' of git://git.kernel.org/pub/scm/...Linus Torvalds2-3/+7
2023-08-28Merge tag 'v6.6-vfs.super' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds1-51/+30
2023-08-28Merge tag 'v6.6-vfs.ctime' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds4-14/+14
2023-08-21nilfs2: fix WARNING in mark_buffer_dirty due to discarded buffer reuseRyusuke Konishi2-3/+7
2023-08-21nilfs2: fix general protection fault in nilfs_lookup_dirty_data_buffers()Ryusuke Konishi1-0/+5
2023-08-10nilfs2: use setup_bdev_super to de-duplicate the mount codeChristoph Hellwig1-51/+30
2023-08-04nilfs2: fix use-after-free of nilfs_root in dirtying inodes via iputRyusuke Konishi3-0/+12
2023-08-02fs: add CONFIG_BUFFER_HEADChristoph Hellwig1-0/+1
2023-08-02fs: rename and move block_page_mkwrite_returnChristoph Hellwig1-1/+1
2023-07-24nilfs2: convert to ctime accessor functionsJeff Layton4-14/+14
2023-06-26Merge tag 'for-6.5/block-2023-06-23' of git://git.kernel.dk/linuxLinus Torvalds1-8/+4
2023-06-26Merge tag 'for-6.5/splice-2023-06-23' of git://git.kernel.dk/linuxLinus Torvalds1-1/+1
2023-06-19nilfs2: prevent general protection fault in nilfs_clear_dirty_page()Ryusuke Konishi1-1/+9
2023-06-19nilfs2: fix buffer corruption due to concurrent device readsRyusuke Konishi3-1/+35
2023-06-12nilfs2: reject devices with insufficient block countRyusuke Konishi1-1/+42
2023-06-12nilfs2: fix possible out-of-bounds segment allocation in resize ioctlRyusuke Konishi1-0/+9
2023-06-12nilfs2: fix incomplete buffer cleanup in nilfs_btnode_abort_change_key()Ryusuke Konishi1-2/+10
2023-06-12fs: remove sb->s_modeChristoph Hellwig1-1/+0
2023-06-12block: add a sb_open_mode helperChristoph Hellwig1-5/+2
2023-06-12block: use the holder as indication for exclusive opensChristoph Hellwig1-3/+3
2023-06-05block: introduce holder opsChristoph Hellwig1-1/+1
2023-05-24splice: Use filemap_splice_read() instead of generic_file_splice_read()David Howells1-1/+1
2023-05-17nilfs2: fix use-after-free bug of nilfs_root in nilfs_evict_inode()Ryusuke Konishi1-0/+18
2023-05-06nilfs2: do not write dirty data after degenerating to read-onlyRyusuke Konishi1-1/+4
2023-05-06nilfs2: fix infinite loop in nilfs_mdt_get_block()Ryusuke Konishi1-4/+12
2023-04-18sync mm-stable with mm-hotfixes-stable to pick up depended-upon upstream changesAndrew Morton1-0/+20
2023-04-18nilfs2: initialize unused bytes in segment summary blocksRyusuke Konishi1-0/+20
2023-04-16sync mm-stable with mm-hotfixes-stable to pick up depended-upon upstream changesAndrew Morton5-7/+12
2023-04-05mm: return an ERR_PTR from __filemap_get_folioChristoph Hellwig1-3/+3
2023-04-05nilfs2: fix sysfs interface lifetimeRyusuke Konishi2-5/+9
2023-04-05nilfs2: initialize "struct nilfs_binfo_dat"->bi_pad fieldTetsuo Handa2-0/+2
2023-04-05nilfs2: fix potential UAF of struct nilfs_sc_info in nilfs_segctor_thread()Ryusuke Konishi1-2/+1
2023-03-23nilfs2: fix kernel-infoleak in nilfs_ioctl_wrap_copy()Ryusuke Konishi1-1/+1
2023-02-23Merge tag 'mm-nonmm-stable-2023-02-20-15-29' of git://git.kernel.org/pub/scm/...Linus Torvalds1-10/+28
2023-02-23Merge tag 'mm-stable-2023-02-20-13-37' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds6-63/+66
2023-02-20Merge tag 'for-6.3/dio-2023-02-16' of git://git.kernel.dk/linuxLinus Torvalds1-0/+1
2023-02-20Merge tag 'fs.idmapped.v6.3' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds4-15/+15
2023-02-17nilfs2: fix underflow in second superblock position calculationsRyusuke Konishi3-1/+23
2023-02-02nilfs2: prevent WARNING in nilfs_dat_commit_end()Ryusuke Konishi1-0/+11
2023-02-02nilfs2: replace WARN_ONs for invalid DAT metadata block requestsRyusuke Konishi1-10/+17
2023-02-02nilfs2: convert nilfs_clear_dirty_pages() to use filemap_get_folios_tag()Vishal Moola (Oracle)1-10/+10
2023-02-02nilfs2: convert nilfs_copy_dirty_pages() to use filemap_get_folios_tag()Vishal Moola (Oracle)1-19/+20
2023-02-02nilfs2: convert nilfs_btree_lookup_dirty_buffers() to use filemap_get_folios_...Vishal Moola (Oracle)1-7/+7
2023-02-02nilfs2: convert nilfs_lookup_dirty_node_buffers() to use filemap_get_folios_t...Vishal Moola (Oracle)1-8/+7
2023-02-02nilfs2: convert nilfs_lookup_dirty_data_buffers() to use filemap_get_folios_t...Vishal Moola (Oracle)1-13/+16
2023-01-26fs: build the legacy direct I/O code conditionallyChristoph Hellwig1-0/+1
2023-01-19fs: port inode_init_owner() to mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->permission() to pass mnt_idmapChristian Brauner2-3/+3
2023-01-19fs: port ->fileattr_set() to pass mnt_idmapChristian Brauner2-2/+2
2023-01-19fs: port ->rename() to pass mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->mknod() to pass mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->mkdir() to pass mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->symlink() to pass mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->create() to pass mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->setattr() to pass mnt_idmapChristian Brauner2-4/+4
2023-01-18nilfs2: replace obvious uses of b_page with b_folioMatthew Wilcox (Oracle)5-6/+6
2023-01-11nilfs2: fix general protection fault in nilfs_btree_insert()Ryusuke Konishi1-3/+12
2022-12-25treewide: Convert del_timer*() to timer_shutdown*()Steven Rostedt (Google)1-1/+1
2022-12-12Merge tag 'mm-nonmm-stable-2022-12-12' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-8/+65
2022-11-30nilfs2: fix NULL pointer dereference in nilfs_palloc_commit_free_entry()ZhangPeng1-0/+7
2022-11-22nilfs2: fix nilfs_sufile_mark_dirty() not set segment usage as dirtyChen Zhongjin1-0/+8
2022-11-18nilfs2: fix shift-out-of-bounds due to too large exponent of block sizeRyusuke Konishi1-4/+38
2022-11-18nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset()Ryusuke Konishi1-4/+27
2022-11-08nilfs2: fix use-after-free bug of ns_writer on remountRyusuke Konishi2-9/+8
2022-11-08nilfs2: fix deadlock in nilfs_count_free_blocks()Ryusuke Konishi1-2/+0
2022-10-12Merge tag 'mm-hotfixes-stable-2022-10-11' of git://git.kernel.org/pub/scm/lin...Linus Torvalds2-5/+21
2022-10-12Merge tag 'mm-nonmm-stable-2022-10-11' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds2-11/+13
2022-10-11nilfs2: fix leak of nilfs_root in case of writer thread creation failureRyusuke Konishi1-4/+3
2022-10-11nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level()Ryusuke Konishi1-0/+2
2022-10-11nilfs2: fix use-after-free bug of struct nilfs_rootRyusuke Konishi1-1/+16
2022-10-11nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failureRyusuke Konishi1-4/+10
2022-10-03nilfs2: remove the unneeded result variableye xingchen1-3/+1
2022-10-03nilfs2: delete unnecessary checks before brelse()Minghao Chi1-4/+2
2022-09-11nilfs2: convert nilfs_find_uncommited_extent() to use filemap_get_folios_cont...Vishal Moola (Oracle)1-27/+18
2022-08-03Merge tag 'folio-6.0' of git://git.infradead.org/users/willy/pagecacheLinus Torvalds2-31/+31
2022-08-02Merge tag 'for-5.20/block-2022-07-29' of git://git.kernel.dk/linux-blockLinus Torvalds5-22/+22
2022-07-14fs/nilfs2: Use the enum req_op and blk_opf_t typesBart Van Assche5-21/+21
2022-07-14fs/buffer: Combine two submit_bh() and ll_rw_block() argumentsBart Van Assche3-3/+3
2022-07-03nilfs2: fix incorrect masking of permission flags for symlinksRyusuke Konishi1-0/+3
2022-06-29nilfs2: Remove check for PageErrorMatthew Wilcox (Oracle)1-1/+1
2022-06-29nilfs2: Convert nilfs_copy_back_pages() to use filemap_get_folios()Matthew Wilcox (Oracle)1-30/+30
2022-05-24Merge tag 'folio-5.19' of git://git.infradead.org/users/willy/pagecacheLinus Torvalds2-15/+14
2022-05-12nilfs2: Fix some kernel-doc commentsYang Li1-6/+7
2022-05-09nilfs2: Remove comment about releasepageMatthew Wilcox (Oracle)1-1/+0
2022-05-09fs: Convert mpage_readpage to mpage_read_folioMatthew Wilcox (Oracle)1-5/+5
2022-05-08fs: Remove flags parameter from aops->write_beginMatthew Wilcox (Oracle)1-1/+1
2022-05-08fs: Remove aop flags parameter from block_write_begin()Matthew Wilcox (Oracle)2-3/+2
2022-04-17block: decouple REQ_OP_SECURE_ERASE from REQ_OP_DISCARDChristoph Hellwig2-4/+4
2022-04-17block: add a bdev_discard_granularity helperChristoph Hellwig1-2/+2
2022-04-17block: remove QUEUE_FLAG_DISCARDChristoph Hellwig1-1/+1
2022-04-01nilfs2: get rid of nilfs_mapping_init()Ryusuke Konishi2-10/+0
2022-04-01nilfs2: fix lockdep warnings during disk space reclamationRyusuke Konishi5-21/+92
2022-04-01nilfs2: fix lockdep warnings in page operations for btree nodesRyusuke Konishi10-50/+154
2022-03-22Merge tag 'folio-5.18b' of git://git.infradead.org/users/willy/pagecacheLinus Torvalds2-22/+21
2022-03-22Merge branch 'akpm' (patches from Andrew)Linus Torvalds2-17/+1
2022-03-22fs: allocate inode by using alloc_inode_sb()Muchun Song1-1/+1
2022-03-22remove bdi_congested() and wb_congested() and related functionsNeilBrown1-16/+0
2022-03-16fs: Convert __set_page_dirty_buffers to block_dirty_folioMatthew Wilcox (Oracle)1-2/+2
2022-03-16nilfs: Convert nilfs_set_page_dirty() to nilfs_dirty_folio()Matthew Wilcox (Oracle)1-20/+18
2022-03-15fs: Turn block_invalidatepage into block_invalidate_folioMatthew Wilcox (Oracle)2-1/+2
2022-02-27nilfs2: pass the operation to bio_allocChristoph Hellwig1-11/+9
2022-02-02block: pass a block_device and opf to bio_allocChristoph Hellwig1-2/+2
2022-02-02nilfs2: remove nilfs_alloc_seg_bioChristoph Hellwig1-27/+4
2022-01-20Merge branch 'akpm' (patches from Andrew)Linus Torvalds1-2/+2
2022-01-20nilfs2: remove redundant pointer sbufsColin Ian King1-2/+2
2021-12-29nilfs2: use default_groups in kobj_typeGreg Kroah-Hartman1-3/+10
2021-11-09Merge branch 'akpm' (patches from Andrew)Linus Torvalds39-77/+77
2021-11-09nilfs2: remove filenames from file commentsRyusuke Konishi39-39/+39
2021-11-09nilfs2: replace snprintf in show functions with sysfs_emitQing Wang1-38/+38
2021-10-18nilfs2: use bdev_nr_bytes instead of open coding itChristoph Hellwig3-3/+3
2021-09-08Merge branch 'akpm' (patches from Andrew)Linus Torvalds2-20/+15
2021-09-08nilfs2: use refcount_dec_and_lock() to fix potential UAFZhen Lei1-5/+4
2021-09-08nilfs2: fix memory leak in nilfs_sysfs_delete_snapshot_groupNanyong Sun1-1/+1
2021-09-08nilfs2: fix memory leak in nilfs_sysfs_create_snapshot_groupNanyong Sun1-2/+2
2021-09-08nilfs2: fix memory leak in nilfs_sysfs_delete_##name##_groupNanyong Sun1-1/+1