| /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; in svcauth_null_accept() local 1040 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0) in svcauth_null_accept() 1042 if (flavor != RPC_AUTH_NULL || len != 0) { in svcauth_null_accept() 1106 u32 flavor, len; in svcauth_tls_accept() local 1119 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0) in svcauth_tls_accept() 1121 if (flavor != RPC_AUTH_NULL || len != 0) { in svcauth_tls_accept() 1191 u32 flavor, len, i; in svcauth_unix_accept() local 1242 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0) in svcauth_unix_accept() 1244 if (flavor != RPC_AUTH_NULL || len != 0) { in svcauth_unix_accept()
|
| H A D | xdr.c | 2401 ssize_t xdr_stream_decode_opaque_auth(struct xdr_stream *xdr, u32 *flavor, in xdr_stream_decode_opaque_auth() argument 2406 len = xdr_stream_decode_u32(xdr, flavor); in xdr_stream_decode_opaque_auth() 2429 ssize_t xdr_stream_encode_opaque_auth(struct xdr_stream *xdr, u32 flavor, in xdr_stream_encode_opaque_auth() argument 2436 len = xdr_stream_encode_u32(xdr, flavor); in xdr_stream_encode_opaque_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 | 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()
|
| 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 | client.c | 534 rpc_authflavor_t flavor) in nfs_create_rpc_client() argument 550 .authflavor = flavor, in nfs_create_rpc_client() 1235 rpc_authflavor_t flavor) in nfs_clone_server() argument 1261 flavor); in nfs_clone_server()
|
| H A D | nfs4proc.c | 763 rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor; in _nfs4_is_integrity_protected() local 764 return (flavor == RPC_AUTH_GSS_KRB5I) || (flavor == RPC_AUTH_GSS_KRB5P); in _nfs4_is_integrity_protected() 4237 rpc_authflavor_t flavor) in nfs4_lookup_root_sec() argument 4240 .pseudoflavor = flavor, in nfs4_lookup_root_sec() 10253 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR; in nfs41_find_root_sec() local 10281 switch (secinfo->flavor) { in nfs41_find_root_sec() 10285 flavor = rpcauth_get_pseudoflavor(secinfo->flavor, in nfs41_find_root_sec() 10289 flavor = RPC_AUTH_MAXFLAVOR; in nfs41_find_root_sec() 10293 if (!nfs_auth_info_match(&server->auth_info, flavor)) in nfs41_find_root_sec() 10294 flavor = RPC_AUTH_MAXFLAVOR; in nfs41_find_root_sec() [all …]
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | test_progs.c | 1199 const char *flavor = strrchr(exec_name, '/'); in cd_flavor_subdir() local 1201 if (!flavor) in cd_flavor_subdir() 1202 flavor = exec_name; in cd_flavor_subdir() 1204 flavor++; in cd_flavor_subdir() 1206 flavor = strrchr(flavor, '-'); in cd_flavor_subdir() 1207 if (!flavor) in cd_flavor_subdir() 1209 flavor++; in cd_flavor_subdir() 1211 fprintf(stdout, "Switching to flavor '%s' subdirectory...\n", flavor); in cd_flavor_subdir() 1213 return chdir(flavor); in cd_flavor_subdir()
|
| /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() 1381 u32 flavor, len; in svcauth_gss_proc_init() local 1385 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0) in svcauth_gss_proc_init() 1387 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/rust/kernel/ |
| H A D | io.rs | 1746 (@parse [$io:expr] [$($proj:tt)*] [[$flavor:ident: $index:expr] $($rest:tt)*]) => { 1747 $crate::io_write!(@parse [$io] [$($proj)* [$flavor: $index]] [$($rest)*])
|
| /linux/fs/nfsd/ |
| H A D | state.h | 390 u32 flavor; /* (u32)(-1) used to mean "no valid flavor" */ member
|
| /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
|