auth.c (4ccda2cdd8d156b6f49440653d5d6997e0facf97) auth.c (9a559efd4199c9812d339e23cc1b6055366b224f)
1/*
2 * linux/net/sunrpc/auth.c
3 *
4 * Generic RPC client authentication API.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8

--- 552 unchanged lines hidden (view full) ---

561static struct shrinker rpc_cred_shrinker = {
562 .shrink = rpcauth_cache_shrinker,
563 .seeks = DEFAULT_SEEKS,
564};
565
566void __init rpcauth_init_module(void)
567{
568 rpc_init_authunix();
1/*
2 * linux/net/sunrpc/auth.c
3 *
4 * Generic RPC client authentication API.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8

--- 552 unchanged lines hidden (view full) ---

561static struct shrinker rpc_cred_shrinker = {
562 .shrink = rpcauth_cache_shrinker,
563 .seeks = DEFAULT_SEEKS,
564};
565
566void __init rpcauth_init_module(void)
567{
568 rpc_init_authunix();
569 rpc_init_generic_auth();
569 register_shrinker(&rpc_cred_shrinker);
570}
571
572void __exit rpcauth_remove_module(void)
573{
574 unregister_shrinker(&rpc_cred_shrinker);
575}
570 register_shrinker(&rpc_cred_shrinker);
571}
572
573void __exit rpcauth_remove_module(void)
574{
575 unregister_shrinker(&rpc_cred_shrinker);
576}