179 lines
5.6 KiB
Diff
179 lines
5.6 KiB
Diff
|
autofs-5.1.7 - remove mounts_mutex
|
||
|
|
||
|
From: Ian Kent <raven@themaw.net>
|
||
|
|
||
|
The mounts_mutex is no longer used, remove it.
|
||
|
|
||
|
Signed-off-by: Ian Kent <raven@themaw.net>
|
||
|
---
|
||
|
CHANGELOG | 1 +
|
||
|
daemon/automount.c | 8 +-------
|
||
|
daemon/master.c | 13 -------------
|
||
|
include/automount.h | 1 -
|
||
|
modules/mount_autofs.c | 8 --------
|
||
|
5 files changed, 2 insertions(+), 29 deletions(-)
|
||
|
|
||
|
diff --git a/CHANGELOG b/CHANGELOG
|
||
|
index 42914160..9d0f4278 100644
|
||
|
--- a/CHANGELOG
|
||
|
+++ b/CHANGELOG
|
||
|
@@ -48,6 +48,7 @@
|
||
|
- remove unused function master_submount_list_empty().
|
||
|
- move amd mounts removal into lib/mounts.c.
|
||
|
- check for offset with no mount location.
|
||
|
+- remove mounts_mutex.
|
||
|
|
||
|
25/01/2021 autofs-5.1.7
|
||
|
- make bind mounts propagation slave by default.
|
||
|
diff --git a/daemon/automount.c b/daemon/automount.c
|
||
|
index 7833dfae..28c4d1ee 100644
|
||
|
--- a/daemon/automount.c
|
||
|
+++ b/daemon/automount.c
|
||
|
@@ -1754,7 +1754,6 @@ static void handle_mounts_cleanup(void *arg)
|
||
|
* here.
|
||
|
*/
|
||
|
if (submount) {
|
||
|
- mounts_mutex_unlock(ap->parent);
|
||
|
master_source_unlock(ap->parent->entry);
|
||
|
master_free_mapent_sources(ap->entry, 1);
|
||
|
master_free_mapent(ap->entry);
|
||
|
@@ -1792,13 +1791,9 @@ static int submount_source_writelock_nested(struct autofs_point *ap)
|
||
|
if (status)
|
||
|
goto done;
|
||
|
|
||
|
- mounts_mutex_lock(parent);
|
||
|
-
|
||
|
status = pthread_rwlock_trywrlock(&ap->entry->source_lock);
|
||
|
- if (status) {
|
||
|
- mounts_mutex_unlock(parent);
|
||
|
+ if (status)
|
||
|
master_source_unlock(parent->entry);
|
||
|
- }
|
||
|
|
||
|
done:
|
||
|
if (status && status != EBUSY) {
|
||
|
@@ -1814,7 +1809,6 @@ static void submount_source_unlock_nested(struct autofs_point *ap)
|
||
|
struct autofs_point *parent = ap->parent;
|
||
|
|
||
|
master_source_unlock(ap->entry);
|
||
|
- mounts_mutex_unlock(parent);
|
||
|
master_source_unlock(parent->entry);
|
||
|
}
|
||
|
|
||
|
diff --git a/daemon/master.c b/daemon/master.c
|
||
|
index b288e070..30d7cf98 100644
|
||
|
--- a/daemon/master.c
|
||
|
+++ b/daemon/master.c
|
||
|
@@ -69,7 +69,6 @@ int master_add_autofs_point(struct master_mapent *entry, unsigned logopt,
|
||
|
unsigned nobind, unsigned ghost, int submount)
|
||
|
{
|
||
|
struct autofs_point *ap;
|
||
|
- int status;
|
||
|
|
||
|
ap = malloc(sizeof(struct autofs_point));
|
||
|
if (!ap)
|
||
|
@@ -128,12 +127,6 @@ int master_add_autofs_point(struct master_mapent *entry, unsigned logopt,
|
||
|
INIT_LIST_HEAD(&ap->amdmounts);
|
||
|
ap->shutdown = 0;
|
||
|
|
||
|
- status = pthread_mutex_init(&ap->mounts_mutex, NULL);
|
||
|
- if (status) {
|
||
|
- free(ap->path);
|
||
|
- free(ap);
|
||
|
- return 0;
|
||
|
- }
|
||
|
ap->mode = 0;
|
||
|
|
||
|
entry->ap = ap;
|
||
|
@@ -143,17 +136,11 @@ int master_add_autofs_point(struct master_mapent *entry, unsigned logopt,
|
||
|
|
||
|
void master_free_autofs_point(struct autofs_point *ap)
|
||
|
{
|
||
|
- int status;
|
||
|
-
|
||
|
if (!ap)
|
||
|
return;
|
||
|
|
||
|
mnts_remove_amdmounts(ap);
|
||
|
|
||
|
- status = pthread_mutex_destroy(&ap->mounts_mutex);
|
||
|
- if (status)
|
||
|
- fatal(status);
|
||
|
-
|
||
|
if (ap->pref)
|
||
|
free(ap->pref);
|
||
|
free(ap->path);
|
||
|
diff --git a/include/automount.h b/include/automount.h
|
||
|
index e33ee8d2..51a0bf0e 100644
|
||
|
--- a/include/automount.h
|
||
|
+++ b/include/automount.h
|
||
|
@@ -565,7 +565,6 @@ struct autofs_point {
|
||
|
enum states state; /* Current state */
|
||
|
int state_pipe[2]; /* State change router pipe */
|
||
|
struct autofs_point *parent; /* Owner of mounts list for submount */
|
||
|
- pthread_mutex_t mounts_mutex; /* Protect mount lists */
|
||
|
struct list_head mounts; /* List of autofs mounts at current level */
|
||
|
unsigned int submount; /* Is this a submount */
|
||
|
unsigned int submnt_count; /* Number of submounts */
|
||
|
diff --git a/modules/mount_autofs.c b/modules/mount_autofs.c
|
||
|
index 1c40e27a..0bcbb343 100644
|
||
|
--- a/modules/mount_autofs.c
|
||
|
+++ b/modules/mount_autofs.c
|
||
|
@@ -283,8 +283,6 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name,
|
||
|
set_exp_timeout(nap, NULL, timeout);
|
||
|
nap->exp_runfreq = (timeout + CHECK_RATIO - 1) / CHECK_RATIO;
|
||
|
|
||
|
- mounts_mutex_lock(ap);
|
||
|
-
|
||
|
if (source->flags & MAP_FLAG_FORMAT_AMD) {
|
||
|
struct mnt_list *mnt;
|
||
|
|
||
|
@@ -305,7 +303,6 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name,
|
||
|
if (handle_mounts_startup_cond_init(&suc)) {
|
||
|
crit(ap->logopt, MODPREFIX
|
||
|
"failed to init startup cond for mount %s", entry->path);
|
||
|
- mounts_mutex_unlock(ap);
|
||
|
master_free_map_source(source, 1);
|
||
|
master_free_mapent(entry);
|
||
|
return 1;
|
||
|
@@ -316,7 +313,6 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name,
|
||
|
crit(ap->logopt,
|
||
|
MODPREFIX "failed to allocate mount %s", realpath);
|
||
|
handle_mounts_startup_cond_destroy(&suc);
|
||
|
- mounts_mutex_unlock(ap);
|
||
|
master_free_map_source(source, 1);
|
||
|
master_free_mapent(entry);
|
||
|
return 1;
|
||
|
@@ -335,7 +331,6 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name,
|
||
|
realpath);
|
||
|
handle_mounts_startup_cond_destroy(&suc);
|
||
|
mnts_remove_submount(nap->path);
|
||
|
- mounts_mutex_unlock(ap);
|
||
|
master_free_map_source(source, 1);
|
||
|
master_free_mapent(entry);
|
||
|
return 1;
|
||
|
@@ -346,7 +341,6 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name,
|
||
|
if (status) {
|
||
|
handle_mounts_startup_cond_destroy(&suc);
|
||
|
mnts_remove_submount(nap->path);
|
||
|
- mounts_mutex_unlock(ap);
|
||
|
master_free_map_source(source, 1);
|
||
|
master_free_mapent(entry);
|
||
|
fatal(status);
|
||
|
@@ -358,7 +352,6 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name,
|
||
|
MODPREFIX "failed to create submount for %s", realpath);
|
||
|
handle_mounts_startup_cond_destroy(&suc);
|
||
|
mnts_remove_submount(nap->path);
|
||
|
- mounts_mutex_unlock(ap);
|
||
|
master_free_map_source(source, 1);
|
||
|
master_free_mapent(entry);
|
||
|
return 1;
|
||
|
@@ -368,7 +361,6 @@ int mount_mount(struct autofs_point *ap, const char *root, const char *name,
|
||
|
ap->submnt_count++;
|
||
|
|
||
|
handle_mounts_startup_cond_destroy(&suc);
|
||
|
- mounts_mutex_unlock(ap);
|
||
|
|
||
|
return 0;
|
||
|
}
|