public inbox for linux-unionfs@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2018-03-29 14:18:53 to 2018-04-13 08:25:23 UTC [more...]

[RFC PATCH 00/35] overlayfs: stack file operations
 2018-04-13  8:25 UTC  (40+ messages)
` [RFC PATCH 01/35] vfs: clean up dedup
` [RFC PATCH 02/35] vfs: add path_open()
` [RFC PATCH 03/35] vfs: optionally don't account file in nr_files
` [RFC PATCH 04/35] ovl: copy up times
` [RFC PATCH 05/35] ovl: copy up inode flags
` [RFC PATCH 06/35] Revert "Revert "ovl: get_write_access() in truncate""
` [RFC PATCH 07/35] ovl: copy up file size as well
` [RFC PATCH 08/35] ovl: deal with overlay files in ovl_d_real()
` [RFC PATCH 09/35] ovl: stack file ops
` [RFC PATCH 10/35] ovl: add helper to return real file
` [RFC PATCH 11/35] ovl: readd read_iter
` [RFC PATCH 12/35] ovl: readd write_iter
` [RFC PATCH 13/35] ovl: readd fsync
` [RFC PATCH 14/35] ovl: readd mmap
` [RFC PATCH 15/35] ovl: readd fallocate
` [RFC PATCH 16/35] ovl: readd lsattr/chattr support
` [RFC PATCH 17/35] ovl: readd fiemap
` [RFC PATCH 18/35] ovl: readd O_DIRECT support
` [RFC PATCH 19/35] ovl: readd reflink/copyfile/dedup support
` [RFC PATCH 20/35] vfs: don't open real
` [RFC PATCH 21/35] vfs: add f_op->pre_mmap()
` [RFC PATCH 22/35] ovl: copy-up on MAP_SHARED
` [RFC PATCH 23/35] vfs: simplify dentry_open()
` [RFC PATCH 24/35] Revert "ovl: fix relatime for directories"
` [RFC PATCH 25/35] Revert "vfs: update ovl inode before relatime check"
` [RFC PATCH 26/35] Revert "ovl: fix may_write_real() for overlayfs directories"
` [RFC PATCH 27/35] Revert "ovl: don't allow writing ioctl on lower layer"
` [RFC PATCH 28/35] Revert "vfs: add flags to d_real()"
` [RFC PATCH 29/35] Revert "vfs: do get_write_access() on upper layer of overlayfs"
` [RFC PATCH 30/35] Revert "vfs: make argument of d_real_inode() const"
` [RFC PATCH 31/35] Revert "vfs: add d_real_inode() helper"
` [RFC PATCH 32/35] Partially revert "locks: fix file locking on overlayfs"
` [RFC PATCH 33/35] Revert "fsnotify: support overlayfs"
` [RFC PATCH 34/35] vfs: simplify d_op->d_real()
` [RFC PATCH 35/35] ovl: fix documentation of non-standard behavior

[PATCH v3 1/2] ovl: adjust option parsing for supporting remount
 2018-04-13  7:10 UTC  (5+ messages)
` [PATCH v3 2/2] ovl: return error when specifying unchangeable options in remount

[miklos-vfs:overlayfs-rorw 35/54] fs/overlayfs/file.c:315:6: sparse: symbol 'ovl_ioctl' was not declared. Should it be static?
 2018-04-12 16:13 UTC  (2+ messages)
` [RFC PATCH miklos-vfs] ovl: ovl_ioctl() can be static

[miklos-vfs:overlayfs-rorw 34/54] fs/overlayfs/file.c:271:6: sparse: symbol 'ovl_fallocate' was not declared. Should it be static?
 2018-04-12 15:54 UTC  (2+ messages)
` [RFC PATCH miklos-vfs] ovl: ovl_fallocate() can be static

[PATCH v2] ovl: set lower layer st_dev only if setting lower st_ino
 2018-04-12 12:52 UTC  (3+ messages)

[PATCH] ovl: set lower layer st_dev only if setting lower st_ino
 2018-04-11 17:11 UTC  (2+ messages)

[PATCH v13 00/28] overlayfs: Delayed copy up of data
 2018-04-11 17:01 UTC  (91+ messages)
` [PATCH v13 01/28] ovl: Set OVL_INDEX flag in ovl_get_inode()
` [PATCH v13 02/28] ovl: Initialize ovl_inode->redirect "
` [PATCH v13 03/28] ovl: Rename local variable locked to new_locked
` [PATCH v13 04/28] ovl: Provide a mount option metacopy=on/off for metadata copyup
` [PATCH v13 05/28] ovl: During copy up, first copy up metadata and then data
` [PATCH v13 06/28] ovl: Move the copy up helpers to copy_up.c
` [PATCH v13 07/28] ovl: Copy up only metadata during copy up where it makes sense
` [PATCH v13 08/28] ovl: Add helper ovl_already_copied_up()
` [PATCH v13 09/28] ovl: A new xattr OVL_XATTR_METACOPY for file on upper
` [PATCH v13 10/28] ovl: Modify ovl_lookup() and friends to lookup metacopy dentry
` [PATCH v13 11/28] ovl: Copy up meta inode data from lowest data inode
` [PATCH v13 12/28] ovl: Fix ovl_getattr() to get number of blocks from lower
` [PATCH v13 13/28] ovl: Add helper ovl_dentry_lowerdata() to get lower data dentry
` [PATCH v13 14/28] ovl: Do not expose metacopy only dentry from d_real()
` [PATCH v13 15/28] ovl: Move some of ovl_nlink_start() functionality in ovl_nlink_prep()
` [PATCH v13 16/28] ovl: Create locked version of ovl_nlink_start() and ovl_nlink_end()
` [PATCH v13 17/28] ovl: During rename lock both source and target ovl_inode
` [PATCH v13 18/28] ovl: Check redirects for metacopy files
` [PATCH v13 19/28] ovl: Treat metacopy dentries as type OVL_PATH_MERGE
` [PATCH v13 20/28] ovl: Do not set dentry type ORIGIN for broken hardlinks
` [PATCH v13 21/28] ovl: Set redirect on metacopy files upon rename
` [PATCH v13 22/28] ovl: Set redirect on upper inode when it is linked
` [PATCH v13 23/28] ovl: Remove redirect when data of a metacopy file is copied up
` [PATCH v13 24/28] ovl: Do not error if REDIRECT XATTR is missing
` [PATCH v13 25/28] ovl: Use out_err insteada of out_nomem
` [PATCH v13 26/28] ovl: Re-check redirect xattr during inode initialization
` [PATCH v13 27/28] ovl: Verify a data dentry has been found for metacopy inode
` [PATCH v13 28/28] ovl: Enable metadata only feature

question of copying stack in ovl_lookup()
 2018-04-11  9:04 UTC  (7+ messages)

[PATCH v2 1/2] ovl: add option parsing support for remount
 2018-04-11  7:02 UTC  (5+ messages)
` [PATCH v2 2/2] ovl: return error when specifying unchangeable options in remount

[PATCH] ovl: adjust memory allocation size for stack in ovl_lookup
 2018-04-11  4:27 UTC  (2+ messages)

[PATCH v5] ovl: Check link ability between upperdir and workdir
 2018-04-10  0:50 UTC  (6+ messages)

[PATCH v12 00/17] overlayfs: Delayed copy up of data
 2018-04-04 16:04 UTC  (5+ messages)
` [PATCH v12 15/17] ovl: Remove redirect when data of a metacopy file is copied up

[PATCH 1/2] ovl: add option parsing support for remount
 2018-04-02 13:09 UTC  (14+ messages)
` [PATCH 2/2] ovl: return error when specifying unchangeable options in remount

[PATCH v10] ovl: Improving syncfs efficiency
 2018-04-01 16:41 UTC  (4+ messages)

"quota-df" feature
 2018-04-01  9:45 UTC  (14+ messages)

[RFC PATCH 1/2] fs/locks: add flock_setlk to help set flock
 2018-03-30 13:40 UTC  (4+ messages)

[PATCH v9 0/7] Overlayfs: constant st_ino/d_ino for non-samefs
 2018-03-29 22:10 UTC  (15+ messages)
` [PATCH v9 3/7] ovl: constant st_ino for non-samefs with xino
` [PATCH v9 6/7] ovl: add support for "xino" mount option
` [PATCH v9 7/7] ovl: update documentation w.r.t "xino" feature

client side see wrong directory entries with nfs_export on overlayfs
 2018-03-29 16:35 UTC  (4+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox