| /linux/arch/s390/include/asm/ |
| H A D | atomic_ops.h | 63 #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 D | verifier_log.c | 50 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() 166 snprintf(op_name, sizeof(op_name), in verif_log_subtest() 168 if (!ASSERT_STREQ(logs.buf + i, logs.filler + i, op_name)) { in verif_log_subtest() 274 char *exp_log, op_name[32]; in verif_btf_log_subtest() local [all …]
|
| /linux/tools/perf/pmu-events/ |
| H A D | make_legacy_cache.py | 102 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 D | ethtool.py | |
| H A D | cli.py | 327 for op_name, op in ynl.ops.items(): 328 print(op_name, " [", ", ".join(op.modes), "]") 330 for op_name, op in ynl.msgs.items(): 331 print(op_name, " [", ", ".join(op.modes), "]")
|
| H A D | ynl_gen_c.py | 2045 for op_name, op in family.msgs.items(): 2050 cw.p(f'// skip "{op_name}", duplicate reply value') 2054 cw.p(f'[{op.enum_name}] = "{op_name}",') 2056 cw.p(f'[{op.rsp_value}] = "{op_name}",') 2934 for op_name, op in family.ops.items(): 2939 name = c_lower(f"{family.fn_prefix}-{op_name}-doit") 2944 name = c_lower(f"{family.fn_prefix}-{op_name}-dumpit") 2957 for op_name, op in family.ops.items(): 2970 name = c_lower(f"{family.fn_prefix}-{op_name}-{op_mode}it") 2976 name = c_lower(f"{family.ident_name}-{op_name} [all...] |
| /linux/fs/orangefs/ |
| H A D | waitqueue.c | 66 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 D | vfio_pci_driver.c | 35 const char *op_name) in vfio_check_driver_op() argument 38 VFIO_ASSERT_NOT_NULL(op, "Driver has no %s()\n", op_name); in vfio_check_driver_op()
|
| /linux/tools/testing/selftests/mm/ |
| H A D | vm_util.h | 79 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 D | openpromio.h | 55 char __user *op_name; /* Pointer to the property name. */ member
|
| /linux/drivers/sbus/char/ |
| H A D | openprom.c | 398 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/include/linux/mtd/ |
| H A D | spinand.h | 811 #define SPINAND_OP(spinand, op_name, ...) \ argument 812 spinand_fill_ ## op_name ## _op(spinand, ##__VA_ARGS__)
|
| /linux/drivers/block/ |
| H A D | xen-blkfront.c | 426 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 D | ynl.py | 665 ynl.<op_name>(attrs, ...) 667 By default this will execute the <op_name> as "do", pass dump=True 670 ynl.<op_name> is a shorthand / convenience wrapper for the following 671 methods which take the op_name as a string: 673 ynl.do(op_name, attrs, flags=None) -- execute a do operation 674 ynl.dump(op_name, attrs) -- execute a dump operation 689 ynl.get_policy(op_name, mode) -- query kernel policy for an op 730 for op_name, op in self.ops.items(): 731 bound_f = functools.partial(self._op, op_name) 1406 def get_policy(self, op_name, mod [all...] |