* [GIT PULL -mm] 0/2 Unionfs updates/fixes/cleanups
@ 2008-05-09 20:07 Erez Zadok
2008-05-09 20:07 ` [PATCH 1/2] Unionfs: use new umount_begin prototype Erez Zadok
2008-05-09 20:07 ` [PATCH 2/2] Unionfs: move fs/Makefile entry up to minimize merge conflicts Erez Zadok
0 siblings, 2 replies; 5+ messages in thread
From: Erez Zadok @ 2008-05-09 20:07 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, linux-fsdevel, viro, hch
Just two small changes.
Please pull from the 'master' branch of
git://git.kernel.org/pub/scm/linux/kernel/git/ezk/unionfs.git
to receive the following:
Erez Zadok (2):
Unionfs: use new umount_begin prototype
Unionfs: move fs/Makefile entry up to minimize merge conflicts
Makefile | 2 +-
unionfs/super.c | 19 ++++---------------
2 files changed, 5 insertions(+), 16 deletions(-)
Thanks.
---
Erez Zadok
ezk@cs.sunysb.edu
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 1/2] Unionfs: use new umount_begin prototype
2008-05-09 20:07 [GIT PULL -mm] 0/2 Unionfs updates/fixes/cleanups Erez Zadok
@ 2008-05-09 20:07 ` Erez Zadok
2008-05-09 20:07 ` [PATCH 2/2] Unionfs: move fs/Makefile entry up to minimize merge conflicts Erez Zadok
1 sibling, 0 replies; 5+ messages in thread
From: Erez Zadok @ 2008-05-09 20:07 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, linux-fsdevel, viro, hch, Erez Zadok
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
---
fs/unionfs/super.c | 19 ++++---------------
1 files changed, 4 insertions(+), 15 deletions(-)
diff --git a/fs/unionfs/super.c b/fs/unionfs/super.c
index 82b4045..b110760 100644
--- a/fs/unionfs/super.c
+++ b/fs/unionfs/super.c
@@ -961,32 +961,21 @@ static int unionfs_write_inode(struct inode *inode, int sync)
* Used only in nfs, to kill any pending RPC tasks, so that subsequent
* code can actually succeed and won't leave tasks that need handling.
*/
-static void unionfs_umount_begin(struct vfsmount *mnt, int flags)
+static void unionfs_umount_begin(struct super_block *sb)
{
- struct super_block *sb, *lower_sb;
- struct vfsmount *lower_mnt;
+ struct super_block *lower_sb;
int bindex, bstart, bend;
- if (!(flags & MNT_FORCE))
- /*
- * we are not being MNT_FORCE'd, therefore we should emulate
- * old behavior
- */
- return;
-
- sb = mnt->mnt_sb;
-
unionfs_read_lock(sb, UNIONFS_SMUTEX_CHILD);
bstart = sbstart(sb);
bend = sbend(sb);
for (bindex = bstart; bindex <= bend; bindex++) {
- lower_mnt = unionfs_lower_mnt_idx(sb->s_root, bindex);
lower_sb = unionfs_lower_super_idx(sb, bindex);
- if (lower_mnt && lower_sb && lower_sb->s_op &&
+ if (lower_sb && lower_sb->s_op &&
lower_sb->s_op->umount_begin)
- lower_sb->s_op->umount_begin(lower_mnt, flags);
+ lower_sb->s_op->umount_begin(lower_sb);
}
unionfs_read_unlock(sb);
--
1.5.2.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2] Unionfs: move fs/Makefile entry up to minimize merge conflicts
2008-05-09 20:07 [GIT PULL -mm] 0/2 Unionfs updates/fixes/cleanups Erez Zadok
2008-05-09 20:07 ` [PATCH 1/2] Unionfs: use new umount_begin prototype Erez Zadok
@ 2008-05-09 20:07 ` Erez Zadok
1 sibling, 0 replies; 5+ messages in thread
From: Erez Zadok @ 2008-05-09 20:07 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, linux-fsdevel, viro, hch, Erez Zadok
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
---
fs/Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/Makefile b/fs/Makefile
index 22ebb61..dadf53b 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -85,6 +85,7 @@ obj-$(CONFIG_ISO9660_FS) += isofs/
obj-$(CONFIG_HFSPLUS_FS) += hfsplus/ # Before hfs to find wrapped HFS+
obj-$(CONFIG_HFS_FS) += hfs/
obj-$(CONFIG_ECRYPT_FS) += ecryptfs/
+obj-$(CONFIG_UNION_FS) += unionfs/
obj-$(CONFIG_VXFS_FS) += freevxfs/
obj-$(CONFIG_NFS_FS) += nfs/
obj-$(CONFIG_EXPORTFS) += exportfs/
@@ -119,4 +120,3 @@ obj-$(CONFIG_HPPFS) += hppfs/
obj-$(CONFIG_DEBUG_FS) += debugfs/
obj-$(CONFIG_OCFS2_FS) += ocfs2/
obj-$(CONFIG_GFS2_FS) += gfs2/
-obj-$(CONFIG_UNION_FS) += unionfs/
--
1.5.2.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [GIT PULL -mm] 0/2 Unionfs updates/fixes/cleanups
@ 2007-12-14 15:47 Erez Zadok
0 siblings, 0 replies; 5+ messages in thread
From: Erez Zadok @ 2007-12-14 15:47 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, linux-fsdevel, viro, hch
The following is a series of patches related to Unionfs.
These patches were tested (where appropriate) on Linus's 2.6.24 latest code
(as of v2.6.24-rc5-43-gda8cadb), MM (MMOTM stamp-2007-12-13-15-37), as well
as the backports to 2.6.{23,22,21,20,19,18,9} on ext2/3/4, xfs, reiserfs,
nfs2/3/4, jffs2, ramfs, tmpfs, cramfs, and squashfs (where available). Also
tested with LTP-full. See http://unionfs.filesystems.org/ to download
back-ported unionfs code.
Please pull from the 'master' branch of
git://git.kernel.org/pub/scm/linux/kernel/git/ezk/unionfs.git
to receive the following:
Erez Zadok (2):
Unionfs: avoid using drop_pagecache_sb in remount
Unionfs: clarify usage.txt mount options
Documentation/filesystems/unionfs/usage.txt | 38 +++++++++++++++++++---------
fs/drop_caches.c | 4 --
fs/unionfs/dentry.c | 11 ++++++++
fs/unionfs/super.c | 34 ++++++++-----------------
fs/unionfs/union.h | 1
include/linux/mm.h | 2 -
6 files changed, 52 insertions(+), 38 deletions(-)
---
Erez Zadok
ezk@cs.sunysb.edu
^ permalink raw reply [flat|nested] 5+ messages in thread* [GIT PULL -mm] 0/2 Unionfs updates/fixes/cleanups
@ 2007-12-08 20:46 Erez Zadok
0 siblings, 0 replies; 5+ messages in thread
From: Erez Zadok @ 2007-12-08 20:46 UTC (permalink / raw)
To: akpm; +Cc: linux-kernel, linux-fsdevel, viro, hch
The following is a series of patches related to Unionfs: just a couple of
small bug fixes and/or optimizations.
These patches were tested (where appropriate) on Linus's 2.6.24 latest code
(as of v2.6.24-rc4-124-gf194d13), MM, as well as the backports to
2.6.{23,22,21,20,19,18,9} on ext2/3/4, xfs, reiserfs, nfs2/3/4, jffs2,
ramfs, tmpfs, cramfs, and squashfs (where available). See
http://unionfs.filesystems.org/ to download back-ported unionfs code.
Please pull from the 'master' branch of
git://git.kernel.org/pub/scm/linux/kernel/git/ezk/unionfs.git
to receive the following:
Erez Zadok (2):
Unionfs: cleanup/consolidate branch-mode parsing code
Unionfs: reduce the amount of cache-coherency debugging messages
dentry.c | 38 +++++++++++++++++++++++---------------
main.c | 44 ++++++++++++++++++++++----------------------
super.c | 12 ++++++++----
union.h | 3 +--
4 files changed, 54 insertions(+), 43 deletions(-)
---
Erez Zadok
ezk@cs.sunysb.edu
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2008-05-09 20:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-09 20:07 [GIT PULL -mm] 0/2 Unionfs updates/fixes/cleanups Erez Zadok
2008-05-09 20:07 ` [PATCH 1/2] Unionfs: use new umount_begin prototype Erez Zadok
2008-05-09 20:07 ` [PATCH 2/2] Unionfs: move fs/Makefile entry up to minimize merge conflicts Erez Zadok
-- strict thread matches above, loose matches on Subject: below --
2007-12-14 15:47 [GIT PULL -mm] 0/2 Unionfs updates/fixes/cleanups Erez Zadok
2007-12-08 20:46 Erez Zadok
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).