Searched refs:op (Results 1 - 25 of 1769) sorted by relevance

1234567891011>>

/linux-master/fs/afs/
H A Dfs_operation.c20 struct afs_operation *op; local
24 op = kzalloc(sizeof(*op), GFP_KERNEL);
25 if (!op)
31 kfree(op);
38 op->key = key;
39 op->volume = afs_get_volume(volume, afs_volume_trace_get_new_op);
40 op->net = volume->cell->net;
41 op->cb_v_break = atomic_read(&volume->cb_v_break);
42 op
55 afs_get_io_locks(struct afs_operation *op) argument
99 afs_drop_io_locks(struct afs_operation *op) argument
112 afs_prepare_vnode(struct afs_operation *op, struct afs_vnode_param *vp, unsigned int index) argument
138 afs_begin_vnode_operation(struct afs_operation *op) argument
160 afs_end_vnode_operation(struct afs_operation *op) argument
179 afs_wait_for_operation(struct afs_operation *op) argument
230 afs_put_operation(struct afs_operation *op) argument
273 afs_do_sync_operation(struct afs_operation *op) argument
[all...]
H A Drotate.c18 void afs_clear_server_states(struct afs_operation *op) argument
22 if (op->server_states) {
23 for (i = 0; i < op->server_list->nr_servers; i++)
24 afs_put_endpoint_state(op->server_states[i].endpoint_state,
26 kfree(op->server_states);
34 static bool afs_start_fs_iteration(struct afs_operation *op, argument
41 trace_afs_rotate(op, afs_rotate_trace_start, 0);
43 read_lock(&op->volume->servers_lock);
44 op->server_list = afs_get_serverlist(
45 rcu_dereference_protected(op
114 afs_busy(struct afs_operation *op, u32 abort_code) argument
132 afs_sleep_and_retry(struct afs_operation *op) argument
152 afs_select_fileserver(struct afs_operation *op) argument
695 afs_dump_edestaddrreq(const struct afs_operation *op) argument
[all...]
H A Ddir_silly.c15 static void afs_silly_rename_success(struct afs_operation *op) argument
17 _enter("op=%08x", op->debug_id);
19 afs_check_dir_conflict(op, &op->file[0]);
20 afs_vnode_commit_status(op, &op->file[0]);
23 static void afs_silly_rename_edit_dir(struct afs_operation *op) argument
25 struct afs_vnode_param *dvp = &op->file[0];
27 struct afs_vnode *vnode = AFS_FS_I(d_inode(op
64 struct afs_operation *op; local
158 afs_silly_unlink_success(struct afs_operation *op) argument
167 afs_silly_unlink_edit_dir(struct afs_operation *op) argument
195 struct afs_operation *op; local
[all...]
/linux-master/fs/orangefs/
H A Dwaitqueue.c20 static int wait_for_matching_downcall(struct orangefs_kernel_op_s *op,
23 __acquires(op->lock);
24 static void orangefs_clean_up_interrupted_operation(struct orangefs_kernel_op_s *op)
25 __releases(op->lock);
36 struct orangefs_kernel_op_s *op, *tmp; local
39 list_for_each_entry_safe(op, tmp, &orangefs_request_list, list) {
41 "pvfs2-client-core: purging op tag %llu %s\n",
42 llu(op->tag),
43 get_opname_string(op));
44 set_op_state_purged(op);
65 service_operation(struct orangefs_kernel_op_s *op, const char *op_name, int flags) argument
207 orangefs_cancel_op_in_progress(struct orangefs_kernel_op_s *op) argument
[all...]
/linux-master/drivers/acpi/acpica/
H A Dpsutils.c27 * DESCRIPTION: Create a Scope and associated namepath op with the root name
47 * PARAMETERS: op - A newly allocated Op object
56 void acpi_ps_init_op(union acpi_parse_object *op, u16 opcode) argument
60 op->common.descriptor_type = ACPI_DESC_TYPE_PARSER;
61 op->common.aml_opcode = opcode;
63 ACPI_DISASM_ONLY_MEMBERS(acpi_ut_safe_strncpy(op->common.aml_op_name,
66 sizeof(op->common.
79 * DESCRIPTION: Allocate an acpi_op, choose op type (and thus size) based on
87 union acpi_parse_object *op; local
109 /* The generic op (defaul
151 acpi_ps_free_op(union acpi_parse_object *op) argument
187 acpi_ps_get_name(union acpi_parse_object * op) argument
204 acpi_ps_set_name(union acpi_parse_object *op, u32 name) argument
[all...]
H A Dpswalk.c4 * Module Name: pswalk - Parser routines to walk parsed op tree(s)
31 union acpi_parse_object *op = subtree_root; local
42 while (op) {
43 if (op != parent) {
54 acpi_ps_get_opcode_name(op->
57 op);
59 if (op->named.aml_opcode == AML_INT_NAMEPATH_OP) {
61 op->common.value.string);
63 if (op->named.aml_opcode == AML_STRING_OP) {
65 op
[all...]
H A Dacconvert.h43 u32 cv_calculate_comment_lengths(union acpi_parse_object *op);
53 u32 cv_parse_op_block_type(union acpi_parse_object *op);
57 void cg_write_aml_def_block_comment(union acpi_parse_object *op);
60 cg_write_one_aml_comment(union acpi_parse_object *op,
63 void cg_write_aml_comment(union acpi_parse_object *op);
70 void cv_clear_op_comments(union acpi_parse_object *op);
75 void cv_label_file_node(union acpi_parse_object *op);
86 void cv_transfer_comments(union acpi_parse_object *op);
91 void cv_switch_files(u32 level, union acpi_parse_object *op);
93 u8 cv_file_has_switched(union acpi_parse_object *op);
[all...]
H A Dpsobject.c145 * op - Returned Op
157 union acpi_parse_object **op)
215 walk_state->op = NULL;
217 status = walk_state->descending_callback(walk_state, op);
226 if (!*op) {
230 status = acpi_ps_next_parse_state(walk_state, *op, status);
238 acpi_ps_append_arg(*op, unnamed_op->common.value.arg);
244 (*op)->common.inline_comment = unnamed_op->common.inline_comment;
245 (*op)->common.end_node_comment = unnamed_op->common.end_node_comment;
246 (*op)
154 acpi_ps_build_named_op(struct acpi_walk_state *walk_state, u8 *aml_op_start, union acpi_parse_object *unnamed_op, union acpi_parse_object **op) argument
302 union acpi_parse_object *op; local
437 acpi_ps_complete_op(struct acpi_walk_state *walk_state, union acpi_parse_object **op, acpi_status status) argument
636 acpi_ps_complete_final_op(struct acpi_walk_state *walk_state, union acpi_parse_object *op, acpi_status status) argument
[all...]
/linux-master/arch/sh/include/asm/
H A Datomic-llsc.h19 #define ATOMIC_OP(op) \
20 static inline void arch_atomic_##op(int i, atomic_t *v) \
25 "1: movli.l @%2, %0 ! atomic_" #op "\n" \
26 " " #op " %1, %0 \n" \
34 #define ATOMIC_OP_RETURN(op) \
35 static inline int arch_atomic_##op##_return(int i, atomic_t *v) \
40 "1: movli.l @%2, %0 ! atomic_" #op "_return \n" \
41 " " #op " %1, %0 \n" \
52 #define ATOMIC_FETCH_OP(op) \
53 static inline int arch_atomic_fetch_##op(in
[all...]
H A Datomic-grb.h5 #define ATOMIC_OP(op) \
6 static inline void arch_atomic_##op(int i, atomic_t *v) \
16 " " #op " %2, %0 \n\t" /* $op */ \
25 #define ATOMIC_OP_RETURN(op) \
26 static inline int arch_atomic_##op##_return(int i, atomic_t *v) \
36 " " #op " %2, %0 \n\t" /* $op */ \
47 #define ATOMIC_FETCH_OP(op) \
48 static inline int arch_atomic_fetch_##op(in
[all...]
H A Datomic-irq.h13 #define ATOMIC_OP(op, c_op) \
14 static inline void arch_atomic_##op(int i, atomic_t *v) \
23 #define ATOMIC_OP_RETURN(op, c_op) \
24 static inline int arch_atomic_##op##_return(int i, atomic_t *v) \
37 #define ATOMIC_FETCH_OP(op, c_op) \
38 static inline int arch_atomic_fetch_##op(int i, atomic_t *v) \
50 #define ATOMIC_OPS(op, c_op) \
51 ATOMIC_OP(op, c_op) \
52 ATOMIC_OP_RETURN(op, c_op) \
53 ATOMIC_FETCH_OP(op, c_o
[all...]
/linux-master/arch/m68k/atari/
H A Datari.h14 int atari_mste_hwclk(int op, struct rtc_time *t);
15 int atari_tt_hwclk(int op, struct rtc_time *t);
/linux-master/fs/bcachefs/
H A Dio_write.h52 static inline struct workqueue_struct *index_update_wq(struct bch_write_op *op) argument
54 return op->watermark == BCH_WATERMARK_copygc
55 ? op->c->copygc_wq
56 : op->c->btree_update_wq;
65 static inline void bch2_write_op_init(struct bch_write_op *op, struct bch_fs *c, argument
68 op->c = c;
69 op->end_io = NULL;
70 op->flags = 0;
71 op->written = 0;
72 op
[all...]
/linux-master/arch/xtensa/include/asm/
H A Datomic.h58 #define ATOMIC_OP(op) \
59 static inline void arch_atomic_##op(int i, atomic_t *v) \
66 " " #op " %[result], %[tmp], %[i]\n" \
76 #define ATOMIC_OP_RETURN(op) \
77 static inline int arch_atomic_##op##_return(int i, atomic_t *v) \
84 " " #op " %[result], %[tmp], %[i]\n" \
88 " " #op " %[result], %[tmp], %[i]\n" \
97 #define ATOMIC_FETCH_OP(op) \
98 static inline int arch_atomic_fetch_##op(int i, atomic_t *v) \
105 " " #op "
[all...]
/linux-master/tools/testing/selftests/sgx/
H A Dtest_encl.c23 struct encl_op_emodpe *op = _op; local
25 secinfo.flags = op->flags;
31 "c" (op->epc_addr)
38 struct encl_op_eaccept *op = _op; local
41 secinfo.flags = op->flags;
47 "c" (op->epc_addr)
50 op->ret = rax;
75 struct encl_op_init_tcs_page *op = _op; local
76 void *tcs = (void *)op->tcs_page;
80 memcpy(tcs + 16, &op
92 do_encl_op_put_to_buf(void *op) argument
99 do_encl_op_get_from_buf(void *op) argument
108 struct encl_op_put_to_addr *op = _op; local
115 struct encl_op_get_from_addr *op = _op; local
149 encl_op_t op; local
[all...]
/linux-master/lib/zlib_inflate/
H A Dinffast.c89 unsigned op; /* code bits, operation, extra bits, or */ local
127 op = (unsigned)(this.bits);
128 hold >>= op; local
129 bits -= op;
130 op = (unsigned)(this.op);
131 if (op == 0) { /* literal */
134 else if (op & 16) { /* length base */
136 op &= 15; /* number of extra bits */
137 if (op) {
143 hold >>= op; local
155 hold >>= op; local
177 hold >>= op; local
[all...]
/linux-master/arch/sh/kernel/
H A Dkgdb.c20 #define OPCODE_BT(op) (((op) & 0xff00) == 0x8900)
21 #define OPCODE_BF(op) (((op) & 0xff00) == 0x8b00)
22 #define OPCODE_BTF_DISP(op) (((op) & 0x80) ? (((op) | 0xffffff80) << 1) : \
23 (((op) & 0x7f ) << 1))
24 #define OPCODE_BFS(op) (((op)
49 insn_size_t op = __raw_readw(linux_regs->pc); local
[all...]
/linux-master/drivers/hwtracing/coresight/
H A Dcoresight-etm4x.h266 #define ETE_ONLY_SYSREG_LIST(op, val) \
267 CASE_##op((val), TRCRSR) \
268 CASE_##op((val), TRCEXTINSELRn(1)) \
269 CASE_##op((val), TRCEXTINSELRn(2)) \
270 CASE_##op((val), TRCEXTINSELRn(3))
273 #define ETM4x_ONLY_SYSREG_LIST(op, val) \
274 CASE_##op((val), TRCPROCSELR) \
275 CASE_##op((val), TRCVDCTLR) \
276 CASE_##op((val), TRCVDSACCTLR) \
277 CASE_##op((va
[all...]
/linux-master/net/can/
H A Dbcm.c211 struct bcm_op *op; local
220 list_for_each_entry(op, &bo->rx_ops, list) {
225 if (!op->frames_abs)
228 seq_printf(m, "rx_op: %03X %-5s ", op->can_id,
229 bcm_proc_getifname(net, ifname, op->ifindex));
231 if (op->flags & CAN_FD_FRAME)
232 seq_printf(m, "(%u)", op->nframes);
234 seq_printf(m, "[%u]", op->nframes);
236 seq_printf(m, "%c ", (op->flags & RX_CHECK_DLC) ? 'd' : ' ');
238 if (op
284 bcm_can_tx(struct bcm_op *op) argument
331 bcm_send_to_user(struct bcm_op *op, struct bcm_msg_head *head, struct canfd_frame *frames, int has_timestamp) argument
405 bcm_tx_set_expiry(struct bcm_op *op, struct hrtimer *hrt) argument
420 bcm_tx_start_timer(struct bcm_op *op) argument
429 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer); local
461 bcm_rx_changed(struct bcm_op *op, struct canfd_frame *data) argument
492 bcm_rx_update_and_send(struct bcm_op *op, struct canfd_frame *lastdata, const struct canfd_frame *rxdata, unsigned char traffic_flags) argument
540 bcm_rx_cmp_to_index(struct bcm_op *op, unsigned int index, const struct canfd_frame *rxdata, unsigned char traffic_flags) argument
580 bcm_rx_starttimer(struct bcm_op *op) argument
592 struct bcm_op *op = container_of(hrtimer, struct bcm_op, timer); local
619 bcm_rx_do_flush(struct bcm_op *op, unsigned int index) argument
633 bcm_rx_thr_flush(struct bcm_op *op) argument
658 struct bcm_op *op = container_of(hrtimer, struct bcm_op, thrtimer); local
675 struct bcm_op *op = (struct bcm_op *)data; local
759 struct bcm_op *op; local
772 struct bcm_op *op = container_of(rcu_head, struct bcm_op, rcu); local
783 bcm_remove_op(struct bcm_op *op) argument
791 bcm_rx_unreg(struct net_device *dev, struct bcm_op *op) argument
810 struct bcm_op *op, *n; local
861 struct bcm_op *op, *n; local
881 struct bcm_op *op = bcm_find_op(ops, msg_head, ifindex); local
905 struct bcm_op *op; local
1084 struct bcm_op *op; local
1455 struct bcm_op *op; local
1550 struct bcm_op *op, *next; local
[all...]
/linux-master/tools/perf/arch/x86/util/
H A Dcpuid.h7 cpuid(unsigned int op, unsigned int op2, unsigned int *a, unsigned int *b, argument
29 : "a"(op), "2"(op2));
/linux-master/fs/dlm/
H A Dplock.c49 struct plock_op *op = NULL, *iter; local
60 op = iter;
65 return op;
85 static void dlm_release_plock_op(struct plock_op *op) argument
87 kfree(op->data);
88 kfree(op);
91 static void send_op(struct plock_op *op) argument
93 set_version(&op->info);
95 list_add_tail(&op->list, &send_list);
102 struct plock_op *op; local
127 struct plock_op *op; local
238 dlm_plock_callback(struct plock_op *op) argument
292 struct plock_op *op; local
363 struct plock_op *op; local
426 struct plock_op *op; local
485 struct plock_op *op = NULL; local
523 struct plock_op *op = NULL, *iter; local
[all...]
/linux-master/arch/x86/xen/
H A Dtrace.c12 static const char *xen_hypercall_name(unsigned op) argument
14 if (op < ARRAY_SIZE(xen_hypercall_names) && xen_hypercall_names[op] != NULL)
15 return xen_hypercall_names[op];
/linux-master/arch/nios2/include/asm/
H A Dsyscalls.h9 unsigned int op);
/linux-master/arch/hexagon/include/asm/
H A Datomic.h33 #define ATOMIC_OP(op) \
34 static inline void arch_atomic_##op(int i, atomic_t *v) \
40 " %0 = "#op "(%0,%2);\n" \
49 #define ATOMIC_OP_RETURN(op) \
50 static inline int arch_atomic_##op##_return(int i, atomic_t *v) \
56 " %0 = "#op "(%0,%2);\n" \
66 #define ATOMIC_FETCH_OP(op) \
67 static inline int arch_atomic_fetch_##op(int i, atomic_t *v) \
73 " %1 = "#op "(%0,%3);\n" \
83 #define ATOMIC_OPS(op) ATOMIC_O
[all...]
/linux-master/arch/sparc/include/asm/
H A Datomic_64.h23 #define ATOMIC_OP(op) \
24 void arch_atomic_##op(int, atomic_t *); \
25 void arch_atomic64_##op(s64, atomic64_t *);
27 #define ATOMIC_OP_RETURN(op) \
28 int arch_atomic_##op##_return(int, atomic_t *); \
29 s64 arch_atomic64_##op##_return(s64, atomic64_t *);
31 #define ATOMIC_FETCH_OP(op) \
32 int arch_atomic_fetch_##op(int, atomic_t *); \
33 s64 arch_atomic64_fetch_##op(s64, atomic64_t *);
35 #define ATOMIC_OPS(op) ATOMIC_O
[all...]

Completed in 283 milliseconds

1234567891011>>