Searched refs:personality (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-13-stable/sys/dev/qlnx/qlnxe/
H A Dqlnx_rdma.c124 if (ha->personality != ECORE_PCI_ETH_IWARP &&
125 ha->personality != ECORE_PCI_ETH_ROCE)
139 if (ha->personality != ECORE_PCI_ETH_IWARP &&
140 ha->personality != ECORE_PCI_ETH_ROCE)
172 if (ha->personality != ECORE_PCI_ETH_IWARP &&
173 ha->personality != ECORE_PCI_ETH_ROCE)
194 if (ha->personality != ECORE_PCI_ETH_IWARP &&
195 ha->personality != ECORE_PCI_ETH_ROCE)
306 if (ha->personality != ECORE_PCI_ETH_IWARP &&
307 ha->personality !
[all...]
H A Decore.h318 /* The PCI personality is not quite synonymous to protocol ID:
320 * 2. The Ethernet personality may support also the RoCE/iWARP protocol
437 /* PCI personality */
438 enum ecore_pci_personality personality; member in struct:ecore_hw_info
440 ((dev)->hw_info.personality == ECORE_PCI_ETH_ROCE || \
441 (dev)->hw_info.personality == ECORE_PCI_ETH_IWARP || \
442 (dev)->hw_info.personality == ECORE_PCI_ETH_RDMA)
444 ((dev)->hw_info.personality == ECORE_PCI_ETH_ROCE || \
445 (dev)->hw_info.personality == ECORE_PCI_ETH_RDMA)
447 ((dev)->hw_info.personality
[all...]
H A Decore_sp_commands.c410 switch (p_hwfn->hw_info.personality) {
412 p_ramrod->personality = PERSONALITY_ETH;
415 p_ramrod->personality = PERSONALITY_FCOE;
418 p_ramrod->personality = PERSONALITY_ISCSI;
423 p_ramrod->personality = PERSONALITY_RDMA_AND_ETH;
426 DP_NOTICE(p_hwfn, true, "Unknown personality %d\n",
427 p_hwfn->hw_info.personality);
428 p_ramrod->personality = PERSONALITY_ETH;
H A Decore_dcbx_api.h198 enum ecore_pci_personality personality; member in struct:ecore_dcbx_app_metadata
H A Decore_dcbx.c217 enum ecore_pci_personality personality)
237 if (p_hwfn->hw_info.personality == personality)
255 enum ecore_pci_personality personality; local
265 personality = ecore_dcbx_app_update[i].personality;
268 prio, tc, type, personality);
213 ecore_dcbx_set_params(struct ecore_dcbx_results *p_data, struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt, bool enable, u8 prio, u8 tc, enum dcbx_protocol_type type, enum ecore_pci_personality personality) argument
H A Decore_dev.c1773 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE)
1776 if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
1816 switch (p_hwfn->hw_info.personality) {
1833 DP_ERR(p_hwfn, "unknown personality %d\n", p_hwfn->hw_info.personality);
2546 if (p_hwfn->hw_info.personality == ECORE_PCI_ETH_ROCE) {
2557 } else if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
2587 if (p_hwfn->hw_info.personality == ECORE_PCI_FCOE) {
2593 if (p_hwfn->hw_info.personality == ECORE_PCI_ISCSI) {
2683 if (p_hwfn->hw_info.personality
5573 ecore_get_hw_info(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt, enum ecore_pci_personality personality, struct ecore_hw_prepare_params *p_params) argument
[all...]
H A Decore_cxt.c1945 if ((p_hwfn->hw_info.personality == ECORE_PCI_FCOE) &&
2173 /* The only case RDMA personality can be overriden is if NVRAM is
2182 p_hwfn->hw_info.personality = ECORE_PCI_ETH_ROCE;
2186 p_hwfn->hw_info.personality = ECORE_PCI_ETH;
2190 p_hwfn->hw_info.personality = ECORE_PCI_ETH_ROCE;
2194 p_hwfn->hw_info.personality = ECORE_PCI_ETH_IWARP;
2198 switch (p_hwfn->hw_info.personality) {
2246 "RDMA personality used without setting params!\n");
2261 switch (p_hwfn->hw_info.personality) {
2310 "Fcoe personality use
[all...]
H A Decore_dev_api.h248 int personality; member in struct:ecore_hw_prepare_params
H A Dqlnx_os.c290 * Note on RDMA personality setting
292 * Read the personality configured in NVRAM
293 * If the personality is ETH_ONLY, ETH_IWARP or ETH_ROCE and
294 * the configured personality in sysctl is QLNX_PERSONALITY_DEFAULT
295 * use the personality in NVRAM.
297 * Otherwise use t the personality configured in sysctl.
300 #define QLNX_PERSONALITY_DEFAULT 0x0 /* use personality in NVRAM */
1182 uint8_t personality; local
1184 personality = (qlnxe_rdma_configuration >>
1187 return (personality);
1194 uint8_t personality; local
[all...]
H A Decore_ooo.c109 switch (p_hwfn->hw_info.personality) {
H A Dqlnx_def.h495 uint32_t personality; member in struct:qlnx_host
H A Decore_mng_tlv.c1350 /* Sanitize the TLV groups according to personality */
1352 p_hwfn->hw_info.personality != ECORE_PCI_FCOE) {
1359 p_hwfn->hw_info.personality != ECORE_PCI_ISCSI) {
H A Decore_hsi_common.h1744 * personality per PF
1792 u8 personality /* define what type of personality is new PF (use enum personality_type) */; member in struct:pf_start_ramrod_data
2059 u8 personality /* define what type of personality is new VF (use enum personality_type) */; member in struct:vf_start_ramrod_data
H A Decore_sriov.c132 switch (p_hwfn->hw_info.personality) {
134 p_ramrod->personality = PERSONALITY_ETH;
138 p_ramrod->personality = PERSONALITY_RDMA_AND_ETH;
141 DP_NOTICE(p_hwfn, true, "Unknown VF personality %d\n",
142 p_hwfn->hw_info.personality);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp32 #include <linux/personality.h>
34 #include <sys/personality.h>
62 int value = personality(personality_get_current);
64 ExitWithError(error_fd, "personality get");
66 value = personality(ADDR_NO_RANDOMIZE | value);
68 ExitWithError(error_fd, "personality set");
/freebsd-13-stable/contrib/llvm-project/libunwind/src/
H A DUnwind-sjlj.c27 /// function also sets the personality and lsda fields of the block.
38 // set by personality handler to be parameters passed to landing pad function
42 _Unwind_Personality_Fn personality; // arm offset=24 member in struct:_Unwind_FunctionContext
126 // if there is a personality routine, ask it if it will want to stop at this
128 if (c->personality != NULL) {
130 "personality function %p",
132 (void *)c->personality);
133 _Unwind_Reason_Code personalityResult = (*c->personality)(
187 // if there is a personality routine, tell it we are unwinding
188 if (c->personality !
[all...]
H A DDwarfParser.hpp46 pint_t personality; member in struct:libunwind::CFI_Parser::CIE_Info
299 cieInfo->personality = 0;
356 cieInfo->personality = addressSpace
H A DUnwindCursor.hpp1395 // Grab the index of the personality routine from the compact form.
1418 _LIBUNWIND_ABORT("unknown personality routine");
1522 _info.handler = cieInfo.personality;
1604 pint_t personality = 0; local
1762 // extact personality routine, if encoding says function has one
1768 _LIBUNWIND_DEBUG_LOG("found encoding 0x%08X with personality index %d, "
1769 "but personality table has only %d entries",
1779 personality = _addressSpace.getP(personalityPointer);
1782 "personalityDelta=0x%08X, personality=0x%08llX\n",
1783 (uint64_t) pc, personalityDelta, (uint64_t) personality);
[all...]
H A DUnwindRegistersSave.S845 @ only accessed if the personality routine needs these registers. Use of
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_linux.cpp41 #include <sys/personality.h>
293 int old_personality = personality(0xffffffff);
298 CHECK_NE(personality(old_personality | ADDR_NO_RANDOMIZE), -1);
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DCompactUnwindPass.cpp302 // FIXME: if there are more than 4 personality functions then we need to
311 // its final form (i.e. set personality function bits & create DWARF
378 << ", personality="
388 // Gather the personality functions now, so that they're in deterministic
408 assert(ref->addend() == 0 && "unexpected offset into personality fn");
446 /// personality function offset which is only known now).
448 /// or too many personality functions to be accommodated.
551 auto personality = llvm::find(personalities, entry.personalityFunction); local
552 uint32_t personalityIdx = personality == personalities.end()
554 : personality
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h164 #define __sanitizer_syscall_pre_personality(personality) \
165 __sanitizer_syscall_pre_impl_personality((long)(personality))
166 #define __sanitizer_syscall_post_personality(res, personality) \
167 __sanitizer_syscall_post_impl_personality(res, (long)(personality))
2093 void __sanitizer_syscall_pre_impl_personality(long personality);
2094 void __sanitizer_syscall_post_impl_personality(long res, long personality);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp76 #include <sys/personality.h>
1018 // Uname may report misleading results if personality type
1021 int pers = personality(0xffffffffUL);
2139 int old_personality = personality(0xffffffff);
2145 CHECK_NE(personality(old_personality | ADDR_NO_RANDOMIZE), -1);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp732 KEYWORD(personality);
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp356 Symbol *personality = nullptr; local
359 personality =
363 CieRecord *&rec = cieMap[{cie.data(), personality}];

Completed in 405 milliseconds

12