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
724285ee
Commit
724285ee
authored
Oct 18, 2019
by
J. R. Okajima
Browse files
aufs5.2.5+ 20191021
Signed-off-by:
J. R. Okajima
<
hooanon05g@gmail.com
>
parent
1355d017
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/uapi/linux/aufs_type.h
View file @
724285ee
...
...
@@ -40,7 +40,7 @@
#include <linux/limits.h>
#define AUFS_VERSION "5.2.5+-2019101
4
"
#define AUFS_VERSION "5.2.5+-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 @
724285ee
SPDX-License-Identifier: GPL-2.0
diff --git a/fs/mount.h b/fs/mount.h
index 6250de544760..2
9abfea2db50
100644
index 6250de544760..2
0895d9e4371
100644
--- a/fs/mount.h
+++ b/fs/mount.h
@@ -131,9 +131,7 @@
struct proc_mounts {
...
...
@@ -10,15 +10,15 @@ index 6250de544760..29abfea2db50 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 6fbc9126367a..
36d8b8ac5be5
100644
index 6fbc9126367a..
6aec25c597c6
100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -1260,46 +1260,
7
8 @@
struct vfsmount *mnt_clone_internal(const struct path *path)
@@ -1260,46 +1260,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 6fbc9126367a..36d8b8ac5be5 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 6fbc9126367a..36d8b8ac5be5 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 6fbc9126367a..36d8b8ac5be5 100644
+ err = -EOVERFLOW;
+ break;
}
+#endif
}
+ up_read(&namespace_sem);
...
...
@@ -75,20 +78,20 @@ index 6fbc9126367a..36d8b8ac5be5 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