| /OK3568_Linux_fs/kernel/net/sunrpc/ |
| H A D | svcauth.c | 41 svc_get_auth_ops(rpc_authflavor_t flavor) in svc_get_auth_ops() argument 45 if (flavor >= RPC_AUTH_MAXFLAVOR) in svc_get_auth_ops() 48 aops = rcu_dereference(authtab[flavor]); in svc_get_auth_ops() 64 rpc_authflavor_t flavor; in svc_authenticate() local 69 flavor = svc_getnl(&rqstp->rq_arg.head[0]); in svc_authenticate() 71 dprintk("svc: svc_authenticate (%d)\n", flavor); in svc_authenticate() 73 aops = svc_get_auth_ops(flavor); in svc_authenticate() 113 svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops) in svc_auth_register() argument 118 if (flavor < RPC_AUTH_MAXFLAVOR) { in svc_auth_register() 119 old = cmpxchg((struct auth_ops ** __force)&authtab[flavor], NULL, aops); in svc_auth_register() [all …]
|
| H A D | auth.c | 102 pseudoflavor_to_flavor(u32 flavor) { in pseudoflavor_to_flavor() argument 103 if (flavor > RPC_AUTH_MAXFLAVOR) in pseudoflavor_to_flavor() 105 return flavor; in pseudoflavor_to_flavor() 112 rpc_authflavor_t flavor; in rpcauth_register() local 114 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR) in rpcauth_register() 116 old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], NULL, ops); in rpcauth_register() 127 rpc_authflavor_t flavor; in rpcauth_unregister() local 129 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR) in rpcauth_unregister() 132 old = cmpxchg((const struct rpc_authops ** __force)&auth_flavors[flavor], ops, NULL); in rpcauth_unregister() 140 rpcauth_get_authops(rpc_authflavor_t flavor) in rpcauth_get_authops() argument [all …]
|
| /OK3568_Linux_fs/kernel/scripts/kconfig/ |
| H A D | preprocess.c | 234 enum variable_flavor flavor; member 269 if (v->flavor == VAR_RECURSIVE) in variable_expand() 280 enum variable_flavor flavor) in variable_add() argument 289 if (flavor == VAR_APPEND) { in variable_add() 290 flavor = v->flavor; in variable_add() 297 if (flavor == VAR_APPEND) in variable_add() 298 flavor = VAR_RECURSIVE; in variable_add() 306 v->flavor = flavor; in variable_add() 308 if (flavor == VAR_SIMPLE) in variable_add()
|
| H A D | lkc_proto.h | 45 enum variable_flavor flavor);
|
| H A D | parser.y | 42 enum variable_flavor flavor; member 101 %type <flavor> assign_op
|
| /OK3568_Linux_fs/kernel/fs/nfs/ |
| H A D | super.c | 756 rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR; in nfs_verify_authflavors() local 773 flavor = server_authlist[i]; in nfs_verify_authflavors() 775 if (nfs_auth_info_match(&ctx->auth_info, flavor)) in nfs_verify_authflavors() 778 if (flavor == RPC_AUTH_NULL) in nfs_verify_authflavors() 783 flavor = ctx->auth_info.flavors[0]; in nfs_verify_authflavors() 792 ctx->selected_flavor = flavor; in nfs_verify_authflavors() 895 rpc_authflavor_t flavor; in nfs_try_mount_request() local 898 flavor = authlist[i]; in nfs_try_mount_request() 899 switch (flavor) { in nfs_try_mount_request() 907 if (rpcauth_get_gssinfo(flavor, &info) != 0) in nfs_try_mount_request() [all …]
|
| H A D | nfs4client.c | 60 nfs4_find_ds_client(struct nfs_client *ds_clp, rpc_authflavor_t flavor) in nfs4_find_ds_client() argument 66 if (dss->rpc_clnt->cl_auth->au_flavor != flavor) in nfs4_find_ds_client() 77 nfs4_add_ds_client(struct nfs_client *ds_clp, rpc_authflavor_t flavor, in nfs4_add_ds_client() argument 84 if (dss->rpc_clnt->cl_auth->au_flavor != flavor) in nfs4_add_ds_client() 97 nfs4_alloc_ds_server(struct nfs_client *ds_clp, rpc_authflavor_t flavor) in nfs4_alloc_ds_server() argument 105 dss->rpc_clnt = rpc_clone_client_set_auth(ds_clp->cl_rpcclient, flavor); in nfs4_alloc_ds_server() 135 rpc_authflavor_t flavor = NFS_SERVER(inode)->client->cl_auth->au_flavor; in nfs4_find_or_create_ds_client() local 137 dss = nfs4_find_ds_client(ds_clp, flavor); in nfs4_find_or_create_ds_client() 140 new = nfs4_alloc_ds_server(ds_clp, flavor); in nfs4_find_or_create_ds_client() 143 dss = nfs4_add_ds_client(ds_clp, flavor, new); in nfs4_find_or_create_ds_client()
|
| H A D | nfs3client.c | 62 rpc_authflavor_t flavor) in nfs3_clone_server() argument 64 struct nfs_server *server = nfs_clone_server(source, fh, fattr, flavor); in nfs3_clone_server()
|
| H A D | nfs4_fs.h | 363 rpc_authflavor_t flavor; in _nfs4_state_protect() local 379 flavor = clp->cl_rpcclient->cl_auth->au_flavor; in _nfs4_state_protect() 380 WARN_ON_ONCE(flavor != RPC_AUTH_GSS_KRB5I && in _nfs4_state_protect() 381 flavor != RPC_AUTH_GSS_KRB5P); in _nfs4_state_protect()
|
| H A D | nfs4namespace.c | 214 switch (secinfo->flavor) { in nfs_find_best_sec() 218 pflavor = rpcauth_get_pseudoflavor(secinfo->flavor, in nfs_find_best_sec()
|
| H A D | client.c | 502 rpc_authflavor_t flavor) in nfs_create_rpc_client() argument 516 .authflavor = flavor, in nfs_create_rpc_client() 1046 rpc_authflavor_t flavor) in nfs_clone_server() argument 1073 flavor); in nfs_clone_server()
|
| /OK3568_Linux_fs/kernel/include/trace/events/ |
| H A D | rpcgss.h | 619 unsigned int flavor, 623 TP_ARGS(flavor, error), 626 __field(unsigned int, flavor) 632 __entry->flavor = flavor; 637 show_pseudoflavor(__entry->flavor), __entry->error)
|
| /OK3568_Linux_fs/kernel/include/linux/sunrpc/ |
| H A D | svcauth.h | 155 extern int svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops); 156 extern void svc_auth_unregister(rpc_authflavor_t flavor);
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.multi-dtb-fit | 8 U-Boot flavor: 20 SPL flavor: 42 Impacts and performances (SPL flavor):
|
| /OK3568_Linux_fs/buildroot/package/mg/ |
| H A D | Config.in | 9 learn more than one Emacs flavor.
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/inih/files/ |
| H A D | 0001-include-install-header-files-without-prefix-dir-inih.patch | 3 The other flavor of inih which adapted by Fedora and Ubuntu installs
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/mk/ |
| H A D | platform_flags.mk | 31 platform-flavor-armv8 := 1
|
| /OK3568_Linux_fs/u-boot/doc/mvebu/ |
| H A D | armada-8k-memory.txt | 6 This assumes that the SoC includes Dual CP configuration, in case the flavor is using
|
| /OK3568_Linux_fs/kernel/Documentation/RCU/ |
| H A D | lockdep.rst | 8 aware of when each task enters and leaves any flavor of RCU read-side 9 critical section. Each flavor of RCU is tracked separately (but note
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/omap4iss/ |
| H A D | iss_video.h | 44 u32 flavor; member
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/omap3isp/ |
| H A D | ispvideo.h | 47 u32 flavor; member
|
| H A D | ispccdc.c | 2088 if (info->flavor != MEDIA_BUS_FMT_Y8_1X8) { in ccdc_try_crop() 2108 if (info->flavor != MEDIA_BUS_FMT_Y8_1X8) { in ccdc_try_crop() 2398 if ((in_info->flavor == 0) || (out_info->flavor == 0)) in ccdc_is_shiftable() 2401 if (in_info->flavor != out_info->flavor) in ccdc_is_shiftable()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/cargo/ |
| H A D | cargo-cross-canadian.inc | 1 SUMMARY = "Cargo, a package manager for Rust cross canadian flavor."
|
| /OK3568_Linux_fs/buildroot/package/python-autobahn/ |
| H A D | 0002-Build-with-nvx-by-default-and-don-t-publish-universa.patch | 52 - # based on the install flavor the user has chosen (eg pip install autobahn[nvx]
|
| /OK3568_Linux_fs/buildroot/boot/optee-os/ |
| H A D | Config.in | 91 string "Target platform flavor (optional)"
|