ovl_entry.h (02b69b284cd7815239fabfe895bfef9a9eb5a3ce) | ovl_entry.h (a6c6065511411c57167a6cdae0c33263fb662b51) |
---|---|
1/* 2 * 3 * Copyright (C) 2011 Novell Inc. 4 * Copyright (C) 2016 Red Hat, Inc. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 as published by 8 * the Free Software Foundation. 9 */ 10 11struct ovl_config { 12 char *lowerdir; 13 char *upperdir; 14 char *workdir; 15 bool default_permissions; | 1/* 2 * 3 * Copyright (C) 2011 Novell Inc. 4 * Copyright (C) 2016 Red Hat, Inc. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 as published by 8 * the Free Software Foundation. 9 */ 10 11struct ovl_config { 12 char *lowerdir; 13 char *upperdir; 14 char *workdir; 15 bool default_permissions; |
16 bool redirect_dir; |
|
16}; 17 18/* private information held for overlayfs's superblock */ 19struct ovl_fs { 20 struct vfsmount *upper_mnt; 21 unsigned numlower; 22 struct vfsmount **lower_mnt; 23 struct dentry *workdir; --- 29 unchanged lines hidden --- | 17}; 18 19/* private information held for overlayfs's superblock */ 20struct ovl_fs { 21 struct vfsmount *upper_mnt; 22 unsigned numlower; 23 struct vfsmount **lower_mnt; 24 struct dentry *workdir; --- 29 unchanged lines hidden --- |