Home
last modified time | relevance | path

Searched refs:i40e_debug (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/io/i40e/core/
H A Di40e_nvm.c74 i40e_debug(hw, I40E_DEBUG_NVM, "NVM init error: unsupported blank mode.\n"); in i40e_init_nvm()
109 i40e_debug(hw, I40E_DEBUG_NVM, in i40e_acquire_nvm()
131 i40e_debug(hw, I40E_DEBUG_NVM, in i40e_acquire_nvm()
194 i40e_debug(hw, I40E_DEBUG_NVM, "Done bit in GLNVM_SRCTL not set"); in i40e_poll_sr_srctl_done_bit()
215 i40e_debug(hw, I40E_DEBUG_NVM, in i40e_read_nvm_word_srctl()
240 i40e_debug(hw, I40E_DEBUG_NVM, in i40e_read_nvm_word_srctl()
278 i40e_debug(hw, I40E_DEBUG_NVM, in i40e_read_nvm_aq()
283 i40e_debug(hw, I40E_DEBUG_NVM, in i40e_read_nvm_aq()
289 i40e_debug(hw, I40E_DEBUG_NVM, in i40e_read_nvm_aq()
390 i40e_debug(hw, I40E_DEBUG_ALL, in i40e_read_nvm_module_data()
[all …]
H A Di40e_adminq.c789 i40e_debug(hw, I40E_DEBUG_AQ_COMMAND, in i40e_clean_asq()
859 i40e_debug(hw, I40E_DEBUG_AQ_MESSAGE, in i40e_asq_send_command()
867 i40e_debug(hw, I40E_DEBUG_AQ_MESSAGE, in i40e_asq_send_command()
901 i40e_debug(hw, in i40e_asq_send_command()
910 i40e_debug(hw, in i40e_asq_send_command()
925 i40e_debug(hw, in i40e_asq_send_command()
957 i40e_debug(hw, I40E_DEBUG_AQ_COMMAND, "AQTX: desc and buffer:\n"); in i40e_asq_send_command()
992 i40e_debug(hw, in i40e_asq_send_command()
1010 i40e_debug(hw, I40E_DEBUG_AQ_COMMAND, in i40e_asq_send_command()
1023 i40e_debug(hw, I40E_DEBUG_AQ_MESSAGE, in i40e_asq_send_command()
[all …]
H A Di40e_common.c338 i40e_debug(hw, mask & I40E_DEBUG_AQ_DESCRIPTOR, in i40e_debug_aq()
344 i40e_debug(hw, mask & I40E_DEBUG_AQ_DESCRIPTOR, in i40e_debug_aq()
348 i40e_debug(hw, mask & I40E_DEBUG_AQ_DESCRIPTOR, in i40e_debug_aq()
352 i40e_debug(hw, mask & I40E_DEBUG_AQ_DESCRIPTOR, in i40e_debug_aq()
359 i40e_debug(hw, mask, "AQ CMD Buffer:\n"); in i40e_debug_aq()
364 i40e_debug(hw, mask, in i40e_debug_aq()
379 i40e_debug(hw, mask, in i40e_debug_aq()
1908 i40e_debug(hw, I40E_DEBUG_ALL, in i40e_aq_set_mac_config()
2886 i40e_debug(hw, I40E_DEBUG_LINK, "get link failed: status %d\n", in i40e_get_link_status()
3776 i40e_debug(hw, I40E_DEBUG_INIT, in i40e_parse_discover_capabilities()
[all …]
/illumos-gate/usr/src/uts/common/io/i40e/
H A Di40e_osdep.h31 #define DEBUGOUT(S) i40e_debug(NULL, 0, S)
32 #define DEBUGOUT1(S, A) i40e_debug(NULL, 0, S, A)
33 #define DEBUGOUT2(S, A, B) i40e_debug(NULL, 0, S, A, B)
34 #define DEBUGOUT3(S, A, B, C) i40e_debug(NULL, 0, S, A, B, C)
36 i40e_debug(NULL, 0, S, A, B, C, D)
38 i40e_debug(NULL, 0, S, A, B, C, D, E)
40 i40e_debug(NULL, 0, S, A, B, C, D, E, F)
42 i40e_debug(NULL, 0, S, A, B, C, D, E, F, G)
184 extern void i40e_debug(void *, u32, char *, ...);
H A Di40e_osdep.c226 i40e_debug(void *hw, u32 mask, char *fmt, ...) in i40e_debug() function