Home
last modified time | relevance | path

Searched refs:op_name (Results 1 – 16 of 16) sorted by relevance

/linux/arch/s390/include/asm/
H A Datomic_ops.h63 #define __ATOMIC_OP(op_name, op_type, op_string, op_barrier) \ argument
64 static __always_inline op_type op_name(op_type val, op_type *ptr) \
76 #define __ATOMIC_OPS(op_name, op_type, op_string) \ argument
77 __ATOMIC_OP(op_name, op_type, op_string, "") \
78 __ATOMIC_OP(op_name##_barrier, op_type, op_string, "\nbcr 14,0")
93 #define __ATOMIC_CONST_OP(op_name, op_type, op_string, op_barrier) \ argument
94 static __always_inline void op_name(op_type val, op_type *ptr) \
102 #define __ATOMIC_CONST_OPS(op_name, op_type, op_string) \ argument
103 __ATOMIC_CONST_OP(op_name, op_type, op_string, "") \
104 __ATOMIC_CONST_OP(op_name##_barrier, op_type, op_string, "\nbcr 14,0")
[all …]
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dverifier_log.c50 char *exp_log, prog_name[24], op_name[32]; in verif_log_subtest() local
139 snprintf(op_name, sizeof(op_name), in verif_log_subtest()
141 if (!ASSERT_EQ(prog_fd, -ENOSPC, op_name)) { in verif_log_subtest()
147 snprintf(op_name, sizeof(op_name), in verif_log_subtest()
149 ASSERT_EQ(strlen(logs.buf), i - 1, op_name); in verif_log_subtest()
156 snprintf(op_name, sizeof(op_name), in verif_log_subtest()
158 if (!ASSERT_STRNEQ(logs.buf, exp_log, i - 1, op_name)) { in verif_log_subtest()
274 char *exp_log, op_name[32]; verif_btf_log_subtest() local
[all...]
/linux/fs/nfsd/
H A Dnfs4proc.c3755 .op_name = "OP_ACCESS",
3761 .op_name = "OP_CLOSE",
3769 .op_name = "OP_COMMIT",
3775 .op_name = "OP_CREATE",
3781 .op_name = "OP_DELEGRETURN",
3789 .op_name = "OP_GETATTR",
3793 .op_name = "OP_GETFH",
3800 .op_name = "OP_LINK",
3808 .op_name = "OP_LOCK",
3816 .op_name = "OP_LOCKT",
[all …]
H A Dxdr4.h1082 char *op_name; member
/linux/tools/perf/pmu-events/
H A Dmake_legacy_cache.py102 for op_name in op_names:
103 deprecated = (names[0] != name or op_names[1] != op_name)
113 deprecated = ((names[0] != name or op_names[0] != op_name) or
/linux/tools/net/ynl/pyynl/
H A Dethtool.py
H A Dcli.py295 for op_name, op in ynl.ops.items():
296 print(op_name, " [", ", ".join(op.modes), "]")
298 for op_name, op in ynl.msgs.items():
299 print(op_name, " [", ", ".join(op.modes), "]")
H A Dynl_gen_c.py2053 for op_name, op in family.msgs.items():
2953 for op_name, op in family.ops.items():
2976 for op_name, op in family.ops.items():
3006 for op_name, op in family.ops.items():
/linux/tools/net/ynl/tests/
H A Dethtool.py21 def args_to_req(ynl, op_name, args, req): argument
25 valid_attrs = ynl.operation_do_attributes(op_name)
85 def do_set(ynl, args, op_name): argument
95 args_to_req(ynl, op_name, args.args, req)
96 ynl.do(op_name, req)
98 def do_get(ynl, args, op_name, extra=None): argument
107 reply = ynl.do(op_name, req)
/linux/fs/orangefs/
H A Dwaitqueue.c66 const char *op_name, in service_operation() argument
82 op_name, in service_operation()
166 op_name); in service_operation()
184 op_name, in service_operation()
200 op_name, in service_operation()
/linux/tools/testing/selftests/vfio/lib/
H A Dvfio_pci_driver.c39 const char *op_name) in vfio_check_driver_op() argument
42 VFIO_ASSERT_NOT_NULL(op, "Driver has no %s()\n", op_name); in vfio_check_driver_op()
/linux/tools/testing/selftests/mm/
H A Dvm_util.h79 static inline void skip_test_dodgy_fs(const char *op_name) in skip_test_dodgy_fs() argument
81 ksft_test_result_skip("%s failed with ENOENT. Filesystem might be buggy (9pfs?)\n", op_name); in skip_test_dodgy_fs()
/linux/arch/sparc/include/uapi/asm/
H A Dopenpromio.h55 char __user *op_name; /* Pointer to the property name. */ member
/linux/drivers/sbus/char/
H A Dopenprom.c398 str = copyin_string(op.op_name, op.op_namelen); in opiocget()
432 str = copyin_string(op.op_name, op.op_namelen); in opiocnextprop()
477 str = copyin_string(op.op_name, op.op_namelen); in opiocset()
/linux/drivers/block/
H A Dxen-blkfront.c426 static const char *op_name(int op) in op_name() function
1591 info->gd->disk_name, op_name(bret.operation), id); in blkif_interrupt()
1606 info->gd->disk_name, op_name(bret.operation)); in blkif_interrupt()
1618 info->gd->disk_name, op_name(bret.operation)); in blkif_interrupt()
1624 info->gd->disk_name, op_name(bret.operation)); in blkif_interrupt()
/linux/tools/net/ynl/pyynl/lib/
H A Dynl.py746 for op_name, op in self.ops.items():
747 bound_f = functools.partial(self._op, op_name)
1451 def get_policy(self, op_name, mode): argument
1468 op = self.ops[op_name]