Home
last modified time | relevance | path

Searched refs:ex (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/openbmc/linux/tools/build/tests/
H A Drun.sh5 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 …]
/openbmc/linux/security/
H A Ddevice_cgroup.c64 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->list, dest); in dev_exceptions_move()
100 struct dev_exception_item *ex) in dev_exception_add() argument
[all …]
/openbmc/linux/arch/s390/mm/
H A Dextable.c23 static bool ex_handler_fixup(const struct exception_table_entry *ex, struct pt_regs *regs) in ex_handler_fixup() argument
25 regs->psw.addr = extable_fixup(ex); in ex_handler_fixup()
29 static bool ex_handler_ua_store(const struct exception_table_entry *ex, struct pt_regs *regs) in ex_handler_ua_store() argument
31 unsigned int reg_err = FIELD_GET(EX_DATA_REG_ERR, ex->data); in ex_handler_ua_store()
34 regs->psw.addr = extable_fixup(ex); in ex_handler_ua_store()
38 static bool ex_handler_ua_load_mem(const struct exception_table_entry *ex, struct pt_regs *regs) in ex_handler_ua_load_mem() argument
40 unsigned int reg_addr = FIELD_GET(EX_DATA_REG_ADDR, ex->data); in ex_handler_ua_load_mem()
41 unsigned int reg_err = FIELD_GET(EX_DATA_REG_ERR, ex->data); in ex_handler_ua_load_mem()
42 size_t len = FIELD_GET(EX_DATA_LEN, ex->data); in ex_handler_ua_load_mem()
46 regs->psw.addr = extable_fixup(ex); in ex_handler_ua_load_mem()
[all …]
/openbmc/linux/arch/arm64/mm/
H A Dextable.c14 get_ex_fixup(const struct exception_table_entry *ex) in get_ex_fixup() argument
16 return ((unsigned long)&ex->fixup + ex->fixup); in get_ex_fixup()
19 static bool ex_handler_uaccess_err_zero(const struct exception_table_entry *ex, in ex_handler_uaccess_err_zero() argument
22 int reg_err = FIELD_GET(EX_DATA_REG_ERR, ex->data); in ex_handler_uaccess_err_zero()
23 int reg_zero = FIELD_GET(EX_DATA_REG_ZERO, ex->data); in ex_handler_uaccess_err_zero()
28 regs->pc = get_ex_fixup(ex); in ex_handler_uaccess_err_zero()
33 ex_handler_load_unaligned_zeropad(const struct exception_table_entry *ex, in ex_handler_load_unaligned_zeropad() argument
36 int reg_data = FIELD_GET(EX_DATA_REG_DATA, ex->data); in ex_handler_load_unaligned_zeropad()
37 int reg_addr = FIELD_GET(EX_DATA_REG_ADDR, ex->data); in ex_handler_load_unaligned_zeropad()
55 regs->pc = get_ex_fixup(ex); in ex_handler_load_unaligned_zeropad()
[all …]
/openbmc/linux/net/ceph/
H A Dstriper.c59 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 …]
/openbmc/linux/arch/riscv/mm/
H A Dextable.c18 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()
40 static bool ex_handler_uaccess_err_zero(const struct exception_table_entry *ex, in ex_handler_uaccess_err_zero() argument
43 int reg_err = FIELD_GET(EX_DATA_REG_ERR, ex->data); in ex_handler_uaccess_err_zero()
44 int reg_zero = FIELD_GET(EX_DATA_REG_ZERO, ex->data); in ex_handler_uaccess_err_zero()
49 regs->epc = get_ex_fixup(ex); in ex_handler_uaccess_err_zero()
55 const struct exception_table_entry *ex; in fixup_exception() local
57 ex = search_exception_tables(regs->epc); in fixup_exception()
[all …]
/openbmc/linux/arch/loongarch/mm/
H A Dextable.c12 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 …]
/openbmc/bmcweb/test/http/
H A Dmutual_tls.cpp108 X509_EXTENSION* ex = X509V3_EXT_conf_nid(nullptr, nullptr, NID_key_usage, in TEST() local
110 ASSERT_THAT(ex, NotNull()); in TEST()
111 ASSERT_EQ(X509_add_ext(x509.get(), ex, -1), 1); in TEST()
112 X509_EXTENSION_free(ex); in TEST()
113 ex = X509V3_EXT_conf_nid(nullptr, nullptr, NID_ext_key_usage, "clientAuth"); in TEST()
114 ASSERT_THAT(ex, NotNull()); in TEST()
115 ASSERT_EQ(X509_add_ext(x509.get(), ex, -1), 1); in TEST()
116 X509_EXTENSION_free(ex); in TEST()
139 X509_EXTENSION* ex = in TEST() local
142 ASSERT_THAT(ex, NotNull()); in TEST()
[all …]
/openbmc/linux/fs/ext4/
H A Dextents.c216 struct ext4_extent *ex; in ext4_ext_find_goal() local
235 ex = path[depth].p_ext; in ext4_ext_find_goal()
236 if (ex) { in ext4_ext_find_goal()
237 ext4_fsblk_t ext_pblk = ext4_ext_pblock(ex); in ext4_ext_find_goal()
238 ext4_lblk_t ext_block = le32_to_cpu(ex->ee_block); in ext4_ext_find_goal()
262 struct ext4_extent *ex, int *err, unsigned int flags) in ext4_ext_new_meta_block() argument
266 goal = ext4_ext_find_goal(inode, path, le32_to_cpu(ex->ee_block)); in ext4_ext_new_meta_block()
526 struct ext4_extent *ex = EXT_FIRST_EXTENT(eh); in ext4_cache_extents() local
530 for (i = le16_to_cpu(eh->eh_entries); i > 0; i--, ex++) { in ext4_cache_extents()
532 ext4_lblk_t lblk = le32_to_cpu(ex->ee_block); in ext4_cache_extents()
[all …]
/openbmc/linux/tools/build/tests/ex/
H A DMakefile7 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 DBuild1 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
/openbmc/linux/fs/ocfs2/
H A Ddlmglue.h137 int ex,
142 int ex,
156 int ex);
158 int ex);
160 int ex);
166 int ocfs2_nfs_sync_lock(struct ocfs2_super *osb, int ex);
167 void ocfs2_nfs_sync_unlock(struct ocfs2_super *osb, int ex);
174 int ocfs2_dentry_lock(struct dentry *dentry, int ex);
175 void ocfs2_dentry_unlock(struct dentry *dentry, int ex);
176 int ocfs2_file_lock(struct file *file, int ex, int trylock);
[all …]
/openbmc/linux/tools/testing/selftests/x86/
H A Dtest_FISTTP.c23 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()
/openbmc/openbmc/poky/meta/recipes-devtools/autoconf/autoconf/
H A Dautoreconf-exclude.patch30 +my @ex;
56 + @ex = grep (/^autopoint$/, @exclude);
57 + if ($#ex == -1) {
68 + @ex = grep (/^libtoolize$/, @exclude);
69 + if ($#ex == -1) {
81 + @ex = grep (/^gtkdocize$/, @exclude);
82 + if ($#ex == -1) {
93 + @ex = grep (/^autoconf$/, @exclude);
94 + if ($#ex == -1) {
104 + @ex = grep (/^autoheader$/, @exclude);
[all …]
/openbmc/linux/arch/arm64/boot/dts/renesas/
H A DMakefile4 dtb-$(CONFIG_ARCH_R8A774A1) += r8a774a1-hihope-rzg2m-ex.dtb
5 dtb-$(CONFIG_ARCH_R8A774A1) += r8a774a1-hihope-rzg2m-ex-idk-1110wr.dtb
6 dtb-$(CONFIG_ARCH_R8A774A1) += r8a774a1-hihope-rzg2m-ex-mipi-2.1.dtb
8 dtb-$(CONFIG_ARCH_R8A774A1) += r8a774a1-hihope-rzg2m-rev2-ex.dtb
9 dtb-$(CONFIG_ARCH_R8A774A1) += r8a774a1-hihope-rzg2m-rev2-ex-idk-1110wr.dtb
13 dtb-$(CONFIG_ARCH_R8A774B1) += r8a774b1-hihope-rzg2n-ex.dtb
14 dtb-$(CONFIG_ARCH_R8A774B1) += r8a774b1-hihope-rzg2n-ex-idk-1110wr.dtb
15 dtb-$(CONFIG_ARCH_R8A774B1) += r8a774b1-hihope-rzg2n-ex-mipi-2.1.dtb
17 dtb-$(CONFIG_ARCH_R8A774B1) += r8a774b1-hihope-rzg2n-rev2-ex.dtb
18 dtb-$(CONFIG_ARCH_R8A774B1) += r8a774b1-hihope-rzg2n-rev2-ex-idk-1110wr.dtb
[all …]
/openbmc/linux/tools/build/Documentation/
H A DBuild.txt51 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 …]
/openbmc/linux/drivers/net/team/
H A Dteam_mode_loadbalance.c72 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()
309 lb_priv->ex->orig_fprog = fprog; in lb_bpf_func_set()
[all …]
/openbmc/linux/arch/mips/include/asm/
H A Delf.h329 #define SET_PERSONALITY2(ex, state) \ argument
360 #define __SET_PERSONALITY32_O32(ex, state) \ argument
372 #define __SET_PERSONALITY32_O32(ex, state) \ argument
377 #define __SET_PERSONALITY32(ex, state) \ argument
379 if ((((ex).e_flags & EF_MIPS_ABI2) != 0) && \
380 ((ex).e_flags & EF_MIPS_ABI) == 0) \
383 __SET_PERSONALITY32_O32(ex, state); \
386 #define __SET_PERSONALITY32(ex, state) do { } while (0) argument
389 #define SET_PERSONALITY2(ex, state) \ argument
399 if ((ex).e_ident[EI_CLASS] == ELFCLASS32) \
[all …]
/openbmc/linux/arch/x86/kvm/vmx/
H A Dsgx.c76 struct x86_exception ex; in sgx_gva_to_gpa() local
79 *gpa = kvm_mmu_gva_to_gpa_write(vcpu, gva, &ex); in sgx_gva_to_gpa()
81 *gpa = kvm_mmu_gva_to_gpa_read(vcpu, gva, &ex); in sgx_gva_to_gpa()
84 kvm_inject_emulated_page_fault(vcpu, &ex); in sgx_gva_to_gpa()
106 struct x86_exception ex; in sgx_inject_fault() local
126 memset(&ex, 0, sizeof(ex)); in sgx_inject_fault()
127 ex.vector = PF_VECTOR; in sgx_inject_fault()
128 ex.error_code = PFERR_PRESENT_MASK | PFERR_WRITE_MASK | in sgx_inject_fault()
130 ex.address = gva; in sgx_inject_fault()
131 ex.error_code_valid = true; in sgx_inject_fault()
[all …]
/openbmc/linux/drivers/scsi/libsas/
H A Dsas_expander.c186 struct expander_device *ex = &dev->ex_dev; in sas_set_ex_phy() local
187 struct ex_phy *phy = &ex->ex_phy[phy_id]; in sas_set_ex_phy()
374 struct expander_device *ex = &dev->ex_dev; in sas_ex_phy_discover() local
391 if (0 <= single && single < ex->num_phys) { in sas_ex_phy_discover()
396 for (i = 0; i < ex->num_phys; i++) { in sas_ex_phy_discover()
411 struct expander_device *ex = &dev->ex_dev; in sas_expander_discover() local
414 ex->ex_phy = kcalloc(ex->num_phys, sizeof(*ex->ex_phy), GFP_KERNEL); in sas_expander_discover()
415 if (!ex->ex_phy) in sas_expander_discover()
424 kfree(ex->ex_phy); in sas_expander_discover()
425 ex->ex_phy = NULL; in sas_expander_discover()
[all …]
/openbmc/phosphor-time-manager/
H A Dmanager.cpp125 catch (const std::exception& ex) in onTimedateChanged() local
127 error("Failed to sync NTP: {ERROR}", "ERROR", ex); in onTimedateChanged()
147 catch (const sdbusplus::exception_t& ex) in updateNtpSetting() local
149 error("Failed to update NTP setting: {ERROR}", "ERROR", ex); in updateNtpSetting()
165 catch (const sdbusplus::exception_t& ex) in setCurrentTimeMode() local
167 error("Failed to convert mode from string: {ERROR}", "ERROR", ex); in setCurrentTimeMode()
188 catch (const std::exception& ex) in getSetting() local
192 "ERROR", ex, "PATH", path, "INTERFACE", interface, "NAME", setting); in getSetting()
/openbmc/linux/fs/hpfs/
H A Dea.c19 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 …]
/openbmc/u-boot/doc/
H A DREADME.marubun-pcmcia14 ex. * MS7750SE01
30 ex. #define CONFIG_MARUBUN_PCCARD
34 ex. #define CONFIG_PCMCIA_SLOT_A 1
39 ex. #define CONFIG_SYS_MARUBUN_MRSHPC 0xb03fffe0
45 ex. #define CONFIG_SYS_MARUBUN_MW1 0xb0400000
51 ex. #define CONFIG_SYS_MARUBUN_MW2 0xb0500000
57 ex. #define CONFIG_SYS_MARUBUN_IO 0xb0600000
/openbmc/linux/arch/powerpc/boot/dts/
H A Dcanyonlands.dts53 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 …]
/openbmc/linux/drivers/staging/qlge/
H A DTODO7 * truesize accounting is incorrect (ex: a 9000B frame has skb->truesize 10280
20 * some structures are initialized redundantly (ex. memset 0 after
23 possible (ex. ql_free_rx_buffers(), ql_alloc_rx_buffers())
25 * avoid legacy/deprecated apis (ex. replace pci_dma_*, replace pci_enable_msi,
27 * some "while" loops could be rewritten with simple "for", ex.
30 * fix weird line wrapping (all over, ex. the ql_set_routing_reg() calls in
32 * fix weird indentation (all over, ex. the for loops in qlge_get_stats())

12345678910>>...16