diff options
-rw-r--r-- | include/linux/sunrpc/gss_api.h | 3 | ||||
-rw-r--r-- | net/sunrpc/auth_gss/gss_mech_switch.c | 5 |
2 files changed, 1 insertions, 7 deletions
diff --git a/include/linux/sunrpc/gss_api.h b/include/linux/sunrpc/gss_api.h index fca23380e667..f32b7a47e13f 100644 --- a/include/linux/sunrpc/gss_api.h +++ b/include/linux/sunrpc/gss_api.h | |||
@@ -145,9 +145,6 @@ struct gss_api_mech *gss_mech_get_by_pseudoflavor(u32); | |||
145 | /* Fill in an array with a list of supported pseudoflavors */ | 145 | /* Fill in an array with a list of supported pseudoflavors */ |
146 | int gss_mech_list_pseudoflavors(rpc_authflavor_t *, int); | 146 | int gss_mech_list_pseudoflavors(rpc_authflavor_t *, int); |
147 | 147 | ||
148 | /* Just increments the mechanism's reference count and returns its input: */ | ||
149 | struct gss_api_mech * gss_mech_get(struct gss_api_mech *); | ||
150 | |||
151 | /* For every successful gss_mech_get or gss_mech_get_by_* call there must be a | 148 | /* For every successful gss_mech_get or gss_mech_get_by_* call there must be a |
152 | * corresponding call to gss_mech_put. */ | 149 | * corresponding call to gss_mech_put. */ |
153 | void gss_mech_put(struct gss_api_mech *); | 150 | void gss_mech_put(struct gss_api_mech *); |
diff --git a/net/sunrpc/auth_gss/gss_mech_switch.c b/net/sunrpc/auth_gss/gss_mech_switch.c index deaa7ae81cdf..89416522ef79 100644 --- a/net/sunrpc/auth_gss/gss_mech_switch.c +++ b/net/sunrpc/auth_gss/gss_mech_switch.c | |||
@@ -132,15 +132,12 @@ gss_mech_unregister(struct gss_api_mech *gm) | |||
132 | 132 | ||
133 | EXPORT_SYMBOL_GPL(gss_mech_unregister); | 133 | EXPORT_SYMBOL_GPL(gss_mech_unregister); |
134 | 134 | ||
135 | struct gss_api_mech * | 135 | static struct gss_api_mech *gss_mech_get(struct gss_api_mech *gm) |
136 | gss_mech_get(struct gss_api_mech *gm) | ||
137 | { | 136 | { |
138 | __module_get(gm->gm_owner); | 137 | __module_get(gm->gm_owner); |
139 | return gm; | 138 | return gm; |
140 | } | 139 | } |
141 | 140 | ||
142 | EXPORT_SYMBOL_GPL(gss_mech_get); | ||
143 | |||
144 | static struct gss_api_mech * | 141 | static struct gss_api_mech * |
145 | _gss_mech_get_by_name(const char *name) | 142 | _gss_mech_get_by_name(const char *name) |
146 | { | 143 | { |