Home
last modified time | relevance | path

Searched refs:rpc (Results 1 – 25 of 27) sorted by relevance

12

/Linux-v5.4/arch/mips/pci/
Dpci-rt3883.c80 static inline u32 rt3883_pci_r32(struct rt3883_pci_controller *rpc, in rt3883_pci_r32() argument
83 return ioread32(rpc->base + reg); in rt3883_pci_r32()
86 static inline void rt3883_pci_w32(struct rt3883_pci_controller *rpc, in rt3883_pci_w32() argument
89 iowrite32(val, rpc->base + reg); in rt3883_pci_w32()
99 static u32 rt3883_pci_read_cfg32(struct rt3883_pci_controller *rpc, in rt3883_pci_read_cfg32() argument
109 rt3883_pci_w32(rpc, address, RT3883_PCI_REG_CFGADDR); in rt3883_pci_read_cfg32()
110 ret = rt3883_pci_r32(rpc, RT3883_PCI_REG_CFGDATA); in rt3883_pci_read_cfg32()
115 static void rt3883_pci_write_cfg32(struct rt3883_pci_controller *rpc, in rt3883_pci_write_cfg32() argument
124 rt3883_pci_w32(rpc, address, RT3883_PCI_REG_CFGADDR); in rt3883_pci_write_cfg32()
125 rt3883_pci_w32(rpc, val, RT3883_PCI_REG_CFGDATA); in rt3883_pci_write_cfg32()
[all …]
/Linux-v5.4/drivers/greybus/
Des2.c884 struct arpc *rpc; in arpc_alloc() local
886 if (size + sizeof(*rpc->req) > ARPC_OUT_SIZE_MAX) in arpc_alloc()
889 rpc = kzalloc(sizeof(*rpc), GFP_KERNEL); in arpc_alloc()
890 if (!rpc) in arpc_alloc()
893 INIT_LIST_HEAD(&rpc->list); in arpc_alloc()
894 rpc->req = kzalloc(sizeof(*rpc->req) + size, GFP_KERNEL); in arpc_alloc()
895 if (!rpc->req) in arpc_alloc()
898 rpc->resp = kzalloc(sizeof(*rpc->resp), GFP_KERNEL); in arpc_alloc()
899 if (!rpc->resp) in arpc_alloc()
902 rpc->req->type = type; in arpc_alloc()
[all …]
/Linux-v5.4/drivers/clk/renesas/
Drcar-gen3-cpg.c446 struct rpc_clock *rpc; in cpg_rpc_clk_register() local
449 rpc = kzalloc(sizeof(*rpc), GFP_KERNEL); in cpg_rpc_clk_register()
450 if (!rpc) in cpg_rpc_clk_register()
453 rpc->div.reg = base + CPG_RPCCKCR; in cpg_rpc_clk_register()
454 rpc->div.width = 3; in cpg_rpc_clk_register()
455 rpc->div.table = cpg_rpc_div_table; in cpg_rpc_clk_register()
456 rpc->div.lock = &cpg_lock; in cpg_rpc_clk_register()
458 rpc->gate.reg = base + CPG_RPCCKCR; in cpg_rpc_clk_register()
459 rpc->gate.bit_idx = 8; in cpg_rpc_clk_register()
460 rpc->gate.flags = CLK_GATE_SET_TO_DISABLE; in cpg_rpc_clk_register()
[all …]
/Linux-v5.4/drivers/md/
Ddm-era-target.c1163 struct rpc { struct
1276 struct rpc *rpc, *tmp; in process_rpc_calls() local
1283 list_for_each_entry_safe(rpc, tmp, &calls, list) { in process_rpc_calls()
1284 rpc->result = rpc->fn0 ? rpc->fn0(era->md) : rpc->fn1(era->md, rpc->arg); in process_rpc_calls()
1291 list_for_each_entry_safe(rpc, tmp, &calls, list) in process_rpc_calls()
1292 rpc->result = r; in process_rpc_calls()
1295 list_for_each_entry_safe(rpc, tmp, &calls, list) in process_rpc_calls()
1296 complete(&rpc->complete); in process_rpc_calls()
1329 static int perform_rpc(struct era *era, struct rpc *rpc) in perform_rpc() argument
1331 rpc->result = 0; in perform_rpc()
[all …]
/Linux-v5.4/drivers/pci/pcie/
Daer.c1159 static void aer_isr_one_error(struct aer_rpc *rpc, in aer_isr_one_error() argument
1162 struct pci_dev *pdev = rpc->rpd; in aer_isr_one_error()
1214 struct aer_rpc *rpc = get_service_data(dev); in aer_isr() local
1217 if (kfifo_is_empty(&rpc->aer_fifo)) in aer_isr()
1220 while (kfifo_get(&rpc->aer_fifo, &e_src)) in aer_isr()
1221 aer_isr_one_error(rpc, &e_src); in aer_isr()
1235 struct aer_rpc *rpc = get_service_data(pdev); in aer_irq() local
1236 struct pci_dev *rp = rpc->rpd; in aer_irq()
1247 if (!kfifo_put(&rpc->aer_fifo, e_src)) in aer_irq()
1294 static void aer_enable_rootport(struct aer_rpc *rpc) in aer_enable_rootport() argument
[all …]
/Linux-v5.4/drivers/net/ethernet/aquantia/atlantic/hw_atl/
Dhw_atl_utils_fw2x.c347 struct hw_atl_utils_fw_rpc *rpc = NULL; in aq_fw2x_set_sleep_proxy() local
354 rpc_size = sizeof(rpc->msg_id) + sizeof(*cfg); in aq_fw2x_set_sleep_proxy()
356 err = hw_atl_utils_fw_rpc_wait(self, &rpc); in aq_fw2x_set_sleep_proxy()
360 memset(rpc, 0, rpc_size); in aq_fw2x_set_sleep_proxy()
361 cfg = (struct offload_info *)(&rpc->msg_id + 1); in aq_fw2x_set_sleep_proxy()
392 struct hw_atl_utils_fw_rpc *rpc = NULL; in aq_fw2x_set_wol_params() local
398 err = hw_atl_utils_fw_rpc_wait(self, &rpc); in aq_fw2x_set_wol_params()
402 msg = (struct fw2x_msg_wol *)rpc; in aq_fw2x_set_wol_params()
Dhw_atl_utils.c442 (u32 *)(void *)&self->rpc, in hw_atl_utils_fw_rpc_call()
457 struct hw_atl_utils_fw_rpc **rpc) in hw_atl_utils_fw_rpc_wait() argument
480 if (rpc) { in hw_atl_utils_fw_rpc_wait()
486 &self->rpc, in hw_atl_utils_fw_rpc_wait()
494 *rpc = &self->rpc; in hw_atl_utils_fw_rpc_wait()
Dhw_atl_utils.h483 struct hw_atl_utils_fw_rpc **rpc);
/Linux-v5.4/Documentation/filesystems/nfs/
Drpc-server-gss.txt47 to talk to a custom daemon called rpc.svcgssd that is provide by the
74 This upcall mechanism uses the kernel rpc client and connects to the gssproxy
84 /proc/net/rpc/use-gss-proxy. If gss-proxy dies, it must repeat both
90 from /proc/net/rpc/use-gss-proxy and checking that it contains a
Dnfs41-server.txt11 control file, the nfsd service must be taken down. You can use rpc.nfsd
12 for this; see rpc.nfsd(8).
17 on or off; rpc.nfsd does this correctly.)
Didmapper.txt9 or by placing a call to the rpc.idmap daemon.
19 legacy rpc.idmap daemon for the id mapping. This result will be stored
Dnfsd-admin-interfaces.txt39 Note that the rpc server requires the caller to serialize addition and
Drpc-cache.txt131 with that name is created in /proc/net/rpc
/Linux-v5.4/drivers/staging/most/dim2/
Dhal.c69 u16 rpc; member
389 g.atx_dbr.rpc = dim2_rpc(ch_addr); in dbrcnt_init()
390 g.atx_dbr.wpc = g.atx_dbr.rpc; in dbrcnt_init()
410 while (norm_pc(dbr->rpc) != cur_rpc) { in dim_dbr_space()
411 dbr->rest_size += dbr->sz_queue[norm_pc(dbr->rpc)]; in dim_dbr_space()
412 dbr->rpc++; in dim_dbr_space()
415 if ((u16)(dbr->wpc - dbr->rpc) >= CDT0_RPC_MASK) in dim_dbr_space()
/Linux-v5.4/drivers/tee/optee/
DMakefile5 optee-objs += rpc.o
/Linux-v5.4/tools/io_uring/
Dio_uring-bench.c568 unsigned long rpc = 0, ipc = 0; in main() local
575 rpc = (this_done - done) / (this_call - calls); in main()
578 rpc = ipc = -1; in main()
581 this_done - done, rpc, ipc, s->inflight, in main()
/Linux-v5.4/arch/mips/include/asm/
Dasm.h38 #define NESTED(symbol, framesize, rpc) \ argument
43 symbol: .frame sp, framesize, rpc; \
/Linux-v5.4/arch/sparc/kernel/
Dprocess_64.c228 rp->rpc = rw->ins[7]; in __global_reg_self()
232 rp->rpc = 0; in __global_reg_self()
295 (void *) gp->rpc); in arch_trigger_cpumask_backtrace()
298 gp->tpc, gp->o7, gp->i7, gp->rpc); in arch_trigger_cpumask_backtrace()
/Linux-v5.4/Documentation/devicetree/bindings/mailbox/
Dmailbox.txt35 mbox-names = "pwr-ctrl", "rpc";
/Linux-v5.4/arch/sparc/include/asm/
Dptrace.h46 unsigned long rpc; member
/Linux-v5.4/fs/nfs/
Dsuper.c921 struct rpc_clnt *rpc; in nfs_umount_begin() local
925 rpc = server->client_acl; in nfs_umount_begin()
926 if (!IS_ERR(rpc)) in nfs_umount_begin()
927 rpc_killall_tasks(rpc); in nfs_umount_begin()
928 rpc = server->client; in nfs_umount_begin()
929 if (!IS_ERR(rpc)) in nfs_umount_begin()
930 rpc_killall_tasks(rpc); in nfs_umount_begin()
/Linux-v5.4/drivers/net/ethernet/aquantia/atlantic/
Daq_hw.h137 struct hw_atl_utils_fw_rpc rpc; member
/Linux-v5.4/arch/arm/
DMakefile212 machine-$(CONFIG_ARCH_RPC) += rpc
/Linux-v5.4/drivers/dma/
Dimx-sdma.c236 u32 rpc :14; member
/Linux-v5.4/Documentation/filesystems/
Dproc.txt1189 rpc Directory containing rpc info

12