aboutsummaryrefslogtreecommitdiff
path: root/net/sunrpc/auth.c
AgeCommit message (Expand)AuthorFilesLines
2010-08-11nfs: update for module_param_named API changeGravatar Stephen Rothwell 1-2/+7
2010-08-07Merge branch 'nfs-for-2.6.36' of git://git.linux-nfs.org/projects/trondmy/nfs...Gravatar Linus Torvalds 1-48/+109
2010-08-04SUNRPC: Move the bound cred to struct rpc_rqstGravatar Trond Myklebust 1-23/+20
2010-08-04SUNRPC: Clean up of rpc_bindcred()Gravatar Trond Myklebust 1-20/+17
2010-08-04SUNRPC: Make the credential cache hashtable size configurableGravatar Trond Myklebust 1-5/+55
2010-08-04SUNRPC: Store the hashtable size in struct rpc_cred_cacheGravatar Trond Myklebust 1-3/+7
2010-08-04NFS: Ensure the AUTH_UNIX credcache is allocated dynamicallyGravatar Trond Myklebust 1-3/+16
2010-07-21mm: add context argument to shrinker callback to remaining shrinkersGravatar Dave Chinner 1-1/+1
2010-05-14SUNRPC: Ensure rpcauth_prune_expired() respects the nr_to_scan parameterGravatar Trond Myklebust 1-3/+2
2010-05-14SUNRPC: Ensure memory shrinker doesn't waste time in rpcauth_prune_expired()Gravatar Trond Myklebust 1-5/+7
2010-05-14SUNRPC: Dont run rpcauth_cache_shrinker() when gfp_mask is GFP_NOFSGravatar Trond Myklebust 1-0/+2
2010-04-22SUNRPC: Fix a bug in rpcauth_prune_expiredGravatar Trond Myklebust 1-1/+1
2009-12-13Merge branch 'nfs-for-2.6.33'Gravatar Trond Myklebust 1-16/+23
2009-12-03RPC: Fix two potential races in put_rpccredGravatar Trond Myklebust 1-16/+23
2009-11-29net: Move && and || to end of previous lineGravatar Joe Perches 1-3/+3
2009-09-15SUNRPC: Defer the auth_gss upcall when the RPC call is asynchronousGravatar Trond Myklebust 1-8/+12
2008-12-30Merge branch 'devel' into nextGravatar Trond Myklebust 1-3/+3
2008-12-23optimize attribute timeouts for "noac" and "actimeo=0"Gravatar Peter Staubach 1-1/+1
2008-12-23SUNRPC: Remove the last remnant of the BKL...Gravatar Trond Myklebust 1-2/+2
2008-11-14CRED: Wrap current->cred and a few other accessorsGravatar David Howells 1-6/+8
2008-11-14CRED: Separate task security context from task_structGravatar David Howells 1-1/+1
2008-11-14CRED: Wrap task credential accesses in the SunRPC protocolGravatar David Howells 1-2/+2
2008-10-28SUNRPC: Fix potential race in put_rpccred()Gravatar Trond Myklebust 1-1/+1
2008-10-28SUNRPC: Fix rpcauth_prune_expiredGravatar Trond Myklebust 1-7/+9
2008-10-16net: Remove CONFIG_KMOD from net/ (towards removing CONFIG_KMOD entirely)Gravatar Johannes Berg 1-2/+0
2008-04-19SUNRPC: Protect creds against early garbage collectionGravatar Trond Myklebust 1-0/+8
2008-03-14SUNRPC: Add a helper rpcauth_lookup_generic_cred()Gravatar Trond Myklebust 1-1/+0
2008-03-14SUNRPC: Add an rpc_credop callback for binding a credential to an rpc_taskGravatar Trond Myklebust 1-2/+3
2008-03-14SUNRPC: Add a generic RPC credentialGravatar Trond Myklebust 1-0/+1
2008-03-14SUNRPC: Clean up rpcauth_bindcred()Gravatar Trond Myklebust 1-10/+18
2008-03-14SUNRPC: Fix RPCAUTH_LOOKUP_ROOTCREDSGravatar Trond Myklebust 1-15/+20
2008-03-14SUNRPC: Fix a bug in rpcauth_lookup_credcache()Gravatar Trond Myklebust 1-1/+4
2008-02-01Merge branch 'task_killable' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Linus Torvalds 1-3/+0
2008-01-30SUNRPC: Mask signals across the call to rpc_call_setup() in rpc_run_taskGravatar Trond Myklebust 1-0/+3
2008-01-30SUNRPC: Restrict sunrpc client exportsGravatar Trond Myklebust 1-9/+9
2008-01-30SUNRPC: Move exported declarations to the function declarationsGravatar Trond Myklebust 1-0/+8
2007-07-19SUNRPC: move bkl locking and xdr proc invocation into a common helperGravatar J. Bruce Fields 1-11/+2
2007-07-17mm: clean up and kernelify shrinker registrationGravatar Rusty Russell 1-5/+6
2007-07-10sunrpc: drop BKL around wrap and unwrapGravatar J. Bruce Fields 1-2/+11
2007-07-10SUNRPC: Remove the tk_auth macro...Gravatar Trond Myklebust 1-12/+13
2007-07-10SUNRPC: Convert the credential garbage collector into a shrinker callbackGravatar Trond Myklebust 1-18/+45
2007-07-10SUNRPC: Give credential cache a local spinlockGravatar Trond Myklebust 1-14/+32
2007-07-10SUNRPC: Convert the credcache lookup code to use RCUGravatar Trond Myklebust 1-34/+57
2007-07-10SUNRPC: cleanup rpc credential cache garbage collectionGravatar Trond Myklebust 1-49/+72
2007-07-10SUNRPC: Enforce atomic updates of rpc_cred->cr_flagsGravatar Trond Myklebust 1-10/+12
2007-07-10SUNRPC: Clean up rpc credential initialisationGravatar Trond Myklebust 1-6/+18
2007-07-10SUNRPC: Mark auth and cred operation tables as constant.Gravatar Trond Myklebust 1-4/+4
2007-07-10SUNRPC: Rename rpcauth_destroy() to rpcauth_release()Gravatar Trond Myklebust 1-2/+2
2007-07-10SUNRPC: Fix races in rpcauth_createGravatar Trond Myklebust 1-11/+24
2007-07-10SUNRPC: Fix a memory leak in the auth credcache codeGravatar Trond Myklebust 1-2/+16