linux-f2fs-devel.lists.sourceforge.net archive mirror
 help / color / mirror / Atom feed
 messages from 2019-01-22 14:51:01 to 2019-02-20 00:41:16 UTC [more...]

[RFC PATCH 00/10] Consolidate Post read processing code
 2019-02-20  0:41 UTC  (18+ messages)
` [RFC PATCH 01/10] ext4: use IS_ENCRYPTED() to check encryption status
` [RFC PATCH 02/10] f2fs: "
` [RFC PATCH 03/10] fscrypt: remove filesystem specific build config option
` [RFC PATCH 04/10] Consolidate "post read processing" into a new file
` [RFC PATCH 05/10] fsverity: Add call back to decide if verity check has to be performed
` [RFC PATCH 06/10] Introduce REQ_POST_READ_PROC bio flag
` [RFC PATCH 07/10] fsverity: Add call back to determine readpage limit
` [RFC PATCH 08/10] fsverity: Add call back to verify file holes
` [RFC PATCH 09/10] fs/mpage.c: Integrate post read processing
` [RFC PATCH 10/10] ext4: Wire up ext4_readpage[s] to use mpage_readpage[s]

[PATCH] f2fs: make fault injection covering __submit_flush_wait()
 2019-02-19  9:08 UTC 

[PATCH] f2fs: fix to retry fill_super only if recovery failed
 2019-02-19  8:23 UTC 

[PATCH v4] f2fs: add bio cache for IPU
 2019-02-19  8:15 UTC 

[RFC PATCH 0/6] Allow setting file birth time with utimensat()
 2019-02-19  4:28 UTC  (25+ messages)
` [RFC PATCH 1/6] fs: add btime to struct iattr
` [RFC PATCH 2/6] fs: add AT_UTIME_BTIME for utimensat()
` [RFC PATCH 3/6] Btrfs: add support for setting btime
` [RFC PATCH 4/6] ext4: "
` [RFC PATCH 5/6] f2fs: "
` [RFC PATCH 6/6] xfs: "
` [PATCH] generic: add a test for AT_UTIME_BTIME
` [PATCH] utimensat2: document AT_UTIME_BTIME
` [PATCH] xfs_io: add AT_UTIME_BTIME support

[PATCH] f2fs: silence VM_WARN_ON_ONCE in mempool_alloc
 2019-02-19  3:37 UTC  (2+ messages)

[Bug 202495] New: oops in fs/f2fs/checkpoint.c:150 f2fs_is_valid_blkaddr
 2019-02-18 18:56 UTC  (5+ messages)
` [Bug 202495] "

[PATCH] f2fs: correct spelling mistake
 2019-02-18  9:12 UTC  (2+ messages)

[PATCH] f2fs: don't clear CP_QUOTA_NEED_FSCK_FLAG
 2019-02-18  9:10 UTC  (4+ messages)
` [f2fs-dev] "

[PATCH] f2fs: do not use mutex lock in atomic context
 2019-02-18  2:04 UTC  (7+ messages)
    ` [f2fs-dev] "

[PATCH] vfs: don't decrement i_nlink in d_tmpfile
 2019-02-17  0:26 UTC  (5+ messages)
` [PATCH v2] "

[PATCH v3] f2fs: rebuild nat_bits during umount
 2019-02-16 22:26 UTC 

Big Endian mount/fsck failing
 2019-02-15  8:39 UTC  (3+ messages)

[PATCH] f2fs: don't allow negative ->write_io_size_bits
 2019-02-14 16:16 UTC 

[PATCH] f2fs: don't allow negative ->write_io_size_bits
 2019-02-14 16:09 UTC  (5+ messages)

[PATCH v2] f2fs: fix to check inline_xattr_size boundary correctly
 2019-02-14 16:08 UTC 

f2fs:fix to data block override node segment by mistake
 2019-02-13  6:27 UTC  (5+ messages)
` [PATCH v2] f2fs: fix "

[PATCH 1/7] f2fs: run discard jobs when put_super
 2019-02-13  3:27 UTC  (17+ messages)
` [PATCH 2/7] f2fs: add quick mode of checkpoint=disable for QA
  ` [f2fs-dev] "
` [PATCH 3/7] f2fs: try to keep CP_TRIMMED_FLAG after successful umount
  ` [f2fs-dev] "
` [PATCH 4/7] f2fs: don't wake up too frequently, if there is lots of IOs
  ` [f2fs-dev] "
` [PATCH 5/7] f2fs: avoid null pointer exception in dcc_info
  ` [f2fs-dev] "
` [PATCH 6/7] f2fs: flush quota blocks after turnning it off
  ` [f2fs-dev] "
` [PATCH 7/7] f2fs: sync filesystem after roll-forward recovery
` [f2fs-dev] [PATCH 1/7] f2fs: run discard jobs when put_super

Proposal: Yet another possible fs-verity interface
 2019-02-12 18:42 UTC  (11+ messages)

[RFC PATCH v2 00/20] fscrypt: key management improvements
 2019-02-12  0:03 UTC  (24+ messages)
` [RFC PATCH v2 01/20] fs, fscrypt: move uapi definitions to new header <linux/fscrypt.h>
` [RFC PATCH v2 02/20] fscrypt: use FSCRYPT_ prefix for uapi constants
` [RFC PATCH v2 03/20] fscrypt: use FSCRYPT_* definitions, not FS_*
` [RFC PATCH v2 04/20] fs: add ->s_master_keys to struct super_block
` [RFC PATCH v2 05/20] fscrypt: add ->ci_inode to fscrypt_info
` [RFC PATCH v2 06/20] fscrypt: refactor v1 policy key setup into keysetup_legacy.c
` [RFC PATCH v2 07/20] fscrypt: add FS_IOC_ADD_ENCRYPTION_KEY ioctl
` [RFC PATCH v2 08/20] fs/inode.c: export inode_lru_list_del()
` [RFC PATCH v2 09/20] fs/inode.c: rename and export dispose_list()
` [RFC PATCH v2 10/20] fs/dcache.c: add shrink_dcache_inode()
` [RFC PATCH v2 11/20] fscrypt: add FS_IOC_REMOVE_ENCRYPTION_KEY ioctl
` [RFC PATCH v2 12/20] fscrypt: add FS_IOC_GET_ENCRYPTION_KEY_STATUS ioctl
` [RFC PATCH v2 13/20] fscrypt: add an HKDF-SHA512 implementation
` [RFC PATCH v2 14/20] fscrypt: v2 encryption policy support
` [RFC PATCH v2 15/20] fscrypt: allow unprivileged users to add/remove keys for v2 policies
` [RFC PATCH v2 16/20] fscrypt: require that key be added when setting a v2 encryption policy
` [RFC PATCH v2 17/20] ext4: wire up new fscrypt ioctls
` [RFC PATCH v2 18/20] f2fs: "
` [RFC PATCH v2 19/20] ubifs: "
` [RFC PATCH v2 20/20] fscrypt: document the new ioctls and policy version

Security fixes for 4.4 - f2fs
 2019-02-05 13:59 UTC  (5+ messages)

[PATCH] f2fs: fix potential data inconsistence of checkpoint
 2019-02-02  9:33 UTC 

Proposal: A new fs-verity interface
 2019-01-29 15:48 UTC  (9+ messages)

[PATCH AUTOSEL 3.18 16/61] f2fs: move dir data flush to write checkpoint process
 2019-01-28 16:25 UTC 

[PATCH AUTOSEL 4.4 20/80] f2fs: move dir data flush to write checkpoint process
 2019-01-28 16:23 UTC  (2+ messages)
` [PATCH AUTOSEL 4.4 21/80] f2fs: fix wrong return value of f2fs_acl_create

[PATCH AUTOSEL 4.9 026/107] f2fs: move dir data flush to write checkpoint process
 2019-01-28 16:19 UTC  (4+ messages)
` [PATCH AUTOSEL 4.9 027/107] f2fs: avoid build warn of fall_through
` [PATCH AUTOSEL 4.9 028/107] f2fs: fix wrong return value of f2fs_acl_create
` [PATCH AUTOSEL 4.9 093/107] f2fs: fix sbi->extent_list corruption issue

[PATCH AUTOSEL 4.14 045/170] f2fs: move dir data flush to write checkpoint process
 2019-01-28 16:11 UTC  (5+ messages)
` [PATCH AUTOSEL 4.14 046/170] f2fs: avoid build warn of fall_through
` [PATCH AUTOSEL 4.14 047/170] f2fs: fix race between write_checkpoint and write_begin
` [PATCH AUTOSEL 4.14 048/170] f2fs: fix wrong return value of f2fs_acl_create
` [PATCH AUTOSEL 4.14 150/170] f2fs: fix sbi->extent_list corruption issue

[PATCH AUTOSEL 4.19 072/258] f2fs: move dir data flush to write checkpoint process
 2019-01-28 15:58 UTC  (6+ messages)
` [PATCH AUTOSEL 4.19 073/258] f2fs: avoid build warn of fall_through
` [PATCH AUTOSEL 4.19 074/258] f2fs: fix race between write_checkpoint and write_begin
` [PATCH AUTOSEL 4.19 075/258] f2fs: fix wrong return value of f2fs_acl_create
` [PATCH AUTOSEL 4.19 227/258] f2fs: fix use-after-free issue when accessing sbi->stat_info
` [PATCH AUTOSEL 4.19 230/258] f2fs: fix sbi->extent_list corruption issue

[PATCH AUTOSEL 4.20 085/304] f2fs: avoid GC causing encrypted file corrupted
 2019-01-28 15:43 UTC  (8+ messages)
` [PATCH AUTOSEL 4.20 086/304] f2fs: move dir data flush to write checkpoint process
` [PATCH AUTOSEL 4.20 087/304] f2fs: avoid build warn of fall_through
` [PATCH AUTOSEL 4.20 088/304] f2fs: fix race between write_checkpoint and write_begin
` [PATCH AUTOSEL 4.20 089/304] f2fs: fix wrong return value of f2fs_acl_create
` [PATCH AUTOSEL 4.20 178/304] f2fs: fix to reorder set_page_dirty and wait_on_page_writeback
` [PATCH AUTOSEL 4.20 270/304] f2fs: fix use-after-free issue when accessing sbi->stat_info
` [PATCH AUTOSEL 4.20 273/304] f2fs: fix sbi->extent_list corruption issue

[PATCH] f2fs: use xattr_prefix to wrap up
 2019-01-26  2:49 UTC  (2+ messages)

[PATCH] f2fs: fix typos in code comments
 2019-01-26  2:49 UTC  (2+ messages)

[PATCH 1/2] f2fs: run discard jobs when put_super
 2019-01-25  1:38 UTC  (9+ messages)
` [PATCH 2/2] f2fs: sync filesystem after roll-forward recovery
  ` [f2fs-dev] "
` [f2fs-dev] [PATCH 1/2] f2fs: run discard jobs when put_super
` [PATCH 1/2 v2] "

[PATCH] fscrypt: remove filesystem specific build config option
 2019-01-24 21:22 UTC  (5+ messages)
` [f2fs-dev] "

[RFC][PATCH v5 06/09] f2fs: use common file type conversion
 2019-01-24  9:27 UTC  (3+ messages)

[PATCH] f2fs: fix to document inline_xattr_size option
 2019-01-24  9:18 UTC 

[PATCH] f2fs: jump to label 'free_node_inode' when failing from d_make_root()
 2019-01-24  8:43 UTC  (2+ messages)

[PATCH] f2fs: fix to check inline_xattr_size boundary correctly
 2019-01-24  7:18 UTC 

[PATCH v3] fsck.f2fs: check validity of nat journal
 2019-01-23  2:02 UTC  (3+ messages)

[PATCH] fscrypt: return -EXDEV for incompatible rename or link into encrypted dir
 2019-01-23  0:21 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).