| /linux/tools/build/tests/ |
| H A D | run.sh | 5 make -C ex V=1 clean > ex.out 2>&1 6 make -C ex V=1 >> ex.out 2>&1 8 if [ ! -x ./ex/ex ]; then 13 make -C ex V=1 clean > /dev/null 2>&1 14 rm -f ex.out 18 make -C ex V=1 clean > ex.out 2>&1 21 make -rR -C ex V=1 ex.o >> ex.out 2>&1 22 make -rR -C ex V=1 ex.i >> ex.out 2>&1 23 make -rR -C ex V=1 ex.s >> ex.out 2>&1 25 if [ -x ./ex/ex ]; then [all …]
|
| /linux/security/ |
| H A D | device_cgroup.c | 64 struct dev_exception_item *ex, *tmp, *new; in dev_exceptions_copy() local 68 list_for_each_entry(ex, orig, list) { in dev_exceptions_copy() 69 new = kmemdup(ex, sizeof(*ex), GFP_KERNEL); in dev_exceptions_copy() 78 list_for_each_entry_safe(ex, tmp, dest, list) { in dev_exceptions_copy() 79 list_del(&ex->list); in dev_exceptions_copy() 80 kfree(ex); in dev_exceptions_copy() 87 struct dev_exception_item *ex, *tmp; in dev_exceptions_move() local 91 list_for_each_entry_safe(ex, tmp, orig, list) { in dev_exceptions_move() 92 list_move_tail(&ex in dev_exceptions_move() 100 dev_exception_add(struct dev_cgroup * dev_cgroup,struct dev_exception_item * ex) dev_exception_add() argument 132 dev_exception_rm(struct dev_cgroup * dev_cgroup,struct dev_exception_item * ex) dev_exception_rm() argument 156 struct dev_exception_item *ex, *tmp; __dev_exception_clean() local 280 struct dev_exception_item *ex; devcgroup_seq_show() local 324 struct dev_exception_item *ex; match_exception() local 361 struct dev_exception_item *ex; match_exception_partial() local 457 parent_has_perm(struct dev_cgroup * childcg,struct dev_exception_item * ex) parent_has_perm() argument 478 parent_allows_removal(struct dev_cgroup * childcg,struct dev_exception_item * ex) parent_allows_removal() argument 525 struct dev_exception_item *ex; revalidate_active_exceptions() local 543 propagate_exception(struct dev_cgroup * devcg_root,struct dev_exception_item * ex) propagate_exception() argument 610 struct dev_exception_item ex; devcgroup_update_access() local [all...] |
| /linux/arch/riscv/mm/ |
| H A D | extable.c | 18 get_ex_fixup(const struct exception_table_entry *ex) in get_ex_fixup() argument 20 return ((unsigned long)&ex->fixup + ex->fixup); in get_ex_fixup() 23 static bool ex_handler_fixup(const struct exception_table_entry *ex, in ex_handler_fixup() argument 26 regs->epc = get_ex_fixup(ex); in ex_handler_fixup() 48 static bool ex_handler_uaccess_err_zero(const struct exception_table_entry *ex, in ex_handler_uaccess_err_zero() argument 51 int reg_err = FIELD_GET(EX_DATA_REG_ERR, ex->data); in ex_handler_uaccess_err_zero() 52 int reg_zero = FIELD_GET(EX_DATA_REG_ZERO, ex->data); in ex_handler_uaccess_err_zero() 57 regs->epc = get_ex_fixup(ex); in ex_handler_uaccess_err_zero() 62 ex_handler_load_unaligned_zeropad(const struct exception_table_entry *ex, in ex_handler_load_unaligned_zeropad() argument 65 int reg_data = FIELD_GET(EX_DATA_REG_DATA, ex->data); in ex_handler_load_unaligned_zeropad() [all …]
|
| /linux/net/ceph/ |
| H A D | striper.c | 59 struct ceph_object_extent *ex = in lookup_last() local 60 list_entry(pos, typeof(*ex), oe_item); in lookup_last() 62 if (ex->oe_objno == objno) in lookup_last() 63 return ex; in lookup_last() 65 if (ex->oe_objno < objno) in lookup_last() 77 struct ceph_object_extent *ex; in lookup_containing() local 79 list_for_each_entry(ex, object_extents, oe_item) { in lookup_containing() 80 if (ex->oe_objno == objno && in lookup_containing() 81 ex->oe_off <= objoff && in lookup_containing() 82 ex->oe_off + ex->oe_len >= objoff + xlen) /* paranoia */ in lookup_containing() [all …]
|
| /linux/arch/loongarch/mm/ |
| H A D | extable.c | 12 get_ex_fixup(const struct exception_table_entry *ex) in get_ex_fixup() argument 14 return ((unsigned long)&ex->fixup + ex->fixup); in get_ex_fixup() 24 static bool ex_handler_fixup(const struct exception_table_entry *ex, in ex_handler_fixup() argument 27 regs->csr_era = get_ex_fixup(ex); in ex_handler_fixup() 32 static bool ex_handler_uaccess_err_zero(const struct exception_table_entry *ex, in ex_handler_uaccess_err_zero() argument 35 int reg_err = FIELD_GET(EX_DATA_REG_ERR, ex->data); in ex_handler_uaccess_err_zero() 36 int reg_zero = FIELD_GET(EX_DATA_REG_ZERO, ex->data); in ex_handler_uaccess_err_zero() 40 regs->csr_era = get_ex_fixup(ex); in ex_handler_uaccess_err_zero() 47 const struct exception_table_entry *ex; in fixup_exception() local 49 ex = search_exception_tables(exception_era(regs)); in fixup_exception() [all …]
|
| /linux/fs/ext4/ |
| H A D | extents.c | 221 struct ext4_extent *ex; in ext4_ext_find_goal() local 240 ex = path[depth].p_ext; in ext4_ext_find_goal() 241 if (ex) { in ext4_ext_find_goal() 242 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex); in ext4_ext_find_goal() 243 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block); in ext4_ext_find_goal() 267 struct ext4_extent *ex, int *err, unsigned int flags) in ext4_ext_new_meta_block() argument 271 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block)); in ext4_ext_new_meta_block() 527 struct ext4_extent *ex = EXT_FIRST_EXTENT(eh); in ext4_cache_extents() local 533 for (i = le16_to_cpu(eh->eh_entries); i > 0; i--, ex++) { in ext4_cache_extents() 535 ext4_lblk_t lblk = le32_to_cpu(ex->ee_block); in ext4_cache_extents() [all …]
|
| H A D | extents-test.c | 170 static int ext4_ext_zeroout_stub(struct inode *inode, struct ext4_extent *ex) in ext4_ext_zeroout_stub() argument 177 ee_block = le32_to_cpu(ex->ee_block); in ext4_ext_zeroout_stub() 178 ee_len = ext4_ext_get_actual_len(ex); in ext4_ext_zeroout_stub() 358 struct ext4_extent *ex; in test_split_convert() local 372 ex = path->p_ext; in test_split_convert() 373 KUNIT_EXPECT_EQ(test, EXT_DATA_LBLK, le32_to_cpu(ex->ee_block)); in test_split_convert() 374 KUNIT_EXPECT_EQ(test, EXT_DATA_LEN, ext4_ext_get_actual_len(ex)); in test_split_convert() 376 ext4_ext_is_unwritten(ex)); in test_split_convert() 398 ex = path->p_ext; in test_split_convert() 407 le32_to_cpu(ex in test_split_convert() [all...] |
| H A D | mballoc.c | 2087 int needed, struct ext4_free_extent *ex) in mb_find_extent() argument 2093 BUG_ON(ex == NULL); in mb_find_extent() 2099 ex->fe_len = 0; in mb_find_extent() 2100 ex->fe_start = 0; in mb_find_extent() 2101 ex->fe_group = 0; in mb_find_extent() 2108 ex->fe_len = (1 << order) - (block & ((1 << order) - 1)); in mb_find_extent() 2109 ex->fe_start = block; in mb_find_extent() 2110 ex->fe_group = e4b->bd_group; in mb_find_extent() 2114 while (needed > ex->fe_len && in mb_find_extent() 2127 ex in mb_find_extent() 2145 mb_mark_used(struct ext4_buddy * e4b,struct ext4_free_extent * ex) mb_mark_used() argument 2338 ext4_mb_measure_extent(struct ext4_allocation_context * ac,struct ext4_free_extent * ex,struct ext4_buddy * e4b) ext4_mb_measure_extent() argument 2401 struct ext4_free_extent ex = ac->ac_b_ex; ext4_mb_try_best_found() local 2436 struct ext4_free_extent ex; ext4_mb_find_by_goal() local 2556 struct ext4_free_extent ex; ext4_mb_complex_scan_group() local 2640 struct ext4_free_extent ex; ext4_mb_scan_aligned() local 5275 struct ext4_free_extent ex = { ext4_mb_new_inode_pa() local 6881 struct ext4_free_extent ex; ext4_trim_extent() local [all...] |
| /linux/tools/build/tests/ex/ |
| H A D | Makefile | 7 ex: target 11 ex: ex-in.o libex-in.o target 14 ex.%: fixdep FORCE 17 ex-in.o: fixdep FORCE 18 make $(build)=ex 25 rm -f ex ex.i ex.s
|
| H A D | Build | 1 ex-y += ex.o 2 ex-y += a.o 3 ex-y += b.o 4 ex-y += b.o 5 ex-y += empty/ 6 ex-y += empty2/ 7 ex-y += inc.o
|
| /linux/tools/testing/selftests/x86/ |
| H A D | test_FISTTP.c | 23 int ex; in test() local 39 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 40 if (ex != 0) { in test() 59 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 60 if (ex != FE_INEXACT) { in test() 82 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 83 if (ex != FE_INEXACT) { in test() 103 ex = fetestexcept(FE_DIVBYZERO|FE_INEXACT|FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW); in test() 104 if (ex != FE_INEXACT) { in test()
|
| /linux/drivers/net/team/ |
| H A D | team_mode_loadbalance.c | 72 struct lb_priv_ex *ex; /* priv extension */ member 91 (lb_priv)->ex->tx_hash_to_port_mapping[hash].port 94 (lb_priv)->ex->tx_hash_to_port_mapping[hash].opt_inst_info 106 pm = &lb_priv->ex->tx_hash_to_port_mapping[i]; in lb_tx_hash_to_port_mapping_null_port() 244 if (!lb_priv->ex->orig_fprog) { in lb_bpf_func_get() 249 ctx->data.bin_val.len = lb_priv->ex->orig_fprog->len * in lb_bpf_func_get() 251 ctx->data.bin_val.ptr = lb_priv->ex->orig_fprog->filter; in lb_bpf_func_get() 301 if (lb_priv->ex->orig_fprog) { in lb_bpf_func_set() 303 __fprog_destroy(lb_priv->ex->orig_fprog); in lb_bpf_func_set() 308 lb_priv->ex in lb_bpf_func_set() [all...] |
| /linux/tools/build/Documentation/ |
| H A D | Build.txt | 51 ex/a.c 58 Out of which you build the 'ex' binary ' and the 'libex.a' library: 60 'ex' - consists of 'a.o', 'b.o' and libex.a 63 The build framework does not create the 'ex' and 'libex.a' binaries for you, it 68 ex/Build: 69 ex-y += a.o 70 ex-y += b.o 71 ex-y += b.o # duplicates in the lists are allowed 77 ex/arch/Build: 83 $ make -f tools/build/Makefile.build dir=. obj=ex [all …]
|
| /linux/drivers/scsi/libsas/ |
| H A D | sas_expander.c | 38 struct expander_device *ex = &dev->ex_dev; in sas_ex_add_parent_port() local 39 struct ex_phy *ex_phy = &ex->ex_phy[phy_id]; in sas_ex_add_parent_port() 41 if (!ex->parent_port) { in sas_ex_add_parent_port() 42 ex->parent_port = sas_port_alloc(&dev->rphy->dev, phy_id); in sas_ex_add_parent_port() 44 BUG_ON(!ex->parent_port); in sas_ex_add_parent_port() 45 BUG_ON(sas_port_add(ex->parent_port)); in sas_ex_add_parent_port() 46 sas_port_mark_backlink(ex->parent_port); in sas_ex_add_parent_port() 48 sas_port_add_ex_phy(ex->parent_port, ex_phy); in sas_ex_add_parent_port() 208 struct expander_device *ex = &dev->ex_dev; in sas_set_ex_phy() local 209 struct ex_phy *phy = &ex in sas_set_ex_phy() 396 struct expander_device *ex = &dev->ex_dev; sas_ex_phy_discover() local 433 struct expander_device *ex = &dev->ex_dev; sas_expander_discover() local 618 struct expander_device *ex = &dev->ex_dev; sas_ex_disable_phy() local 627 struct expander_device *ex = &dev->ex_dev; sas_ex_disable_port() local 970 struct expander_device *ex = &dev->ex_dev; sas_ex_discover_dev() local 1065 struct expander_device *ex = &dev->ex_dev; sas_find_sub_addr() local 1088 struct expander_device *ex = &dev->ex_dev; sas_check_level_subtractive_boundary() local 1126 struct expander_device *ex = &dev->ex_dev; sas_ex_discover_devices() local 1164 struct expander_device *ex = &dev->ex_dev; sas_check_ex_subtractive_boundary() local 1355 struct expander_device *ex = &dev->ex_dev; sas_configure_present() local 1586 struct sas_expander_device *ex = sas_ex_level_discovery() local 1617 struct sas_expander_device *ex = rphy_to_expander_device(dev->rphy); sas_discover_root_expander() local 1712 struct expander_device *ex = &dev->ex_dev; sas_find_bcast_phy() local 1792 struct expander_device *ex = &dev->ex_dev; sas_find_bcast_dev() local 1830 struct expander_device *ex = &dev->ex_dev; sas_unregister_ex_tree() local 1887 struct sas_expander_device *ex = sas_discover_bfs_by_root_level() local 1903 struct sas_expander_device *ex = rphy_to_expander_device(dev->rphy); sas_discover_bfs_by_root() local 1964 struct expander_device *ex = &dev->ex_dev; sas_rediscover_dev() local 2056 struct expander_device *ex = &dev->ex_dev; sas_rediscover() local 2098 struct expander_device *ex = &dev->ex_dev; sas_ex_revalidate_domain() local [all...] |
| /linux/arch/mips/include/asm/ |
| H A D | elf.h | 331 #define SET_PERSONALITY2(ex, state) \ argument 362 #define __SET_PERSONALITY32_O32(ex, state) \ argument 374 #define __SET_PERSONALITY32_O32(ex, state) \ argument 379 #define __SET_PERSONALITY32(ex, state) \ argument 381 if ((((ex).e_flags & EF_MIPS_ABI2) != 0) && \ 382 ((ex).e_flags & EF_MIPS_ABI) == 0) \ 385 __SET_PERSONALITY32_O32(ex, state); \ 388 #define __SET_PERSONALITY32(ex, state) do { } while (0) argument 391 #define SET_PERSONALITY2(ex, state) \ argument 401 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \ [all …]
|
| /linux/fs/hpfs/ |
| H A D | ea.c | 19 char ex[4 + 255 + 1 + 8]; in hpfs_ea_ext_remove() local 20 struct extended_attribute *ea = (struct extended_attribute *)ex; in hpfs_ea_ext_remove() 26 if (hpfs_ea_read(s, a, ano, pos, 4, ex)) return; in hpfs_ea_ext_remove() 33 if (hpfs_ea_read(s, a, ano, pos + 4, ea->namelen + 9, ex+4)) in hpfs_ea_ext_remove() 80 char ex[4 + 255 + 1 + 8]; in hpfs_read_ea() local 98 ea = (struct extended_attribute *)ex; in hpfs_read_ea() 104 if (hpfs_ea_read(s, a, ano, pos, 4, ex)) return -EIO; in hpfs_read_ea() 105 if (hpfs_ea_read(s, a, ano, pos + 4, ea->namelen + 1 + (ea_indirect(ea) ? 8 : 0), ex + 4)) in hpfs_read_ea() 155 char ex[4 + 255 + 1 + 8]; in hpfs_get_ea() local 156 ea = (struct extended_attribute *)ex; in hpfs_get_ea() [all …]
|
| /linux/arch/powerpc/boot/dts/ |
| H A D | canyonlands.dts | 53 compatible = "ibm,uic-460ex","ibm,uic"; 63 compatible = "ibm,uic-460ex","ibm,uic"; 75 compatible = "ibm,uic-460ex","ibm,uic"; 87 compatible = "ibm,uic-460ex","ibm,uic"; 99 compatible = "ibm,sdr-460ex"; 104 compatible = "ibm,cpr-460ex"; 118 compatible = "ibm,l2-cache-460ex", "ibm,l2-cache"; 128 compatible = "ibm,plb-460ex", "ibm,plb4"; 135 compatible = "ibm,sdram-460ex", "ibm,sdram-405gp"; 152 compatible = "ibm,mcmal-460ex", "ibm,mcmal2"; [all …]
|
| /linux/include/linux/ |
| H A D | elf.h | 13 # define elf_read_implies_exec(ex, have_pt_gnu_stack) 0 argument 16 #define SET_PERSONALITY(ex) \ argument 21 #define SET_PERSONALITY2(ex, state) \ argument 22 SET_PERSONALITY(ex) 31 #define ARCH_SETUP_ADDITIONAL_PAGES(bprm, ex, interpreter) \ argument
|
| /linux/tools/testing/kunit/ |
| H A D | run_checks.py | 53 ex = f.exception() 54 if not ex: 59 if isinstance(ex, subprocess.TimeoutExpired): 61 elif isinstance(ex, subprocess.CalledProcessError): 67 output = ex.output
|
| /linux/arch/mips/boot/ |
| H A D | elf2ecoff.c | 270 Elf32_Ehdr ex; in main() local 307 i = read(infile, &ex, sizeof ex); in main() 308 if (i != sizeof ex) { in main() 315 if (ex.e_ident[EI_DATA] == ELFDATA2MSB) in main() 326 convert_elf_hdr(&ex); in main() 329 ph = (Elf32_Phdr *) saveRead(infile, ex.e_phoff, in main() 330 ex.e_phnum * sizeof(Elf32_Phdr), in main() 333 convert_elf_phdrs(ph, ex.e_phnum); in main() 335 sh = (Elf32_Shdr *) saveRead(infile, ex.e_shoff, in main() 336 ex.e_shnum * sizeof(Elf32_Shdr), in main() [all …]
|
| /linux/arch/powerpc/include/asm/ |
| H A D | elf.h | 83 # define SET_PERSONALITY(ex) \ argument 85 if (((ex).e_flags & 0x3) == 2) \ 89 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \ 104 # define elf_read_implies_exec(ex, exec_stk) (is_32bit_task() ? \ argument 107 # define elf_read_implies_exec(ex, exec_stk) (exec_stk == EXSTACK_DEFAULT) argument
|
| /linux/Documentation/admin-guide/media/ |
| H A D | si476x.rst | 36 .. tabularcolumns:: |p{7ex}|p{12ex}|L| 70 .. tabularcolumns:: |p{7ex}|p{12ex}|L| 86 .. tabularcolumns:: |p{7ex}|p{12ex}|L| 111 .. tabularcolumns:: |p{7ex}|p{12ex}|p{60ex}|
|
| /linux/include/math-emu/ |
| H A D | soft-fp.h | 123 #define FP_SET_EXCEPTION(ex) \ argument 124 _fex |= (ex) 126 #define FP_UNSET_EXCEPTION(ex) \ argument 127 _fex &= ~(ex)
|
| /linux/include/linux/ceph/ |
| H A D | striper.h | 21 static inline void ceph_object_extent_init(struct ceph_object_extent *ex) in ceph_object_extent_init() argument 23 INIT_LIST_HEAD(&ex->oe_item); in ceph_object_extent_init() 33 typedef void (*ceph_object_extent_fn_t)(struct ceph_object_extent *ex,
|
| /linux/drivers/block/ |
| H A D | rbd.c | 287 struct ceph_object_extent ex; member 343 struct list_head object_extents; /* obj_req.ex structs */ 352 list_for_each_entry(oreq, &(ireq)->object_extents, ex.oe_item) 354 list_for_each_entry_safe(oreq, n, &(ireq)->object_extents, ex.oe_item) 1291 list_del(&obj_request->ex.oe_item); in rbd_img_obj_request_del() 1301 __func__, osd_req, obj_req, obj_req->ex.oe_objno, in rbd_osd_submit() 1302 obj_req->ex.oe_off, obj_req->ex.oe_len); in rbd_osd_submit() 1325 return !obj_req->ex.oe_off && in rbd_obj_is_entire() 1326 obj_req->ex in rbd_obj_is_entire() 2121 struct ceph_file_extent *ex = &img_extents[cnt - 1]; prune_extents() local 2603 struct ceph_file_extent ex = { off, len }; rbd_img_fill_nodata() local 2613 set_bio_pos(struct ceph_object_extent * ex,u32 bytes,void * arg) set_bio_pos() argument 2624 count_bio_bvecs(struct ceph_object_extent * ex,u32 bytes,void * arg) count_bio_bvecs() argument 2637 copy_bio_bvecs(struct ceph_object_extent * ex,u32 bytes,void * arg) copy_bio_bvecs() argument 2670 struct ceph_file_extent ex = { off, len }; rbd_img_fill_from_bio() local 2676 set_bvec_pos(struct ceph_object_extent * ex,u32 bytes,void * arg) set_bvec_pos() argument 2687 count_bvecs(struct ceph_object_extent * ex,u32 bytes,void * arg) count_bvecs() argument 2698 copy_bvecs(struct ceph_object_extent * ex,u32 bytes,void * arg) copy_bvecs() argument [all...] |