Linux-Fsdevel Archive on lore.kernel.org
help / color / mirror / Atom feed
 messages from 2018-01-09 14:10:55 to 2018-01-11 05:31:02 UTC [more...]

[PATCH v2 0/7] pipe: buffer limits fixes and cleanups
 2018-01-11  5:29 UTC  (8+ messages)
` [PATCH v2 1/7] pipe, sysctl: drop 'min' parameter from pipe-max-size converter
` [PATCH v2 2/7] pipe, sysctl: remove pipe_proc_fn()
` [PATCH v2 3/7] pipe: actually allow root to exceed the pipe buffer limits
` [PATCH v2 4/7] pipe: fix off-by-one error when checking "
` [PATCH v2 5/7] pipe: reject F_SETPIPE_SZ with size over UINT_MAX
` [PATCH v2 6/7] pipe: simplify round_pipe_size()
` [PATCH v2 7/7] pipe: read buffer limits atomically

aio poll, io_pgetevents and a new in-kernel poll API V2
 2018-01-11  5:22 UTC  (44+ messages)
` [PATCH 01/32] fs: update documentation for __poll_t
` [PATCH 02/32] fs: add new vfs_poll and file_can_poll helpers
` [PATCH 03/32] fs: introduce new ->get_poll_head and ->poll_mask methods
` [PATCH 04/32] net: refactor socket_poll
` [PATCH 05/32] net: add support for ->poll_mask in proto_ops
` [PATCH 06/32] net: remove sock_no_poll
` [PATCH 07/32] net/tcp: convert to ->poll_mask
` [PATCH 08/32] net/unix: "
` [PATCH 09/32] net: convert datagram_poll users tp ->poll_mask
` [PATCH 10/32] net/dccp: convert to ->poll_mask
` [PATCH 11/32] net/atm: "
` [PATCH 12/32] net/vmw_vsock: "
` [PATCH 13/32] net/tipc: "
` [PATCH 14/32] net/sctp: "
` [PATCH 15/32] net/bluetooth: "
` [PATCH 16/32] net/caif: "
` [PATCH 17/32] net/nfc: "
` [PATCH 18/32] net/phonet: "
` [PATCH 19/32] net/iucv: "
` [PATCH 20/32] net/rxrpc: "
` [PATCH 21/32] pipe: "
` [PATCH 22/32] eventfd: switch "
` [PATCH 23/32] timerfd: convert "
` [PATCH 24/32] aio: don't print the page size at boot time
` [PATCH 25/32] aio: remove an outdated comment in aio_complete
` [PATCH 26/32] aio: refactor read/write iocb setup
` [PATCH 27/32] aio: sanitize ki_list handling
` [PATCH 28/32] aio: simplify cancellation
` [PATCH 29/32] aio: delete iocbs from the active_reqs list in kiocb_cancel
` [PATCH 30/32] aio: add delayed cancel support
` [PATCH 31/32] aio: implement IOCB_CMD_POLL
` [PATCH 32/32] aio: implement io_pgetevents

[PATCH v5 00/38] Hardened usercopy whitelisting
 2018-01-11  2:03 UTC  (39+ messages)
` [PATCH 01/38] usercopy: Remove pointer from overflow report
` [PATCH 02/38] usercopy: Enhance and rename report_usercopy()
` [PATCH 03/38] usercopy: Include offset in hardened usercopy report
` [PATCH 04/38] lkdtm/usercopy: Adjust test to include an offset to check reporting
` [PATCH 05/38] stddef.h: Introduce sizeof_field()
` [PATCH 06/38] usercopy: Prepare for usercopy whitelisting
` [PATCH 07/38] usercopy: WARN() on slab cache usercopy region violations
` [PATCH 08/38] usercopy: Allow strict enforcement of whitelists
` [PATCH 09/38] usercopy: Mark kmalloc caches as usercopy caches
` [PATCH 10/38] dcache: Define usercopy region in dentry_cache slab cache
` [PATCH 11/38] vfs: Define usercopy region in names_cache slab caches
` [PATCH 12/38] vfs: Copy struct mount.mnt_id to userspace using put_user()
` [PATCH 13/38] ext4: Define usercopy region in ext4_inode_cache slab cache
` [PATCH 14/38] ext2: Define usercopy region in ext2_inode_cache "
` [PATCH 15/38] jfs: Define usercopy region in jfs_ip "
` [PATCH 16/38] befs: Define usercopy region in befs_inode_cache "
` [PATCH 17/38] exofs: Define usercopy region in exofs_inode_cache "
` [PATCH 18/38] orangefs: Define usercopy region in orangefs_inode_cache "
` [PATCH 19/38] ufs: Define usercopy region in ufs_inode_cache "
` [PATCH 20/38] vxfs: Define usercopy region in vxfs_inode "
` [PATCH 21/38] cifs: Define usercopy region in cifs_request "
` [PATCH 22/38] scsi: Define usercopy region in scsi_sense_cache "
` [PATCH 23/38] net: Define usercopy region in struct proto "
` [PATCH 24/38] ip: Define usercopy region in IP "
` [PATCH 25/38] caif: Define usercopy region in caif "
` [PATCH 26/38] sctp: Define usercopy region in SCTP "
` [PATCH 27/38] sctp: Copy struct sctp_sock.autoclose to userspace using put_user()
` [PATCH 28/38] net: Restrict unwhitelisted proto caches to size 0
` [PATCH 29/38] fork: Define usercopy region in mm_struct slab caches
` [PATCH 30/38] fork: Define usercopy region in thread_stack "
` [PATCH 31/38] fork: Provide usercopy whitelisting for task_struct
` [PATCH 32/38] x86: Implement thread_struct whitelist for hardened usercopy
` [PATCH 33/38] arm64: "
` [PATCH 34/38] arm: "
` [PATCH 35/38] kvm: whitelist struct kvm_vcpu_arch
` [PATCH 36/38] kvm: x86: fix KVM_XEN_HVM_CONFIG ioctl
` [PATCH 37/38] usercopy: Restrict non-usercopy caches to size 0
` [PATCH 38/38] lkdtm: Update usercopy tests for whitelisting

[PATCH v4 00/36] Hardened usercopy whitelisting
 2018-01-10 21:15 UTC  (44+ messages)
` [PATCH 01/36] usercopy: Remove pointer from overflow report
` [PATCH 02/36] usercopy: Include offset in "
` [PATCH 03/36] lkdtm/usercopy: Adjust test to include an offset to check reporting
` [PATCH 04/36] usercopy: Prepare for usercopy whitelisting
` [PATCH 05/36] usercopy: WARN() on slab cache usercopy region violations
` [PATCH 06/36] usercopy: Mark kmalloc caches as usercopy caches
` [PATCH 07/36] dcache: Define usercopy region in dentry_cache slab cache
` [PATCH 08/36] vfs: Define usercopy region in names_cache slab caches
` [PATCH 09/36] vfs: Copy struct mount.mnt_id to userspace using put_user()
` [PATCH 10/36] ext4: Define usercopy region in ext4_inode_cache slab cache
` [PATCH 11/36] ext2: Define usercopy region in ext2_inode_cache "
` [PATCH 12/36] jfs: Define usercopy region in jfs_ip "
` [PATCH 13/36] befs: Define usercopy region in befs_inode_cache "
` [PATCH 14/36] exofs: Define usercopy region in exofs_inode_cache "
` [PATCH 15/36] orangefs: Define usercopy region in orangefs_inode_cache "
` [PATCH 16/36] ufs: Define usercopy region in ufs_inode_cache "
` [PATCH 17/36] vxfs: Define usercopy region in vxfs_inode "
` [PATCH 18/36] cifs: Define usercopy region in cifs_request "
` [PATCH 19/36] scsi: Define usercopy region in scsi_sense_cache "
` [PATCH 20/36] net: Define usercopy region in struct proto "
` [PATCH 21/36] ip: Define usercopy region in IP "
` [PATCH 22/36] caif: Define usercopy region in caif "
` [PATCH 23/36] sctp: Define usercopy region in SCTP "
` [PATCH 24/36] sctp: Copy struct sctp_sock.autoclose to userspace using put_user()
` [PATCH 25/36] net: Restrict unwhitelisted proto caches to size 0
` [PATCH 26/36] fork: Define usercopy region in mm_struct slab caches
` [PATCH 27/36] fork: Define usercopy region in thread_stack "
` [PATCH 28/36] fork: Provide usercopy whitelisting for task_struct
` [PATCH 29/36] x86: Implement thread_struct whitelist for hardened usercopy
` [PATCH 30/36] arm64: "
` [PATCH 31/36] arm: "
` [PATCH 32/36] kvm: whitelist struct kvm_vcpu_arch
` [PATCH 33/36] kvm: x86: fix KVM_XEN_HVM_CONFIG ioctl
` [PATCH 34/36] usercopy: Allow strict enforcement of whitelists
` [PATCH 35/36] usercopy: Restrict non-usercopy caches to size 0
` [PATCH 36/36] lkdtm: Update usercopy tests for whitelisting

[PATCH v2] fs/mbcache: make sure mb_cache_count() not return negative value
 2018-01-10 20:11 UTC  (6+ messages)

aio poll, io_pgetevents and a new in-kernel poll API
 2018-01-10 17:42 UTC  (22+ messages)
` [PATCH 03/31] fs: introduce new ->get_poll_head and ->poll_mask methods
` [PATCH 04/31] net: add support for ->poll_mask in proto_ops
` [PATCH 23/31] aio: don't print the page size at boot time
` [PATCH 24/31] aio: remove an outdated comment in aio_complete
` [PATCH 31/31] aio: implement io_pgetevents

[PATCH 0/7] pipe: buffer limits fixes and cleanups
 2018-01-10 17:30 UTC  (16+ messages)
` [PATCH 1/7] pipe, sysctl: drop 'min' parameter from pipe-max-size converter
` [PATCH 3/7] pipe: actually allow root to exceed the pipe buffer limits
` [PATCH 5/7] pipe: reject F_SETPIPE_SZ with size over UINT_MAX
` [PATCH 6/7] pipe: simplify round_pipe_size()
` [PATCH 7/7] pipe: read buffer limits atomically

[PATCH v6 00/11] Intel SGX Driver
 2018-01-10 16:16 UTC  (2+ messages)

[f2fs-dev] [PATCH RFC v2] mkfs.f2fs: binary decision to calculate SIT/NAT/SSA
 2018-01-10 16:00 UTC  (3+ messages)

[PATCH V4 00/45] block: support multipage bvec
 2018-01-10 15:41 UTC  (9+ messages)
` [PATCH V4 13/45] block: blk-merge: try to make front segments in full size

[PATCH v5 00/19] fs: rework and optimize i_version handling in filesystems
 2018-01-10 14:12 UTC  (17+ messages)
` [PATCH v5 01/19] fs: new API for handling inode->i_version
` [PATCH v5 02/19] fs: don't take the i_lock in inode_inc_iversion
` [PATCH v5 06/19] btrfs: convert to new i_version API
` [PATCH v5 09/19] ext4: "
` [PATCH v5 12/19] ocfs2: "
` [PATCH v5 14/19] xfs: "
` [PATCH v5 15/19] IMA: switch IMA over "
` [PATCH v5 16/19] fs: only set S_VERSION when updating times if necessary
` [PATCH v5 17/19] xfs: avoid setting XFS_ILOG_CORE if i_version doesn't need incrementing
` [PATCH v5 18/19] btrfs: only dirty the inode in btrfs_update_time if something was changed
` [PATCH v5 19/19] fs: handle inode->i_version more efficiently

Making AppArmor work with new mount context API
 2018-01-10 12:05 UTC  (2+ messages)

RFC(V3): Audit Kernel Container IDs
 2018-01-10  7:00 UTC  (5+ messages)

KASAN: use-after-free Read in handle_userfault
 2018-01-09 21:59 UTC  (4+ messages)

[PATCH 03/11] fs: Allow superblock owner to change ownership of inodes
 2018-01-09 17:23 UTC  (4+ messages)

mmotm 2018-01-04-16-19 uploaded
 2018-01-09 16:13 UTC  (10+ messages)
      ` ppc elf_map breakage with MAP_FIXED_NOREPLACE (was: Re: mmotm 2018-01-04-16-19 uploaded)
          ` ppc elf_map breakage with MAP_FIXED_NOREPLACE

[PATCH] mbcache: convert mb_cache_entry.e_refcnt from atomic_t to refcount_t
 2018-01-09 15:05 UTC  (4+ messages)

[PATCH v6 00/11] Intel SGX Driver
 2018-01-09 14:27 UTC  (3+ messages)

[PATCH v6 00/11] Intel SGX Driver
 2018-01-09 14:25 UTC  (2+ messages)


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).