/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/lib/ |
H A D | hv_vhca.c | 34 void (*control)(struct mlx5_hv_vhca_agent *agent, 36 void (*invalidate)(struct mlx5_hv_vhca_agent *agent, 38 void (*cleanup)(struct mlx5_hv_vhca_agent *agent); 81 struct mlx5_hv_vhca_agent *agent = hv_vhca->agents[i]; in mlx5_hv_vhca_invalidate_work() local 83 if (!agent || !agent->invalidate) in mlx5_hv_vhca_invalidate_work() 86 if (!(BIT(agent->type) & hwork->block_mask)) in mlx5_hv_vhca_invalidate_work() 89 agent->invalidate(agent, hwork->block_mask); in mlx5_hv_vhca_invalidate_work() 120 struct mlx5_hv_vhca_agent *agent = hv_vhca->agents[i]; in mlx5_hv_vhca_agents_control() local 122 if (!agent || !agent->control) in mlx5_hv_vhca_agents_control() 125 if (!(AGENT_MASK(agent->type) & block->control)) in mlx5_hv_vhca_agents_control() [all …]
|
/openbmc/linux/drivers/infiniband/core/ |
H A D | mad_rmpp.c | 47 struct ib_mad_agent_private *agent; member 87 void ib_cancel_rmpp_recvs(struct ib_mad_agent_private *agent) in ib_cancel_rmpp_recvs() argument 92 spin_lock_irqsave(&agent->lock, flags); in ib_cancel_rmpp_recvs() 93 list_for_each_entry(rmpp_recv, &agent->rmpp_list, list) { in ib_cancel_rmpp_recvs() 97 spin_unlock_irqrestore(&agent->lock, flags); in ib_cancel_rmpp_recvs() 99 flush_workqueue(agent->qp_info->port_priv->wq); in ib_cancel_rmpp_recvs() 102 &agent->rmpp_list, list) { in ib_cancel_rmpp_recvs() 137 msg = ib_create_send_mad(&rmpp_recv->agent->agent, recv_wc->wc->src_qp, in ack_recv() 151 static struct ib_mad_send_buf *alloc_response_msg(struct ib_mad_agent *agent, in alloc_response_msg() argument 158 ah = ib_create_ah_from_wc(agent->qp->pd, recv_wc->wc, in alloc_response_msg() [all …]
|
H A D | agent.c | 42 #include "agent.h" 50 struct ib_mad_agent *agent[2]; member 62 if (entry->agent[1]->device == device && in __ib_get_agent_port() 63 entry->agent[1]->port_num == port_num) in __ib_get_agent_port() 86 struct ib_mad_agent *agent; in agent_send_response() local 97 dev_err(&device->dev, "Unable to find port agent\n"); in agent_send_response() 101 agent = port_priv->agent[qpn]; in agent_send_response() 102 ah = ib_create_ah_from_wc(agent->qp->pd, wc, grh, port_num); in agent_send_response() 112 send_buf = ib_create_send_mad(agent, wc->src_qp, wc->pkey_index, 0, in agent_send_response() 164 /* Obtain send only MAD agent for SMI QP */ in ib_agent_port_open() [all …]
|
H A D | user_mad.c | 123 struct ib_mad_agent *agent[IB_UMAD_MAX_AGENTS]; member 183 return file->agents_dead ? NULL : file->agent[id]; in __get_agent() 186 static int queue_packet(struct ib_umad_file *file, struct ib_mad_agent *agent, in queue_packet() argument 200 if (agent == __get_agent(file, packet->mad.hdr.id)) { in queue_packet() 221 static void send_handler(struct ib_mad_agent *agent, in send_handler() argument 224 struct ib_umad_file *file = agent->context; in send_handler() 234 if (!queue_packet(file, agent, packet, false)) in send_handler() 240 static void recv_handler(struct ib_mad_agent *agent, in recv_handler() argument 244 struct ib_umad_file *file = agent->context; in recv_handler() 264 if (rdma_cap_opa_mad(agent->device, agent->port_num)) in recv_handler() [all …]
|
/openbmc/linux/tools/virtio/virtio-trace/ |
H A D | README | 1 Trace Agent for virtio-trace 4 Trace agent is a user tool for sending trace data of a guest to a Host in low 5 overhead. Trace agent has the following functions: 11 The trace agent operates as follows: 16 4) After the controller of the trace agent receives a start order from a host, 28 Makefile: Makefile of trace agent for virtio-trace 29 trace-agent.c: includes main function, sets up for operating trace agent 30 trace-agent.h: includes all structures and some macros 31 trace-agent-ctl.c: includes controller function for read/write threads 32 trace-agent-rw.c: includes read/write threads function [all …]
|
H A D | Makefile | 5 all: trace-agent 10 trace-agent: trace-agent.o trace-agent-ctl.o trace-agent-rw.o 14 rm -f *.o trace-agent
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/openthread/ot-br-posix/ |
H A D | 0001-otbr-agent.service.in-remove-pre-exec-hook-for-mdns-.patch | 4 Subject: [PATCH] otbr-agent.service.in: remove pre exec hook for mdns service 17 src/agent/otbr-agent.service.in | 2 +- 20 diff --git a/src/agent/otbr-agent.service.in b/src/agent/otbr-agent.service.in 22 --- a/src/agent/otbr-agent.service.in 23 +++ b/src/agent/otbr-agent.service.in 27 EnvironmentFile=-@CMAKE_INSTALL_FULL_SYSCONFDIR@/default/otbr-agent 28 -@EXEC_START_PRE@ExecStart=@CMAKE_INSTALL_FULL_SBINDIR@/otbr-agent $OTBR_AGENT_OPTS 29 +ExecStart=@CMAKE_INSTALL_FULL_SBINDIR@/otbr-agent $OTBR_AGENT_OPTS
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/ |
H A D | hv_vhca_stats.c | 60 struct mlx5_hv_vhca_agent *agent; in mlx5e_hv_vhca_stats_work() local 70 agent = sagent->agent; in mlx5e_hv_vhca_stats_work() 76 rc = mlx5_hv_vhca_agent_write(agent, buf, buf_len); in mlx5e_hv_vhca_stats_work() 93 static void mlx5e_hv_vhca_stats_control(struct mlx5_hv_vhca_agent *agent, in mlx5e_hv_vhca_stats_control() argument 99 priv = mlx5_hv_vhca_agent_priv(agent); in mlx5e_hv_vhca_stats_control() 116 static void mlx5e_hv_vhca_stats_cleanup(struct mlx5_hv_vhca_agent *agent) in mlx5e_hv_vhca_stats_cleanup() argument 118 struct mlx5e_priv *priv = mlx5_hv_vhca_agent_priv(agent); in mlx5e_hv_vhca_stats_cleanup() 126 struct mlx5_hv_vhca_agent *agent; in mlx5e_hv_vhca_stats_create() local 132 agent = mlx5_hv_vhca_agent_create(priv->mdev->hv_vhca, in mlx5e_hv_vhca_stats_create() 138 if (IS_ERR_OR_NULL(agent)) { in mlx5e_hv_vhca_stats_create() [all …]
|
/openbmc/linux/drivers/target/sbp/ |
H A D | sbp_target.c | 259 struct sbp_management_agent *agent, struct sbp_management_request *req, in sbp_management_request_login() argument 262 struct sbp_tport *tport = agent->tport; in sbp_management_request_login() 478 struct sbp_management_agent *agent, struct sbp_management_request *req, in sbp_management_request_query_logins() argument 490 struct sbp_management_agent *agent, struct sbp_management_request *req, in sbp_management_request_reconnect() argument 493 struct sbp_tport *tport = agent->tport; in sbp_management_request_reconnect() 549 struct sbp_management_agent *agent, struct sbp_management_request *req, in sbp_management_request_logout() argument 552 struct sbp_tport *tport = agent->tport; in sbp_management_request_logout() 669 struct sbp_target_agent *agent) in tgt_agent_rw_agent_state() argument 677 spin_lock_bh(&agent->lock); in tgt_agent_rw_agent_state() 678 state = agent->state; in tgt_agent_rw_agent_state() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/ |
H A D | polkit-gnome-authentication-agent-1.desktop | 2 Name=PolicyKit Authentication Agent 6 Name[ca]=Agent d'autenticació del PolicyKit 7 Name[cs]=Ověřovací agent PolicyKit 11 Name[en_GB]=PolicyKit Authentication Agent 15 Name[fr]=Agent d'authentification de PolicyKit 28 Name[pl]=Agent uwierzytelniania PolicyKit 31 Name[ro]=Agent de autentificare PolicyKit 32 Name[sk]=Agent PolicyKit na overovanie totožnosti 42 Comment=PolicyKit Authentication Agent 46 Comment[ca]=Agent d'autenticació del PolicyKit [all …]
|
/openbmc/linux/drivers/infiniband/sw/rdmavt/ |
H A D | mad.c | 46 static void rvt_send_mad_handler(struct ib_mad_agent *agent, in rvt_send_mad_handler() argument 56 * If driver needs to be notified of mad agent creation then call back 62 struct ib_mad_agent *agent; in rvt_create_mad_agents() local 69 agent = ib_register_mad_agent(&rdi->ibdev, p + 1, in rvt_create_mad_agents() 73 if (IS_ERR(agent)) { in rvt_create_mad_agents() 74 ret = PTR_ERR(agent); in rvt_create_mad_agents() 78 rvp->send_agent = agent; in rvt_create_mad_agents() 90 agent = rvp->send_agent; in rvt_create_mad_agents() 92 ib_unregister_mad_agent(agent); in rvt_create_mad_agents() 105 * If driver needs notification of mad agent removal make the call back [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/snowridgex/ |
H A D | uncore-interconnect.json | 601 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 0 : Number of CMS Agent 0 AD credits acqui… 610 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 1 : Number of CMS Agent 0 AD credits acqui… 619 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 2 : Number of CMS Agent 0 AD credits acqui… 628 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 3 : Number of CMS Agent 0 AD credits acqui… 637 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 4 : Number of CMS Agent 0 AD credits acqui… 646 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 5 : Number of CMS Agent 0 AD credits acqui… 655 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 6 : Number of CMS Agent 0 AD credits acqui… 664 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 7 : Number of CMS Agent 0 AD credits acqui… 673 …ion": "CMS Agent0 AD Credits Acquired : For Transgress 10 : Number of CMS Agent 0 AD credits acqui… 682 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 8 : Number of CMS Agent 0 AD credits acqui… [all …]
|
H A D | uncore-cache.json | 59 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 0 : Number of CMS Agent 0 AD credits acqui… 68 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 1 : Number of CMS Agent 0 AD credits acqui… 77 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 2 : Number of CMS Agent 0 AD credits acqui… 86 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 3 : Number of CMS Agent 0 AD credits acqui… 95 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 4 : Number of CMS Agent 0 AD credits acqui… 104 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 5 : Number of CMS Agent 0 AD credits acqui… 113 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 6 : Number of CMS Agent 0 AD credits acqui… 122 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 7 : Number of CMS Agent 0 AD credits acqui… 131 …ion": "CMS Agent0 AD Credits Acquired : For Transgress 10 : Number of CMS Agent 0 AD credits acqui… 140 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 8 : Number of CMS Agent 0 AD credits acqui… [all …]
|
/openbmc/intel-ipmi-oem/include/ |
H A D | smbiosmdrv2.hpp | 42 // MDR II Pull Agent status inquiry command 59 // MDR II Pull Agent directory information inquiry command 76 // MDR II Pull Agent data set information inquiry command 94 // MDR II Pull Agent lock data set command 102 // MDR II Pull Agent lock data set response 112 // MDR II Pull Agent unlock data set command 119 // MDR II Pull Agent get data block command 128 // MDR II Pull Agent get data block response 137 // MDR II Push Agent send dir info command 148 // MDR II Push Agent offer data set info command [all …]
|
/openbmc/linux/include/trace/events/ |
H A D | ib_mad.h | 55 __entry->dev_index = wr->mad_agent_priv->agent.device->index; 56 __entry->port_num = wr->mad_agent_priv->agent.port_num; 86 TP_printk("%d:%d QP%d agent %p: " \ 144 __entry->dev_index = wr->mad_agent_priv->agent.device->index; 145 __entry->port_num = wr->mad_agent_priv->agent.port_num; 167 TP_printk("%d:%d QP%d : SEND WC Status %d : agent %p: " \ 247 TP_PROTO(struct ib_mad_agent_private *agent), 248 TP_ARGS(agent), 259 __entry->dev_index = agent->agent.device->index; 260 __entry->port_num = agent->agent.port_num; [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/tcf-agent/ |
H A D | tcf-agent_git.bb | 13 SRC_URI = "git://git.eclipse.org/r/tcf/org.eclipse.tcf.agent.git;protocol=https;branch=master \ 15 file://tcf-agent.init \ 16 file://tcf-agent.service \ 22 S = "${WORKDIR}/git/agent" 26 SYSTEMD_SERVICE:${PN} = "tcf-agent.service" 28 INITSCRIPT_NAME = "tcf-agent" 57 install -m 0755 ${UNPACKDIR}/tcf-agent.init ${D}${sysconfdir}/init.d/tcf-agent 59 install -m 0644 ${UNPACKDIR}/tcf-agent.service ${D}${systemd_system_unitdir} 60 sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_system_unitdir}/tcf-agent.service
|
/openbmc/linux/drivers/mfd/ |
H A D | twl4030-irq.c | 439 struct sih_agent *agent = irq_data_get_irq_chip_data(data); in twl4030_sih_mask() local 441 agent->imr |= BIT(data->irq - agent->irq_base); in twl4030_sih_mask() 442 agent->imr_change_pending = true; in twl4030_sih_mask() 447 struct sih_agent *agent = irq_data_get_irq_chip_data(data); in twl4030_sih_unmask() local 449 agent->imr &= ~BIT(data->irq - agent->irq_base); in twl4030_sih_unmask() 450 agent->imr_change_pending = true; in twl4030_sih_unmask() 455 struct sih_agent *agent = irq_data_get_irq_chip_data(data); in twl4030_sih_set_type() local 461 agent->edge_change |= BIT(data->irq - agent->irq_base); in twl4030_sih_set_type() 468 struct sih_agent *agent = irq_data_get_irq_chip_data(data); in twl4030_sih_bus_lock() local 470 mutex_lock(&agent->irq_lock); in twl4030_sih_bus_lock() [all …]
|
/openbmc/linux/Documentation/firmware-guide/acpi/ |
H A D | intel-pmc-mux.rst | 4 Intel North Mux-Agent 10 North Mux-Agent is a function of the Intel PMC firmware that is supported on 13 platforms that allow the mux-agent to be configured from the operating system 16 The North Mux-Agent (aka. Intel PMC Mux Control, or just mux-agent) driver 30 For every USB Type-C connector under the mux-agent control on the system, there 31 is a separate child node under the PMC mux-agent device node. Those nodes do not 32 represent the actual connectors, but instead the "channels" in the mux-agent 67 Mux-agent specific _DSD Device Properties 79 these device properties as-is when sending the mux-agent specific messages to 94 be "fixed" from the mux-agent's point of view, which means the mux-agent driver [all …]
|
/openbmc/linux/drivers/firmware/arm_scmi/ |
H A D | optee.c | 36 * already identified and bound to channel handle in both SCMI agent 60 * SCMI shm information are 0 if agent expects to use OP-TEE regular SHM 115 * @link: Reference in agent's channel list 139 * @channel_list: List of all created channels for the agent 156 static int open_session(struct scmi_optee_agent *agent, u32 *tee_session) in open_session() argument 158 struct device *dev = agent->dev; in open_session() 166 ret = tee_client_open_session(agent->tee_ctx, &arg, NULL); in open_session() 177 static void close_session(struct scmi_optee_agent *agent, u32 tee_session) in close_session() argument 179 tee_client_close_session(agent->tee_ctx, tee_session); in close_session() 182 static int get_capabilities(struct scmi_optee_agent *agent) in get_capabilities() argument [all …]
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | create-spdx-3.0.bbclass | 67 # Bitbake variables can be used to describe an SPDX Agent that may be used 68 # during the build. An Agent is specified using a set of variables which all 71 # <BASE>_name: The name of the Agent (required) 72 # <BASE>_type: The type of Agent. Must be one of "person", "organization", 73 # "software", or "agent" (the default if not specified) 74 # <BASE>_comment: The comment for the Agent (optional) 75 # <BASE>_id_<ID>: And External Identifier for the Agent. <ID> must be a valid 79 # Alternatively, an Agent can be an external reference by referencing a key 84 # Finally, the same agent described by another set of agent variables can be 103 SPDX_INVOKED_BY[doc] = "The base variable name to describe the Agent that \ [all …]
|
/openbmc/openbmc/poky/meta/recipes-support/gnupg/gnupg/ |
H A D | 0001-configure.ac-use-a-custom-value-for-the-location-of-.patch | 5 gpg-agent socket in the filesystem 7 This should avoid clashes with the host gpg-agent observed on autobuilders. 23 -AC_DEFINE_UNQUOTED(GPG_AGENT_SOCK_NAME, "S.gpg-agent", 24 +AC_DEFINE_UNQUOTED(GPG_AGENT_SOCK_NAME, "S.gpg-agent.yocto-native", 25 [The name of the agent socket]) 26 AC_DEFINE_UNQUOTED(GPG_AGENT_EXTRA_SOCK_NAME, "S.gpg-agent.extra", 27 [The name of the agent socket for remote access])
|
/openbmc/openbmc/poky/meta/recipes-devtools/qemu/ |
H A D | qemu.inc | 35 file://qemu-guest-agent.init \ 36 file://qemu-guest-agent.udev \ 140 # If we built the guest agent, also install startup/udev rules 143 install -m 0755 ${UNPACKDIR}/qemu-guest-agent.init ${D}${sysconfdir}/init.d/qemu-guest-agent 144 sed -i 's:@bindir@:${bindir}:' ${D}${sysconfdir}/init.d/qemu-guest-agent 147 …install -m 0644 ${UNPACKDIR}/qemu-guest-agent.udev ${D}${sysconfdir}/udev/rules.d/60-qemu-guest-ag… 150 install -m 0644 ${S}/contrib/systemd/qemu-guest-agent.service ${D}${systemd_unitdir}/system 151 sed -i -e 's,-/usr/bin/,-${bindir}/,g' ${D}${systemd_unitdir}/system/qemu-guest-agent.service 252 # Put the guest agent in a separate package 253 PACKAGES =+ "${PN}-guest-agent" [all …]
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/icelakex/ |
H A D | uncore-interconnect.json | 601 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 0 : Number of CMS Agent 0 AD credits acqui… 610 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 1 : Number of CMS Agent 0 AD credits acqui… 619 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 2 : Number of CMS Agent 0 AD credits acqui… 628 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 3 : Number of CMS Agent 0 AD credits acqui… 637 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 4 : Number of CMS Agent 0 AD credits acqui… 646 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 5 : Number of CMS Agent 0 AD credits acqui… 655 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 6 : Number of CMS Agent 0 AD credits acqui… 664 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 7 : Number of CMS Agent 0 AD credits acqui… 673 …ion": "CMS Agent0 AD Credits Acquired : For Transgress 10 : Number of CMS Agent 0 AD credits acqui… 682 …tion": "CMS Agent0 AD Credits Acquired : For Transgress 8 : Number of CMS Agent 0 AD credits acqui… [all …]
|
/openbmc/openbmc/poky/meta/recipes-connectivity/kea/files/ |
H A D | fix-multilib-conflict.patch | 7 | file /etc/kea/kea-ctrl-agent.conf conflicts between attempted installs of 19 src/bin/keactrl/kea-ctrl-agent.conf.pre | 3 ++- 23 diff --git a/src/bin/keactrl/kea-ctrl-agent.conf.pre b/src/bin/keactrl/kea-ctrl-agent.conf.pre 25 --- a/src/bin/keactrl/kea-ctrl-agent.conf.pre 26 +++ b/src/bin/keactrl/kea-ctrl-agent.conf.pre 28 // Agent will fail to start. 31 -// "library": "@libdir@/kea/hooks/control-agent-commands.so", 33 +// "library": "$libdir/kea/hooks/control-agent-commands.so",
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/ |
H A D | gnome-keyring_46.2.bb | 27 file://0001-Set-paths-to-ssh-agent-and-ssh-add-by-configure-opti.patch \ 31 PACKAGECONFIG ??= "ssh-agent" 32 …ECONFIG[ssh-agent] = "--enable-ssh-agent --with-ssh-agent-path=${bindir}/ssh-agent --with-ssh-add-…
|