From: Valerie Aurora <vaurora@xxxxxxxxxx> union_alloc() allocates a union stack with enough entries for the maximum possible number of directories that might be unioned at this point. The union_stack may be larger than strictly necessary if this directory does not exist on all layers, but allocating exactly the right number would require keeping the number of layers in the union_stack structure. We optimize for the case of unioning two file systems and keep the count of layers in the superblock. Signed-off-by: Valerie Aurora <valerie.aurora@xxxxxxxxx> --- fs/Makefile | 1 + fs/union.c | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 0 deletions(-) diff --git a/fs/Makefile b/fs/Makefile index e6ec1d3..936acf0 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -52,6 +52,7 @@ obj-$(CONFIG_NFS_COMMON) += nfs_common/ obj-$(CONFIG_GENERIC_ACL) += generic_acl.o obj-y += quota/ +obj-$(CONFIG_UNION_MOUNT) += union.o obj-$(CONFIG_PROC_FS) += proc/ obj-y += partitions/ diff --git a/fs/union.c b/fs/union.c new file mode 100644 index 0000000..52a5c28 --- /dev/null +++ b/fs/union.c @@ -0,0 +1,42 @@ + /* + * VFS-based union mounts for Linux + * + * Copyright (C) 2004-2007 IBM Corporation, IBM Deutschland Entwicklung GmbH. + * Copyright (C) 2007-2009 Novell Inc. + * Copyright (C) 2009-2010 Red Hat, Inc. + * + * Author(s): Jan Blunck (j.blunck@xxxxxxxxxxxxx) + * Valerie Aurora <vaurora@xxxxxxxxxx> + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; version 2 + * of the License. + */ + +#include <linux/bootmem.h> +#include <linux/init.h> +#include <linux/types.h> +#include <linux/fs.h> +#include <linux/mount.h> +#include <linux/fs_struct.h> +#include <linux/slab.h> + +#include "union.h" + +/** + * union_alloc - allocate a union stack + * + * @path: path of topmost directory + * + * Allocate a union_stack large enough to contain the maximum number + * of layers in this union mount. + */ + +static struct union_stack *union_alloc(struct path *topmost) +{ + unsigned int layers = topmost->dentry->d_sb->s_union_count; + BUG_ON(!S_ISDIR(topmost->dentry->d_inode->i_mode)); + + return kzalloc(sizeof(struct path) * layers, GFP_KERNEL); +} -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html