Searched refs:flavor (Results 1 - 25 of 38) sorted by relevance

12

/linux-master/arch/loongarch/lib/
H A Dxor_simd_glue.c14 #define MAKE_XOR_GLUE_2(flavor) \
15 void xor_##flavor##_2(unsigned long bytes, unsigned long * __restrict p1, \
19 __xor_##flavor##_2(bytes, p1, p2); \
22 EXPORT_SYMBOL_GPL(xor_##flavor##_2)
24 #define MAKE_XOR_GLUE_3(flavor) \
25 void xor_##flavor##_3(unsigned long bytes, unsigned long * __restrict p1, \
30 __xor_##flavor##_3(bytes, p1, p2, p3); \
33 EXPORT_SYMBOL_GPL(xor_##flavor##_3)
35 #define MAKE_XOR_GLUE_4(flavor) \
36 void xor_##flavor##_
[all...]
/linux-master/scripts/kconfig/
H A Dpreprocess.h14 enum variable_flavor flavor);
H A Dpreprocess.c237 enum variable_flavor flavor; member in struct:variable
272 if (v->flavor == VAR_RECURSIVE)
283 enum variable_flavor flavor)
291 /* For defined variables, += inherits the existing flavor */
292 if (flavor == VAR_APPEND) {
293 flavor = v->flavor;
299 /* For undefined variables, += assumes the recursive flavor */
300 if (flavor == VAR_APPEND)
301 flavor
282 variable_add(const char *name, const char *value, enum variable_flavor flavor) argument
[all...]
H A Dparser.y42 enum variable_flavor flavor;
98 %type <flavor> assign_op
/linux-master/net/sunrpc/
H A Dsvcauth.c43 svc_get_auth_ops(rpc_authflavor_t flavor) argument
47 if (flavor >= RPC_AUTH_MAXFLAVOR)
50 aops = rcu_dereference(authtab[flavor]);
78 u32 flavor; local
83 * Decode the Call credential's flavor field. The credential's
86 if (xdr_stream_decode_u32(&rqstp->rq_arg_stream, &flavor) < 0)
89 aops = svc_get_auth_ops(flavor);
141 svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops) argument
146 if (flavor < RPC_AUTH_MAXFLAVOR) {
147 old = cmpxchg((struct auth_ops ** __force)&authtab[flavor], NUL
156 svc_auth_unregister(rpc_authflavor_t flavor) argument
[all...]
H A Dauth.c99 pseudoflavor_to_flavor(u32 flavor) { argument
100 if (flavor > RPC_AUTH_MAXFLAVOR)
102 return flavor;
109 rpc_authflavor_t flavor; local
111 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
113 old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], NULL, ops);
124 rpc_authflavor_t flavor; local
126 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
129 old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], ops, NULL);
137 rpcauth_get_authops(rpc_authflavor_t flavor) argument
177 rpcauth_get_pseudoflavor(rpc_authflavor_t flavor, struct rpcsec_gss_info *info) argument
204 rpc_authflavor_t flavor = pseudoflavor_to_flavor(pseudoflavor); local
226 u32 flavor = pseudoflavor_to_flavor(args->pseudoflavor); local
[all...]
H A Dsvcauth_unix.c758 u32 flavor, len; local
770 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0)
772 if (flavor != RPC_AUTH_NULL || len != 0) {
836 u32 flavor, len; local
849 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0)
851 if (flavor != RPC_AUTH_NULL || len != 0) {
921 u32 flavor, len, i; local
972 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0)
974 if (flavor != RPC_AUTH_NULL || len != 0) {
/linux-master/include/linux/sunrpc/
H A Dsvcauth.h158 extern int svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops);
159 extern void svc_auth_unregister(rpc_authflavor_t flavor);
H A Dxdr.h352 ssize_t xdr_stream_decode_opaque_auth(struct xdr_stream *xdr, u32 *flavor,
354 ssize_t xdr_stream_encode_opaque_auth(struct xdr_stream *xdr, u32 flavor,
/linux-master/fs/nfs/
H A Dnfs3client.c66 rpc_authflavor_t flavor)
68 struct nfs_server *server = nfs_clone_server(source, fh, fattr, flavor);
63 nfs3_clone_server(struct nfs_server *source, struct nfs_fh *fh, struct nfs_fattr *fattr, rpc_authflavor_t flavor) argument
H A Dsuper.c703 * Display security flavor in effect for this mount
789 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR; local
794 * If the sec= mount option is used, the specified flavor or AUTH_NULL
798 * means that the server will ignore the rpc creds, so any flavor
803 * a security flavor list containing just AUTH_NULL.
806 flavor = server_authlist[i];
808 if (nfs_auth_info_match(&ctx->auth_info, flavor))
811 if (flavor == RPC_AUTH_NULL)
816 flavor = ctx->auth_info.flavors[0];
825 ctx->selected_flavor = flavor;
927 rpc_authflavor_t flavor; local
[all...]
H A Dnfs4client.c48 * Per auth flavor data server rpc clients
58 * @flavor: rpc auth flavour to match
61 nfs4_find_ds_client(struct nfs_client *ds_clp, rpc_authflavor_t flavor) argument
67 if (dss->rpc_clnt->cl_auth->au_flavor != flavor)
78 nfs4_add_ds_client(struct nfs_client *ds_clp, rpc_authflavor_t flavor, argument
85 if (dss->rpc_clnt->cl_auth->au_flavor != flavor)
98 nfs4_alloc_ds_server(struct nfs_client *ds_clp, rpc_authflavor_t flavor) argument
106 dss->rpc_clnt = rpc_clone_client_set_auth(ds_clp->cl_rpcclient, flavor);
129 * Find or create a DS rpc client with th MDS server rpc client auth flavor
136 rpc_authflavor_t flavor local
[all...]
H A Dnfs4_fs.h368 rpc_authflavor_t flavor; local
384 flavor = clp->cl_rpcclient->cl_auth->au_flavor;
385 WARN_ON_ONCE(flavor != RPC_AUTH_GSS_KRB5I &&
386 flavor != RPC_AUTH_GSS_KRB5P);
H A Dnfs4namespace.c196 * recommendation and each flavor is checked for membership in the
199 * Return -EPERM if no matching flavor is found in the array.
215 switch (secinfo->flavor) {
219 pflavor = rpcauth_get_pseudoflavor(secinfo->flavor,
227 /* Cloning creates an rpc_auth for the flavor */
233 * flavor. This is mostly for RPC_AUTH_GSS
251 * return an rpc_clnt that uses the best available security flavor with
252 * respect to the secinfo flavor list and the sec= mount options.
460 /* Look it up again to get its attributes and sec flavor */
H A Dclient.c498 rpc_authflavor_t flavor)
514 .authflavor = flavor,
1118 rpc_authflavor_t flavor)
1144 flavor);
496 nfs_create_rpc_client(struct nfs_client *clp, const struct nfs_client_initdata *cl_init, rpc_authflavor_t flavor) argument
1115 nfs_clone_server(struct nfs_server *source, struct nfs_fh *fh, struct nfs_fattr *fattr, rpc_authflavor_t flavor) argument
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dtorture.sh272 # torture_one flavor [ kvm.sh arguments ]
274 # Note that "flavor" is an arbitrary string. Supply --torture if needed.
309 # torture_set flavor [ kvm.sh arguments ]
311 # Note that "flavor" is an arbitrary string that does not affect kvm.sh
317 local flavor=$1
319 curflavor=$flavor
324 curflavor=${flavor}-kasan
330 curflavor=${flavor}-kcsan
389 for flavor in CONFIG_TASKS_RCU CONFIG_TASKS_RUDE_RCU CONFIG_TASKS_TRACE_RCU
391 forceflavor="`echo $flavor | se
[all...]
/linux-master/tools/testing/selftests/net/
H A Dsrv6_end_flavors_test.sh19 # 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-master/include/trace/events/
H A Drpcgss.h647 unsigned int flavor,
651 TP_ARGS(flavor, error),
654 __field(unsigned int, flavor)
660 __entry->flavor = flavor;
664 TP_printk("flavor=%s error=%d",
665 show_pseudoflavor(__entry->flavor), __entry->error)
/linux-master/drivers/media/platform/ti/omap3isp/
H A Dispvideo.h37 * @flavor: V4L2 media bus format code for the same pixel layout but
47 u32 flavor; member in struct:isp_format_info
H A Dispccdc.c2100 if (info->flavor != MEDIA_BUS_FMT_Y8_1X8) {
2120 if (info->flavor != MEDIA_BUS_FMT_Y8_1X8) {
2417 if ((in_info->flavor == 0) || (out_info->flavor == 0))
2420 if (in_info->flavor != out_info->flavor)
/linux-master/drivers/staging/media/omap4iss/
H A Diss_video.h34 * @flavor: V4L2 media bus format code for the same pixel layout but
43 u32 flavor; member in struct:iss_format_info
/linux-master/tools/testing/selftests/bpf/
H A Dtest_progs.c904 * This is done by looking at executable name. If it contains "-flavor"
910 * some/path/to/test_progs[-flavor], where -flavor part is optional.
911 * First cut out "test_progs[-flavor]" part, then extract "flavor"
914 const char *flavor = strrchr(exec_name, '/'); local
916 if (!flavor)
917 flavor = exec_name;
919 flavor++;
921 flavor
[all...]
/linux-master/scripts/
H A DMakefile.host94 -Clinker-flavor=gcc -Clinker=$(HOSTCC) \
/linux-master/net/sunrpc/auth_gss/
H A Dsvcauth_gss.c707 u32 flavor, maj_stat; local
721 if (xdr_stream_decode_opaque_auth(xdr, &flavor,
727 if (flavor != RPC_AUTH_GSS) {
1384 u32 flavor, len; local
1388 if (xdr_stream_decode_opaque_auth(xdr, &flavor, &body, &len) < 0)
1390 if (flavor != RPC_AUTH_NULL || len != 0) {
H A Dauth_gss.c1025 * parameters based on the input flavor (which must be a pseudoflavor)
1030 rpc_authflavor_t flavor = args->pseudoflavor; local
1051 gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
1054 gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
1067 auth->au_flavor = flavor;
1068 if (gss_pseudoflavor_to_datatouch(gss_auth->mech, flavor))
1111 trace_rpcgss_createauth(flavor, err);
1165 * common client with the same xprt, if they also share the flavor and

Completed in 295 milliseconds

12