diff options
author | trasz <trasz@FreeBSD.org> | 2014-08-31 21:52:26 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2014-08-31 21:52:26 +0000 |
commit | d1036ec04d97c478ac585f50d8d98eb1dfc87c35 (patch) | |
tree | 97b9021d2612250ea283c63dde6541cd516d9709 /sys/fs/autofs/autofs.h | |
parent | 2ded039a6da22e85917388ed0b611e4858d05a72 (diff) | |
download | FreeBSD-src-d1036ec04d97c478ac585f50d8d98eb1dfc87c35.zip FreeBSD-src-d1036ec04d97c478ac585f50d8d98eb1dfc87c35.tar.gz |
MFC r270402:
Autofs softc needs to be global anyway, so don't pass it as a local
variable, and don't store in autofs_mount. Also rename it from 'sc'
to 'autofs_softc', since it's global and extern.
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/fs/autofs/autofs.h')
-rw-r--r-- | sys/fs/autofs/autofs.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/fs/autofs/autofs.h b/sys/fs/autofs/autofs.h index 35fcc85..2c72645 100644 --- a/sys/fs/autofs/autofs.h +++ b/sys/fs/autofs/autofs.h @@ -75,7 +75,6 @@ struct autofs_node { struct autofs_mount { TAILQ_ENTRY(autofs_mount) am_next; - struct autofs_softc *am_softc; struct autofs_node *am_root; struct mount *am_mp; struct sx am_lock; |