Searched refs:op (Results 201 - 225 of 1791) sorted by relevance

1234567891011>>

/linux-master/include/linux/
H A Dpacking.h34 * @op: If PACK, then uval will be treated as const pointer and copied (packed)
43 * If op is PACK, pbuf is modified.
44 * If op is UNPACK, uval is modified.
47 enum packing_op op, u8 quirks);
H A Damd-pmf-io.h49 int amd_get_sfh_info(struct amd_sfh_info *sfh_info, enum sfh_message_type op);
/linux-master/include/xen/arm/
H A Dhypercall.h52 unsigned long HYPERVISOR_hvm_op(int op, void *arg);
60 static inline int HYPERVISOR_platform_op(struct xen_platform_op *op) argument
62 op->interface_version = XENPF_INTERFACE_VERSION;
63 return HYPERVISOR_platform_op_raw(op);
/linux-master/include/asm-generic/
H A Dfutex.h18 #define arch_futex_atomic_op_inuser(op, oparg, oval, uaddr) \
19 futex_atomic_op_inuser_local(op, oparg, oval, uaddr)
38 futex_atomic_op_inuser_local(int op, u32 oparg, int *oval, u32 __user *uaddr) argument
52 switch (op) {
/linux-master/lib/
H A Datomic64.c69 #define ATOMIC64_OP(op, c_op) \
70 void generic_atomic64_##op(s64 a, atomic64_t *v) \
79 EXPORT_SYMBOL(generic_atomic64_##op);
81 #define ATOMIC64_OP_RETURN(op, c_op) \
82 s64 generic_atomic64_##op##_return(s64 a, atomic64_t *v) \
93 EXPORT_SYMBOL(generic_atomic64_##op##_return);
95 #define ATOMIC64_FETCH_OP(op, c_op) \
96 s64 generic_atomic64_fetch_##op(s64 a, atomic64_t *v) \
108 EXPORT_SYMBOL(generic_atomic64_fetch_##op);
110 #define ATOMIC64_OPS(op, c_o
[all...]
/linux-master/security/integrity/
H A Dintegrity_audit.c29 const unsigned char *fname, const char *op,
32 integrity_audit_message(audit_msgno, inode, fname, op, cause,
37 const unsigned char *fname, const char *op,
56 audit_log_format(ab, " op=%s cause=%s comm=", op, cause);
28 integrity_audit_msg(int audit_msgno, struct inode *inode, const unsigned char *fname, const char *op, const char *cause, int result, int audit_info) argument
36 integrity_audit_message(int audit_msgno, struct inode *inode, const unsigned char *fname, const char *op, const char *cause, int result, int audit_info, int errno) argument
/linux-master/fs/xfs/
H A Dxfs_bio_io.c18 enum req_op op)
26 if (is_vmalloc && op == REQ_OP_WRITE)
29 bio = bio_alloc(bdev, bio_max_vecs(left), op | REQ_META | REQ_SYNC,
56 if (is_vmalloc && op == REQ_OP_READ)
13 xfs_rw_bdev( struct block_device *bdev, sector_t sector, unsigned int count, char *data, enum req_op op) argument
/linux-master/include/xen/
H A Dhvm.h9 static const char *param_name(int op) argument
31 if (op >= ARRAY_SIZE(names))
34 if (!names[op])
37 return names[op];
/linux-master/io_uring/
H A Depoll.c19 int op; member in struct:io_epoll
32 epoll->op = READ_ONCE(sqe->len);
35 if (ep_op_has_event(epoll->op)) {
52 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
/linux-master/tools/perf/util/bpf_skel/
H A Dsample-filter.h21 enum perf_bpf_filter_op op; member in struct:perf_bpf_filter_entry
/linux-master/drivers/infiniband/core/
H A Dnetlink.c61 static bool is_nl_msg_valid(unsigned int type, unsigned int op) argument
78 return op < max_num_ops[type];
82 get_cb_table(const struct sk_buff *skb, unsigned int type, unsigned int op) argument
106 if (!cb_table || (!cb_table[op].dump && !cb_table[op].doit))
132 int len, int client, int op, int flags)
134 *nlh = nlmsg_put(skb, 0, seq, RDMA_NL_GET_TYPE(client, op), len, flags);
157 unsigned int op = RDMA_NL_GET_OP(type); local
161 if (!is_nl_msg_valid(index, op))
165 cb_table = get_cb_table(skb, index, op);
131 ibnl_put_msg(struct sk_buff *skb, struct nlmsghdr **nlh, int seq, int len, int client, int op, int flags) argument
[all...]
/linux-master/drivers/mtd/hyperbus/
H A Drpc-if.c49 struct rpcif_op op = rpcif_op_tmpl; local
51 op.cmd.opcode = HYPERBUS_RW_READ | HYPERBUS_AS_MEM;
52 op.addr.val = from >> 1;
53 op.dummy.buswidth = 1;
54 op.dummy.ncycles = 15;
55 op.data.dir = RPCIF_DATA_IN;
56 op.data.nbytes = len;
57 op.data.buf.in = to;
59 rpcif_prepare(rpc->dev, &op, NULL, NULL);
65 struct rpcif_op op local
[all...]
/linux-master/arch/sh/include/asm/
H A Dsyscalls.h11 asmlinkage int sys_cacheflush(unsigned long addr, unsigned long len, int op);
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtcp_rtt.c30 int op = (int) ctx->op; local
42 if (op == BPF_SOCK_OPS_TCP_CONNECT_CB) {
47 if (op != BPF_SOCK_OPS_RTT_CB)
H A Dtest_tcpbpf_kern.c41 int op; local
50 "%[op] = *(u32 *)(%[skops] +96)"
51 : [op] "=r"(op)
83 op = (int) skops->op;
85 global.event_map |= (1 << op);
87 switch (op) {
/linux-master/lib/zstd/decompress/
H A Dzstd_decompress_block.c753 * Copies 8 bytes from ip to op and updates op and ip where ip <= op.
756 * Precondition: *ip <= *op
757 * Postcondition: *op - *op >= 8
759 HINT_INLINE void ZSTD_overlapCopy8(BYTE** op, BYTE const** ip, size_t offset) { argument
760 assert(*ip <= *op);
766 (*op)[0] = (*ip)[0];
767 (*op)[
792 ZSTD_safecopy(BYTE* op, const BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) argument
832 ZSTD_safecopyDstBeforeSrc(BYTE* op, BYTE const* ip, ptrdiff_t length) argument
861 ZSTD_execSequenceEnd(BYTE* op, BYTE* const oend, seq_t sequence, const BYTE** litPtr, const BYTE* const litLimit, const BYTE* const prefixStart, const BYTE* const virtualStart, const BYTE* const dictEnd) argument
908 ZSTD_execSequenceEndSplitLitBuffer(BYTE* op, BYTE* const oend, const BYTE* const oend_w, seq_t sequence, const BYTE** litPtr, const BYTE* const litLimit, const BYTE* const prefixStart, const BYTE* const virtualStart, const BYTE* const dictEnd) argument
953 ZSTD_execSequence(BYTE* op, BYTE* const oend, seq_t sequence, const BYTE** litPtr, const BYTE* const litLimit, const BYTE* const prefixStart, const BYTE* const virtualStart, const BYTE* const dictEnd) argument
1046 ZSTD_execSequenceSplitLitBuffer(BYTE* op, BYTE* const oend, const BYTE* const oend_w, seq_t sequence, const BYTE** litPtr, const BYTE* const litLimit, const BYTE* const prefixStart, const BYTE* const virtualStart, const BYTE* const dictEnd) argument
1287 ZSTD_assertValidSequence( ZSTD_DCtx const* dctx, BYTE const* op, BYTE const* oend, seq_t const seq, BYTE const* prefixStart, BYTE const* virtualStart) argument
1332 BYTE* op = ostart; local
1549 BYTE* op = ostart; local
1678 BYTE* op = ostart; local
[all...]
/linux-master/drivers/xen/xenfs/
H A Dxensyms.c17 struct xen_platform_op op; member in struct:xensyms
26 struct xenpf_symdata *symdata = &xs->op.u.symdata;
34 ret = HYPERVISOR_platform_op(&xs->op);
53 ret = HYPERVISOR_platform_op(&xs->op);
69 xs->op.u.symdata.symnum = *pos;
81 xs->op.u.symdata.symnum = ++(*pos);
92 struct xenpf_symdata *symdata = &xs->op.u.symdata;
131 set_xen_guest_handle(xs->op.u.symdata.name, xs->name);
132 xs->op.cmd = XENPF_get_symbol;
133 xs->op
[all...]
/linux-master/drivers/usb/host/
H A Dehci-ppc-of.c94 static int ehci_hcd_ppc_of_probe(struct platform_device *op) argument
96 struct device_node *dn = op->dev.of_node;
108 dev_dbg(&op->dev, "initializing PPC-OF USB Controller\n");
114 hcd = usb_create_hcd(&ehci_ppc_of_hc_driver, &op->dev, "PPC-OF USB");
123 dev_err(&op->dev, "%s: irq_of_parse_and_map failed\n",
129 hcd->regs = devm_ioremap_resource(&op->dev, &res);
141 devm_ioremap(&op->dev,
187 static void ehci_hcd_ppc_of_remove(struct platform_device *op) argument
189 struct usb_hcd *hcd = platform_get_drvdata(op);
195 dev_dbg(&op
[all...]
/linux-master/arch/s390/include/asm/
H A Datomic.h52 #define ATOMIC_OPS(op) \
53 static __always_inline void arch_atomic_##op(int i, atomic_t *v) \
55 __atomic_##op(i, &v->counter); \
57 static __always_inline int arch_atomic_fetch_##op(int i, atomic_t *v) \
59 return __atomic_##op##_barrier(i, &v->counter); \
123 #define ATOMIC64_OPS(op) \
124 static __always_inline void arch_atomic64_##op(s64 i, atomic64_t *v) \
126 __atomic64_##op(i, (long *)&v->counter); \
128 static __always_inline long arch_atomic64_fetch_##op(s64 i, atomic64_t *v) \
130 return __atomic64_##op##_barrie
[all...]
/linux-master/fs/bcachefs/
H A Ddata_update.c38 struct bch_fs *c = m->op.c;
93 struct bch_write_op *op)
95 struct bch_fs *c = op->c;
98 container_of(op, struct data_update, op);
99 struct keylist *keys = &op->insert_keys;
174 bch2_bkey_durability(c, k) >= m->op.opts.data_replicas) {
212 durability - ptr_durability >= m->op.opts.data_replicas) {
235 if (disk_sectors_delta > (s64) op->res.sectors) {
236 ret = bch2_disk_reservation_add(c, &op
92 __bch2_data_update_index_update(struct btree_trans *trans, struct bch_write_op *op) argument
339 bch2_data_update_index_update(struct bch_write_op *op) argument
[all...]
/linux-master/arch/sh/kernel/
H A Dsys_sh.c58 asmlinkage int sys_cacheflush(unsigned long addr, unsigned long len, int op) argument
62 if ((op <= 0) || (op > (CACHEFLUSH_D_PURGE|CACHEFLUSH_I)))
79 switch (op & CACHEFLUSH_D_PURGE) {
91 if (op & CACHEFLUSH_I)
/linux-master/drivers/scsi/libfc/
H A Dfc_elsct.c26 * @op: The operational code
32 struct fc_frame *fp, unsigned int op,
43 if ((op >= ELS_LS_RJT) && (op <= ELS_AUTH_ELS))
44 rc = fc_els_fill(lport, did, fp, op, &r_ctl, &fh_type);
47 rc = fc_ct_fill(lport, did, fp, op, &r_ctl, &fh_type, &did);
31 fc_elsct_send(struct fc_lport *lport, u32 did, struct fc_frame *fp, unsigned int op, void (*resp)(struct fc_seq *, struct fc_frame *, void *), void *arg, u32 timer_msec) argument
/linux-master/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_rap.c50 uint32_t op; local
57 ret = kstrtouint_from_user(buf, size, *pos, &op);
72 switch (op) {
74 ret = psp_rap_invoke(&adev->psp, op, &status);
98 dev_info(adev->dev, "Unsupported op id: %d, ", op);
99 dev_info(adev->dev, "Only support op 2(L0 validate test).\n");
/linux-master/tools/perf/tests/
H A Devsel-roundtrip-name.c14 for (int op = 0; op < PERF_COUNT_HW_CACHE_OP_MAX; op++) {
16 if (!evsel__is_cache_op_valid(type, op))
29 __evsel__hw_cache_type_op_res_name(type, op, res,
/linux-master/drivers/misc/cxl/
H A Dhcalls.c117 static char *op_str(unsigned int op, char *name_array[], int array_len) argument
119 if (op >= array_len)
121 return name_array[op];
124 #define OP_STR(op, name_array) op_str(op, name_array, ARRAY_SIZE(name_array))
126 #define OP_STR_AFU(op) OP_STR(op, afu_op_names)
127 #define OP_STR_CONTROL_ADAPTER(op) OP_STR(op, control_adapter_op_names)
128 #define OP_STR_DOWNLOAD_ADAPTER(op) OP_ST
205 cxl_h_control_function(u64 unit_address, u64 op, u64 p1, u64 p2, u64 p3, u64 p4, u64 *out) argument
478 cxl_h_control_facility(u64 unit_address, u64 op, u64 p1, u64 p2, u64 p3, u64 p4, u64 *out) argument
558 cxl_h_download_facility(u64 unit_address, u64 op, u64 list_address, u64 num, u64 *out) argument
[all...]

Completed in 391 milliseconds

1234567891011>>