aboutsummaryrefslogtreecommitdiffstats
path: root/features/unionfs
AgeCommit message (Collapse)Author
2019-10-07meta: add SPDX License Identifier and updates 00-README with License policyYann CARDAILLAC
Signed-off-by: Yann CARDAILLAC <ycnakajsph@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2016-11-16unionfs: drop obselete unionfs patchesBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-12-06unionfs: introduce unionfs 2.5.11 core supportBruce Ashfield
1/5 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: unionfs: introduce unionfs 2.5.11 core support Date: Wed, 28 Nov 2012 10:44:35 -0800 upstream: http://download.filesystems.org/unionfs/unionfs-2.x-latest/ Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 2/5 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: unionfs: replace d_alloc_root with d_make_root Date: Thu, 29 Mar 2012 16:09:45 -0400 d_alloc_root has been removed, updating to the replacement d_make_root Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 3/5 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: unionfs: v3.4 build fixups Date: Mon, 2 Apr 2012 11:36:07 -0400 Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 4/5 [ Author: Liang Li Email: liang.li@windriver.com Subject: unionfs: update unionfs fork to align with mainline Date: Thu, 16 Aug 2012 21:25:01 +0800 mainline commit 0145acc [vfs: uninline full_name_hash] changes the interface to full_name_hash, so unionfs fork must be updated. Otherwise unionfs might have the odd behavior that newly created directories/files in unionfs won't show up in underlying fs properly. This also implies that 0145acc fixes the corner issue/regression that introduced by mainline commit bfcfaa7 [vfs: use 'unsigned long' accesses for dcache name comparison and hashing] and e419b4c [vfs: make word-at-a-time accesses handle a non-existing page], that newly adopted fast hash function might have hash collision issue on x86. Signed-off-by: Liang Li <liang.li@windriver.com> ] 5/5 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: unionfs: restore FD_* utility defines Date: Tue, 21 Aug 2012 22:14:49 -0400 commit 27cd8f513 [posix_types.h: Cleanup stale __NFDBITS and related definition] removes the defintions for: #define NFDBITS __NFDBITS #define FD_SETSIZE __FD_SETSIZE #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp) #define FD_CLR(fd,fdsetp) __FD_CLR(fd,fdsetp) #define FD_ISSET(fd,fdsetp) __FD_ISSET(fd,fdsetp) #define FD_ZERO(fdsetp) __FD_ZERO(fdsetp) Which are still used by unionfs. We restore them to union.h for local use by unionfs until full replacements are found. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-08-21unionfs: restore FD_* utility definesBruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: unionfs: restore FD_* utility defines Date: Tue, 21 Aug 2012 22:14:49 -0400 commit 27cd8f513 [posix_types.h: Cleanup stale __NFDBITS and related definition] removes the defintions for: #define NFDBITS __NFDBITS #define FD_SETSIZE __FD_SETSIZE #define FD_SET(fd,fdsetp) __FD_SET(fd,fdsetp) #define FD_CLR(fd,fdsetp) __FD_CLR(fd,fdsetp) #define FD_ISSET(fd,fdsetp) __FD_ISSET(fd,fdsetp) #define FD_ZERO(fdsetp) __FD_ZERO(fdsetp) Which are still used by unionfs. We restore them to union.h for local use by unionfs until full replacements are found. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-08-17unionfs: update unionfs fork to align with mainlineBruce Ashfield
1/1 [ Author: Liang Li Email: liang.li@windriver.com Subject: unionfs: update unionfs fork to align with mainline Date: Thu, 16 Aug 2012 21:25:01 +0800 mainline commit 0145acc [vfs: uninline full_name_hash] changes the interface to full_name_hash, so unionfs fork must be updated. Otherwise unionfs might have the odd behavior that newly created directories/files in unionfs won't show up in underlying fs properly. This also implies that 0145acc fixes the corner issue/regression that introduced by mainline commit bfcfaa7 [vfs: use 'unsigned long' accesses for dcache name comparison and hashing] and e419b4c [vfs: make word-at-a-time accesses handle a non-existing page], that newly adopted fast hash function might have hash collision issue on x86. Signed-off-by: Liang Li <liang.li@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-07-09Unionfs: use mode_tBruce Ashfield
1/1 [ Author: Erez Zadok Email: ezk@cs.sunysb.edu Subject: Unionfs: use mode_t Date: Fri, 10 Feb 2012 15:36:36 -0500 commit dba53016f577 from unionfs upstream git://git.fsl.cs.sunysb.edu/unionfs-latest.git Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu> Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-07-05Unionfs: update ->show_options prototypeBruce Ashfield
1/1 [ Author: Erez Zadok Email: ezk@cs.sunysb.edu Subject: Unionfs: update ->show_options prototype Date: Fri, 10 Feb 2012 15:36:44 -0500 commit a34b0868fc27524af46ec861de4d85ae07b63ccb from unionfs upstream - git://git.fsl.cs.sunysb.edu/unionfs-latest.git Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu> Signed-off-by: Liang Li <liang.li@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-04-02unionfs: v3.4 build fixupsBruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: unionfs: v3.4 build fixups Date: Mon, 2 Apr 2012 11:36:07 -0400 Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-03-29unionfs: replace d_alloc_root with d_make_rootBruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: unionfs: replace d_alloc_root with d_make_root Date: Thu, 29 Mar 2012 16:09:45 -0400 d_alloc_root has been removed, updating to the replacement d_make_root Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-03-29v3.3+ patch fixupsBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-01-27unionfs: use proper accessors for i_nlinkBruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: unionfs: use proper accessors for i_nlink Date: Fri, 27 Jan 2012 11:34:05 -0500 commit: a78ef704a8dd430225955f0709b22d4a6ba21deb changed the semantics for accessing i_nlink. Author: Miklos Szeredi <mszeredi@suse.cz> Date: Fri Oct 28 14:13:30 2011 +0200 vfs: protect i_nlink Prevent direct modification of i_nlink by making it const and adding a non-const __i_nlink alias. Signed-off-by: Miklos Szeredi <mszeredi@suse.cz> Tested-by: Toshiyuki Okajima <toshi.okajima@jp.fujitsu.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Updating unionfs to use the new accessor function.y Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-01-27unionfs: introduce unionfs 2.5.10 core supportBruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: unionfs: introduce unionfs 2.5.10 core support Date: Fri, 27 Jan 2012 09:50:57 -0500 upstream: http://download.filesystems.org/unionfs/unionfs-2.x-latest/ Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-07-203.0: patch cleanup and pruningBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-04-04yocto: import of the kernel content/metadata from v2.6.39Paul Gortmaker
Roughly corresponds to: commit db575247e16e50ce5160e18907e253c6a43b6feb Author: Bruce Ashfield <bruce.ashfield@windriver.com> Date: Mon Apr 4 00:27:55 2011 -0400 yocto: 2.6.39 baseline Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ...in the full history repo, but with some extraneous files that were deleted post db575247 deleted right here and now at the baseline instead. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>