Searched refs:token (Results 226 - 250 of 519) sorted by relevance

1234567891011>>

/linux-master/arch/powerpc/platforms/pseries/
H A Drtas-fadump.c501 const __be32 *token; local
507 token = of_get_flat_dt_prop(node, "ibm,configure-kernel-dump", NULL);
508 if (!token)
511 fadump_conf->ibm_configure_kernel_dump = be32_to_cpu(*token);
H A Dpapr_scm.c133 unsigned long ret_buf[PLPAR_HCALL_BUFSIZE], token = 0; local
139 rc = plpar_hcall(H_SCM_FLUSH, ret_buf, p->drc_index, token);
140 token = ret_buf[0];
168 uint64_t token; local
173 * hcall it returns H_BUSY and we call again with the token until
177 token = 0;
181 p->blocks, BIND_ANY_ADDR, token);
182 token = ret[0];
200 uint64_t token = 0; local
210 p->drc_index, token);
[all...]
/linux-master/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_cpp.h69 * NFP_CPP_ID() - pack target, token, and action into a CPP ID.
72 * @token: NFP CPP token id
81 #define NFP_CPP_ID(target, action, token) \
82 ((((target) & 0x7f) << 24) | (((token) & 0xff) << 16) | \
86 * NFP_CPP_ISLAND_ID() - pack target, token, action, and island into a CPP ID.
89 * @token: NFP CPP token id
99 #define NFP_CPP_ISLAND_ID(target, action, token, island) \
100 ((((target) & 0x7f) << 24) | (((token)
[all...]
/linux-master/drivers/net/ethernet/brocade/bna/
H A Dbfa_msgq.h70 u16 token; member in struct:bfa_msgq_cmdq
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/core/
H A Dobject.h19 u64 token; member in struct:nvkm_object
/linux-master/drivers/of/
H A Dirq.c677 * @bus_token: Bus token
697 * @token: bus type for this domain
706 enum irq_domain_bus_token token)
714 d = irq_find_matching_host(msi_np, token);
720 if (token == DOMAIN_BUS_PLATFORM_MSI) {
728 d = irq_find_matching_host(args.np, token);
704 of_msi_get_domain(struct device *dev, struct device_node *np, enum irq_domain_bus_token token) argument
/linux-master/drivers/xen/xenbus/
H A Dxenbus_probe_frontend.c89 const char *path, const char *token)
91 xenbus_otherend_changed(watch, path, token, 1);
178 const char *path, const char *token)
349 const char *path, const char *token)
88 backend_changed(struct xenbus_watch *watch, const char *path, const char *token) argument
177 frontend_changed(struct xenbus_watch *watch, const char *path, const char *token) argument
348 xenbus_reset_backend_state_changed(struct xenbus_watch *w, const char *path, const char *token) argument
/linux-master/sound/soc/qcom/qdsp6/
H A Dq6asm.c289 hdr->token = ac->session;
355 pkt->hdr.token = ((ac->session << 8) | dir);
463 pkt->hdr.token = ((ac->session << 8) | dir);
667 ac->cb(client_event, hdr->token,
678 int token = hdr->token & ASM_WRITE_TOKEN_MASK; local
690 phys = port->buf[token].phys;
695 &port->buf[token].phys);
718 phys = port->buf[hdr->token].phys;
723 &port->buf[hdr->token]
[all...]
/linux-master/net/smc/
H A Dsmc_core.h222 u64 token; member in struct:smc_buf_desc::__anon3996::__anon3998
223 /* DMB token number */
435 /* Find the connection associated with the given alert token in the link group.
438 * @token alert token to search for
440 * Returns connection associated with token if found, NULL otherwise.
443 u32 token, struct smc_link_group *lgr)
453 if (cur->alert_token_local > token) {
456 if (cur->alert_token_local < token) {
442 smc_lgr_find_conn( u32 token, struct smc_link_group *lgr) argument
/linux-master/net/mptcp/
H A Ddiag.c58 nla_put_u32(skb, MPTCP_SUBFLOW_ATTR_TOKEN_LOC, sf->token) ||
H A Dsubflow.c68 /* validate received token and create truncated hmac and nonce for SYN-ACK */
90 msk = mptcp_token_get_sock(sock_net(req_to_sk(req)), subflow_req->token);
181 &subflow_req->token,
183 if (mptcp_token_exists(subflow_req->token)) {
206 subflow_req->token = mp_opt.token;
236 pr_debug("token=%u, remote_nonce=%u msk=%p", subflow_req->token,
388 pr_debug("subflow=%p, token=%u, thmac=%llu, subflow->thmac=%llu\n",
389 subflow, subflow->token, thma
[all...]
/linux-master/drivers/gpu/drm/ci/
H A Dbuild.sh145 ci-fairy s3cp --token-file "${CI_JOB_JWT_FILE}" /lava-files/$f \
151 ci-fairy s3cp --token-file "${CI_JOB_JWT_FILE}" ${S3_ARTIFACT_NAME} https://${PIPELINE_ARTIFACTS_BASE}/${DEBIAN_ARCH}/${S3_ARTIFACT_NAME}
H A Dlava-submit.sh30 ci-fairy s3cp --token-file "${CI_JOB_JWT_FILE}" job-rootfs-overlay.tar.gz "https://${JOB_ROOTFS_OVERLAY_PATH}"
/linux-master/kernel/bpf/
H A DMakefile9 obj-$(CONFIG_BPF_SYSCALL) += syscall.o verifier.o inode.o helpers.o tnum.o log.o token.o
H A Dsyscall.c1064 static int map_check_btf(struct bpf_map *map, struct bpf_token *token, argument
1093 if (!bpf_token_capable(token, CAP_BPF)) {
1186 struct bpf_token *token = NULL; local
1246 token = bpf_token_get_from_fd(attr->map_token_fd);
1247 if (IS_ERR(token))
1248 return PTR_ERR(token);
1250 /* if current token doesn't grant map creation permissions,
1251 * then we can't use this token, so ignore it and rely on
1254 if (!bpf_token_allow_cmd(token, BPF_MAP_CREATE) ||
1255 !bpf_token_allow_map_type(token, att
2688 struct bpf_token *token = NULL; local
4966 struct bpf_token *token = NULL; local
[all...]
/linux-master/drivers/net/ethernet/mellanox/mlx5/core/
H A Dcmd.c147 u8 token; local
150 cmd->token++;
151 if (cmd->token == 0)
152 cmd->token++;
153 token = cmd->token;
156 return token;
1019 lay->token = ent->token;
1084 return "token erro
1181 mlx5_cmd_invoke(struct mlx5_core_dev *dev, struct mlx5_cmd_msg *in, struct mlx5_cmd_msg *out, void *uout, int uout_size, mlx5_cmd_cbk_t callback, void *context, int page_queue, u8 token, bool force_polling) argument
1282 mlx5_copy_to_msg(struct mlx5_cmd_msg *to, void *from, int size, u8 token) argument
1377 mlx5_alloc_cmd_msg(struct mlx5_core_dev *dev, gfp_t flags, int size, u8 token) argument
1851 u8 token; local
[all...]
/linux-master/drivers/nvme/target/
H A Dfcloop.c63 int token, ret = 0; local
74 token = match_token(p, opt_tokens, args);
75 opts->mask |= token;
76 switch (token) {
94 if (match_int(args, &token)) {
98 opts->roles = token;
101 if (match_hex(args, &token)) {
105 opts->fcaddr = token;
142 int token, ret = 0; local
156 token
[all...]
/linux-master/fs/btrfs/
H A Dctree.c3115 struct btrfs_map_token token; local
3189 btrfs_init_map_token(&token, right);
3194 push_space -= btrfs_token_item_size(&token, i);
3195 btrfs_set_token_item_offset(&token, i, push_space);
3338 struct btrfs_map_token token; local
3386 btrfs_init_map_token(&token, left);
3391 ioff = btrfs_token_item_offset(&token, i);
3392 btrfs_set_token_item_offset(&token, i,
3413 btrfs_init_map_token(&token, right);
3418 push_space = push_space - btrfs_token_item_size(&token,
3533 struct btrfs_map_token token; local
4016 struct btrfs_map_token token; local
4107 struct btrfs_map_token token; local
4178 struct btrfs_map_token token; local
4481 struct btrfs_map_token token; local
[all...]
/linux-master/drivers/xen/
H A Dmanage.c221 const char *path, const char *token)
270 const char *token)
220 shutdown_handler(struct xenbus_watch *watch, const char *path, const char *token) argument
269 sysrq_handler(struct xenbus_watch *watch, const char *path, const char *token) argument
/linux-master/include/xen/
H A Dxenbus.h70 const char *path, const char *token);
74 const char *path, const char *token);
/linux-master/net/sunrpc/auth_gss/
H A Dgss_krb5_internal.h46 struct xdr_netobj *token);
88 struct xdr_netobj *token);
/linux-master/net/9p/
H A Dtrans_rdma.c199 int token; local
203 token = match_token(p, tokens, args);
204 if ((token != Opt_err) && (token != Opt_privport)) {
212 switch (token) {
/linux-master/arch/powerpc/kernel/
H A Drtas_flash.c152 unsigned int update_results; /* Update results token */
447 int token = rtas_function_token(RTAS_FN_IBM_VALIDATE_FLASH_IMAGE); local
455 rc = rtas_call(token, 2, 2, &update_results,
723 int token; local
732 token = rtas_function_token(f->handle);
733 if (token == RTAS_UNKNOWN_SERVICE)
/linux-master/drivers/vfio/fsl-mc/
H A Dvfio_fsl_mc.c79 u16 token; local
83 &token);
86 ret = fsl_mc_obj_reset(mc_dev->mc_io, 0, token);
88 fsl_mc_obj_close(mc_dev->mc_io, 0, token);
91 ret = fsl_mc_obj_close(mc_dev->mc_io, 0, token);
/linux-master/drivers/infiniband/hw/mlx5/
H A Dodp.c48 u32 token; member in struct:mlx5_pagefault
389 pfault->wqe.wq_num : pfault->token;
395 MLX5_SET(page_fault_resume_in, in, token, pfault->token);
1272 ret, wqe_index, pfault->token);
1331 ret, pfault->token, pfault->type);
1337 pfault->token, pfault->type,
1353 ret, pfault->token, address, prefetch_len);
1414 pfault->token =
1426 "PAGE_FAULT: type:0x%x, token
[all...]

Completed in 376 milliseconds

1234567891011>>