| /linux/net/sunrpc/ |
| H A D | svcauth.c | 44 svc_get_auth_ops(rpc_authflavor_t flavor) in svc_get_auth_ops() argument 48 if (flavor >= RPC_AUTH_MAXFLAVOR) in svc_get_auth_ops() 51 aops = rcu_dereference(authtab[flavor]); in svc_get_auth_ops() 79 u32 flavor; in svc_authenticate() local 87 if (xdr_stream_decode_u32(&rqstp->rq_arg_stream, &flavor) < 0) in svc_authenticate() 90 aops = svc_get_auth_ops(flavor); in svc_authenticate() 141 svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops) in svc_auth_register() argument 146 if (flavor < RPC_AUTH_MAXFLAVOR) { in svc_auth_register() 147 old = cmpxchg((struct auth_ops ** __force)&authtab[flavor], NULL, aops); in svc_auth_register() 156 svc_auth_unregister(rpc_authflavor_t flavor) in svc_auth_unregister() argument [all …]
|
| H A D | auth.c | 99 pseudoflavor_to_flavor(u32 flavor) { in pseudoflavor_to_flavor() argument 100 if (flavor > RPC_AUTH_MAXFLAVOR) in pseudoflavor_to_flavor() 102 return flavor; in pseudoflavor_to_flavor() 109 rpc_authflavor_t flavor; in rpcauth_register() local 111 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR) in rpcauth_register() 113 old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], NULL, ops); in rpcauth_register() 124 rpc_authflavor_t flavor; in rpcauth_unregister() local 126 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR) in rpcauth_unregister() 129 old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], ops, NULL); in rpcauth_unregister() 137 rpcauth_get_authops(rpc_authflavor_t flavor) in rpcauth_get_authops() argument [all …]
|
| H A D | svcauth_unix.c | 1028 u32 flavor, len; 1040 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0) in ip_map_cache_create() 1042 if (flavor != RPC_AUTH_NULL || len != 0) { in ip_map_cache_create() 1106 u32 flavor, len; 1119 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0) 1121 if (flavor != RPC_AUTH_NULL || len != 0) { 1191 u32 flavor, len, i; 1242 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0) 1244 if (flavor != RPC_AUTH_NULL || len != 0) { 759 u32 flavor, len; svcauth_null_accept() local 837 u32 flavor, len; svcauth_tls_accept() local 922 u32 flavor, len, i; svcauth_unix_accept() local
|
| H A D | xdr.c | 2392 * @flavor: location to store decoded flavor 2401 ssize_t xdr_stream_decode_opaque_auth(struct xdr_stream *xdr, u32 *flavor, 2406 len = xdr_stream_decode_u32(xdr, flavor); 2420 * @flavor: verifier flavor to encode 2429 ssize_t xdr_stream_encode_opaque_auth(struct xdr_stream *xdr, u32 flavor, 2436 len = xdr_stream_encode_u32(xdr, flavor); 2264 xdr_stream_decode_opaque_auth(struct xdr_stream * xdr,u32 * flavor,void ** body,unsigned int * body_len) xdr_stream_decode_opaque_auth() argument 2292 xdr_stream_encode_opaque_auth(struct xdr_stream * xdr,u32 flavor,void * body,unsigned int body_len) xdr_stream_encode_opaque_auth() argument
|
| H A D | clnt.c | 696 rpc_clone_client_set_auth(struct rpc_clnt *clnt, rpc_authflavor_t flavor) in rpc_clone_client_set_auth() argument 702 .authflavor = flavor, in rpc_clone_client_set_auth()
|
| /linux/scripts/kconfig/ |
| H A D | preprocess.c | 238 enum variable_flavor flavor; member 273 if (v->flavor == VAR_RECURSIVE) in variable_expand() 284 enum variable_flavor flavor) in variable_add() argument 293 if (flavor == VAR_APPEND) { in variable_add() 294 flavor = v->flavor; in variable_add() 301 if (flavor == VAR_APPEND) in variable_add() 302 flavor = VAR_RECURSIVE; in variable_add() 310 v->flavor = flavor; in variable_add() 312 if (flavor == VAR_SIMPLE) in variable_add()
|
| H A D | preprocess.h | 14 enum variable_flavor flavor);
|
| H A D | parser.y | 42 enum variable_flavor flavor; member 98 %type <flavor> assign_op
|
| /linux/tools/testing/selftests/rcutorture/bin/ |
| H A D | torture.sh | 331 # torture_one flavor [ kvm.sh arguments ] 333 # Note that "flavor" is an arbitrary string. Supply --torture if needed. 368 # torture_set flavor [ kvm.sh arguments ] 370 # Note that "flavor" is an arbitrary string that does not affect kvm.sh 376 local flavor=$1 380 curflavor=$flavor 389 curflavor=${flavor}-kasan 398 curflavor=${flavor}-kcsan 405 if test "${flavor}" = rcutorture 470 for flavor i [all...] |
| /linux/tools/testing/selftests/net/ |
| H A D | srv6_end_flavors_test.sh | 19 # Currently in this selftest we consider only the PSP flavor for the SRv6 End 23 # The purpose of the PSP flavor consists in instructing the penultimate node 36 # Although the PSP flavor can be set for any SRv6 End behavior instance on any 47 # "standard" End packet processing, ignoring the configured PSP flavor at 117 # |fcff:x::ef1 is associated with the SRv6 End behavior with PSP flavor | 653 # Direction hs-1 -> hs-2 (PSP flavor) 656 # - rt-4 (SRv6 End flavor PSP with SL>1, acting as End behavior) 657 # - rt-2 (SRv6 End flavor PSP with SL=1) 659 # Direction hs-2 -> hs-1 (PSP flavor) 661 # - rt-1 (SRv6 End flavor PS [all...] |
| /linux/include/linux/sunrpc/ |
| H A D | svcauth.h | 157 extern int svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops); 158 extern void svc_auth_unregister(rpc_authflavor_t flavor);
|
| /linux/include/trace/events/ |
| H A D | rpcgss.h | 647 unsigned int flavor, 651 TP_ARGS(flavor, error), 654 __field(unsigned int, flavor) 660 __entry->flavor = flavor; 665 show_pseudoflavor(__entry->flavor), __entry->error)
|
| /linux/fs/nfs/ |
| H A D | nfs3client.c | 67 rpc_authflavor_t flavor) in nfs3_clone_server() argument 69 struct nfs_server *server = nfs_clone_server(source, fh, fattr, flavor); in nfs3_clone_server()
|
| H A D | nfs4client.c | 61 nfs4_find_ds_client(struct nfs_client *ds_clp, rpc_authflavor_t flavor) in nfs4_find_ds_client() argument 67 if (dss->rpc_clnt->cl_auth->au_flavor != flavor) in nfs4_find_ds_client() 78 nfs4_add_ds_client(struct nfs_client *ds_clp, rpc_authflavor_t flavor, in nfs4_add_ds_client() argument 85 if (dss->rpc_clnt->cl_auth->au_flavor != flavor) in nfs4_add_ds_client() 98 nfs4_alloc_ds_server(struct nfs_client *ds_clp, rpc_authflavor_t flavor) in nfs4_alloc_ds_server() argument 106 dss->rpc_clnt = rpc_clone_client_set_auth(ds_clp->cl_rpcclient, flavor); in nfs4_alloc_ds_server() 136 rpc_authflavor_t flavor = NFS_SERVER(inode)->client->cl_auth->au_flavor; in nfs4_find_or_create_ds_client() local 138 dss = nfs4_find_ds_client(ds_clp, flavor); in nfs4_find_or_create_ds_client() 141 new = nfs4_alloc_ds_server(ds_clp, flavor); in nfs4_find_or_create_ds_client() 144 dss = nfs4_add_ds_client(ds_clp, flavor, new); in nfs4_find_or_create_ds_client()
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | test_progs.c | 1175 * This is done by looking at executable name. If it contains "-flavor" in cd_flavor_subdir() 1181 * some/path/to/test_progs[-flavor], where -flavor part is optional. in cd_flavor_subdir() local 1182 * First cut out "test_progs[-flavor]" part, then extract "flavor" in cd_flavor_subdir() 1185 const char *flavor = strrchr(exec_name, '/'); in cd_flavor_subdir() 1187 if (!flavor) in cd_flavor_subdir() 1188 flavor = exec_name; in cd_flavor_subdir() 1190 flavor++; in cd_flavor_subdir() 1192 flavor in cd_flavor_subdir() [all...] |
| /linux/scripts/ |
| H A D | Makefile.host | 94 -Clinker-flavor=gcc -Clinker=$(HOSTCC) \
|
| /linux/net/sunrpc/auth_gss/ |
| H A D | svcauth_gss.c | 707 u32 flavor, maj_stat; in svcauth_gss_verify_header() local 721 if (xdr_stream_decode_opaque_auth(xdr, &flavor, in svcauth_gss_verify_header() 727 if (flavor != RPC_AUTH_GSS || checksum.len < XDR_UNIT) { in svcauth_gss_verify_header() 1379 u32 flavor, len; in svcauth_gss_proc_init() local 1383 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0) in svcauth_gss_proc_init() 1385 if (flavor != RPC_AUTH_NULL || len != 0) { in svcauth_gss_proc_init()
|
| H A D | auth_gss.c | 1024 rpc_authflavor_t flavor = args->pseudoflavor; in gss_create_new() local 1045 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor); in gss_create_new() 1048 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor); in gss_create_new() 1061 auth->au_flavor = flavor; in gss_create_new() 1062 if (gss_pseudoflavor_to_datatouch(gss_auth->mech, flavor)) in gss_create_new() 1105 trace_rpcgss_createauth(flavor, err); in gss_create_new()
|
| /linux/drivers/media/platform/ti/omap3isp/ |
| H A D | ispccdc.c | 2094 if (info->flavor != MEDIA_BUS_FMT_Y8_1X8) { in ccdc_try_crop() 2114 if (info->flavor != MEDIA_BUS_FMT_Y8_1X8) { in ccdc_try_crop() 2411 if ((in_info->flavor == 0) || (out_info->flavor == 0)) in ccdc_is_shiftable() 2414 if (in_info->flavor != out_info->flavor) in ccdc_is_shiftable()
|
| /linux/Documentation/filesystems/nfs/ |
| H A D | client-identifier.rst | 64 flavor that the client used when presenting it. Servers use this 193 flavor with Kerberos and the integrity QOS to prevent in-transit
|
| /linux/Documentation/RCU/ |
| H A D | checklist.rst | 236 7. As of v4.20, a given kernel implements only one RCU flavor, which 458 flavor of RCU, and you should not use it without first checking 544 with the pair depending on the flavor of RCU:
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | mmap.rst | 14 streaming methods, to determine if the memory mapping flavor is
|
| /linux/Documentation/RCU/Design/Expedited-Grace-Periods/ |
| H A D | Expedited-Grace-Periods.rst | 14 third RCU-bh flavor having been implemented in terms of the other two. 35 operation depend on the RCU flavor, as described in the following
|