⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
src
/
linux-headers-6.11.0-9
/
include
/
net
/
View File Name :
eee.h
/* SPDX-License-Identifier: GPL-2.0-only */ #ifndef _EEE_H #define _EEE_H #include
struct eee_config { u32 tx_lpi_timer; bool tx_lpi_enabled; bool eee_enabled; }; static inline bool eeecfg_mac_can_tx_lpi(const struct eee_config *eeecfg) { /* eee_enabled is the master on/off */ if (!eeecfg->eee_enabled || !eeecfg->tx_lpi_enabled) return false; return true; } static inline void eeecfg_to_eee(struct ethtool_keee *eee, const struct eee_config *eeecfg) { eee->tx_lpi_timer = eeecfg->tx_lpi_timer; eee->tx_lpi_enabled = eeecfg->tx_lpi_enabled; eee->eee_enabled = eeecfg->eee_enabled; } static inline void eee_to_eeecfg(struct eee_config *eeecfg, const struct ethtool_keee *eee) { eeecfg->tx_lpi_timer = eee->tx_lpi_timer; eeecfg->tx_lpi_enabled = eee->tx_lpi_enabled; eeecfg->eee_enabled = eee->eee_enabled; } #endif