Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Aufs5 Standalone
Commits
86e16ad6
Commit
86e16ad6
authored
Oct 18, 2019
by
J. R. Okajima
Browse files
aufs5.0 20191021
Signed-off-by:
J. R. Okajima
<
hooanon05g@gmail.com
>
parent
59bbe773
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/uapi/linux/aufs_type.h
View file @
86e16ad6
...
...
@@ -40,7 +40,7 @@
#include <linux/limits.h>
#define AUFS_VERSION "5.0-2019101
4
"
#define AUFS_VERSION "5.0-201910
2
1"
/* todo? move this to linux-2.6.19/include/magic.h */
#define AUFS_SUPER_MAGIC ('a' << 24 | 'u' << 16 | 'f' << 8 | 's')
...
...
proc_mounts.patch
View file @
86e16ad6
SPDX-License-Identifier: GPL-2.0
diff --git a/fs/mount.h b/fs/mount.h
index f39bc9da4d73..
1ffd97696ca9
100644
index f39bc9da4d73..
dc6ed85500b8
100644
--- a/fs/mount.h
+++ b/fs/mount.h
@@ -131,9 +131,7 @@
struct proc_mounts {
...
...
@@ -10,15 +10,15 @@ index f39bc9da4d73..1ffd97696ca9 100644
- void *cached_mount;
- u64 cached_event;
- loff_t cached_index;
+
bool
filled;
+
size_t
filled;
};
extern const struct seq_operations mounts_op;
diff --git a/fs/namespace.c b/fs/namespace.c
index 678ef175d63a..
9e08d6de79c0
100644
index 678ef175d63a..
592a8b01b77b
100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -1236,46 +1236,
7
8 @@
struct vfsmount *mnt_clone_internal(const struct path *path)
@@ -1236,46 +1236,8
0
@@
struct vfsmount *mnt_clone_internal(const struct path *path)
#ifdef CONFIG_PROC_FS
/* iterator; we want it to have access to namespace_sem, thus here... */
...
...
@@ -32,6 +32,7 @@ index 678ef175d63a..9e08d6de79c0 100644
struct proc_mounts *p = m->private;
+ err = -ENODATA;
+ m->count = 0;
down_read(&namespace_sem);
- if (p->cached_event == p->ns->event) {
- void *v = p->cached_mount;
...
...
@@ -60,6 +61,7 @@ index 678ef175d63a..9e08d6de79c0 100644
+ m->size += PAGE_SIZE;
+ m->count = last_count;
+
+#if 0 /* todo: consider the limit */
+ err = p->show(m, &r->mnt);
+ if (unlikely(err < 0))
+ break;
...
...
@@ -67,6 +69,7 @@ index 678ef175d63a..9e08d6de79c0 100644
+ err = -EOVERFLOW;
+ break;
}
+#endif
}
+ up_read(&namespace_sem);
...
...
@@ -75,20 +78,20 @@ index 678ef175d63a..9e08d6de79c0 100644
- p->cached_index = *pos;
- return p->cached_mount;
+ if (!err)
+ p->filled =
true
;
+ p->filled =
m->count
;
+ return err;
}
-static void *m_next(struct seq_file *m, void *v, loff_t *pos)
+static void *m_start(struct seq_file *m, loff_t *pos)
{
- struct proc_mounts *p = m->private;
+ int err;
struct proc_mounts *p = m->private;
- p->cached_mount = seq_list_next(v, &p->ns->list, pos);
- p->cached_index = *pos;
- return p->cached_mount;
+ if (!
p->filled
) {
+ if (!
*pos
) {
+ err = m_start_fill(m);
+ if (unlikely(err))
+ return ERR_PTR(err);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment