Home
last modified time | relevance | path

Searched refs:sset (Results 1 – 25 of 160) sorted by relevance

1234567

/Linux-v5.15/crypto/
Dpoly1305_generic.c29 dctx->sset = false; in crypto_poly1305_init()
37 if (!dctx->sset) { in crypto_poly1305_setdesckey()
51 dctx->sset = true; in crypto_poly1305_setdesckey()
62 if (unlikely(!dctx->sset)) { in poly1305_blocks()
110 if (unlikely(!dctx->sset)) in crypto_poly1305_final()
/Linux-v5.15/net/mac80211/
Dethtool.c49 static int ieee80211_get_sset_count(struct net_device *dev, int sset) in ieee80211_get_sset_count() argument
54 if (sset == ETH_SS_STATS) in ieee80211_get_sset_count()
57 rv += drv_get_et_sset_count(sdata, sset); in ieee80211_get_sset_count()
205 static void ieee80211_get_strings(struct net_device *dev, u32 sset, u8 *data) in ieee80211_get_strings() argument
210 if (sset == ETH_SS_STATS) { in ieee80211_get_strings()
214 drv_get_et_strings(sdata, sset, &(data[sz_sta_stats])); in ieee80211_get_strings()
/Linux-v5.15/arch/mips/crypto/
Dpoly1305-glue.c37 dctx->sset = false; in mips_poly1305_init()
45 if (unlikely(!dctx->sset)) { in mips_poly1305_blocks()
59 dctx->sset = true; in mips_poly1305_blocks()
153 if (unlikely(!dctx->sset)) in mips_poly1305_final()
/Linux-v5.15/tools/testing/selftests/arm64/signal/
Dtest_signals_utils.c54 sigset_t sset; in unblock_signal() local
56 sigemptyset(&sset); in unblock_signal()
57 sigaddset(&sset, signum); in unblock_signal()
58 sigprocmask(SIG_UNBLOCK, &sset, NULL); in unblock_signal()
/Linux-v5.15/arch/arm64/crypto/
Dpoly1305-glue.c45 dctx->sset = false; in neon_poly1305_init()
53 if (unlikely(!dctx->sset)) { in neon_poly1305_blocks()
67 dctx->sset = true; in neon_poly1305_blocks()
188 if (unlikely(!dctx->sset)) in neon_poly1305_final()
/Linux-v5.15/drivers/net/ethernet/pasemi/
Dpasemi_mac_ethtool.c82 static int pasemi_mac_get_sset_count(struct net_device *netdev, int sset) in pasemi_mac_get_sset_count() argument
84 switch (sset) { in pasemi_mac_get_sset_count()
/Linux-v5.15/arch/arm/crypto/
Dpoly1305-glue.c49 dctx->sset = false; in arm_poly1305_init()
57 if (unlikely(!dctx->sset)) { in arm_poly1305_blocks()
71 dctx->sset = true; in arm_poly1305_blocks()
206 if (unlikely(!dctx->sset)) in arm_poly1305_final()
/Linux-v5.15/arch/x86/crypto/
Dpoly1305_glue.c140 dctx->sset = true; in poly1305_init_arch()
148 if (unlikely(!dctx->sset)) { in crypto_poly1305_setdctxkey()
162 dctx->sset = true; in crypto_poly1305_setdctxkey()
238 if (unlikely(!dctx->sset)) in crypto_poly1305_final()
/Linux-v5.15/drivers/infiniband/ulp/opa_vnic/
Dopa_vnic_ethtool.c133 static int vnic_get_sset_count(struct net_device *netdev, int sset) in vnic_get_sset_count() argument
135 return (sset == ETH_SS_STATS) ? VNIC_STATS_LEN : -EOPNOTSUPP; in vnic_get_sset_count()
/Linux-v5.15/drivers/net/ethernet/toshiba/
Dspider_net_ethtool.c123 static int spider_net_get_sset_count(struct net_device *netdev, int sset) in spider_net_get_sset_count() argument
125 switch (sset) { in spider_net_get_sset_count()
/Linux-v5.15/net/dsa/
Dmaster.c120 static int dsa_master_get_sset_count(struct net_device *dev, int sset) in dsa_master_get_sset_count() argument
127 if (sset == ETH_SS_PHY_STATS && dev->phydev && in dsa_master_get_sset_count()
131 count = ops->get_sset_count(dev, sset); in dsa_master_get_sset_count()
137 count += ds->ops->get_sset_count(ds, cpu_dp->index, sset); in dsa_master_get_sset_count()
/Linux-v5.15/drivers/infiniband/ulp/ipoib/
Dipoib_ethtool.c147 int sset) in ipoib_get_sset_count() argument
149 switch (sset) { in ipoib_get_sset_count()
/Linux-v5.15/drivers/net/ethernet/mellanox/mlx5/core/ipoib/
Dethtool.c53 static int mlx5i_get_sset_count(struct net_device *dev, int sset) in mlx5i_get_sset_count() argument
57 return mlx5e_ethtool_get_sset_count(priv, sset); in mlx5i_get_sset_count()
/Linux-v5.15/drivers/net/ethernet/neterion/vxge/
Dvxge-ethtool.h20 static int vxge_ethtool_get_sset_count(struct net_device *dev, int sset);
/Linux-v5.15/drivers/net/ethernet/freescale/dpaa2/
Ddpaa2-switch-ethtool.c146 dpaa2_switch_ethtool_get_sset_count(struct net_device *netdev, int sset) in dpaa2_switch_ethtool_get_sset_count() argument
151 switch (sset) { in dpaa2_switch_ethtool_get_sset_count()
/Linux-v5.15/drivers/net/ethernet/qualcomm/emac/
Demac-ethtool.c80 static int emac_get_sset_count(struct net_device *netdev, int sset) in emac_get_sset_count() argument
82 switch (sset) { in emac_get_sset_count()
/Linux-v5.15/drivers/net/ethernet/apm/xgene-v2/
Dethtool.c114 static int xge_get_sset_count(struct net_device *ndev, int sset) in xge_get_sset_count() argument
116 if (sset != ETH_SS_STATS) in xge_get_sset_count()
/Linux-v5.15/drivers/net/ethernet/altera/
Daltera_tse_ethtool.c172 static int tse_sset_count(struct net_device *dev, int sset) in tse_sset_count() argument
174 switch (sset) { in tse_sset_count()
/Linux-v5.15/drivers/net/wireless/ath/ath10k/
Ddebug.h108 u32 sset, u8 *data);
110 struct ieee80211_vif *vif, int sset);
/Linux-v5.15/drivers/net/ethernet/marvell/octeontx2/nic/
Dotx2_ethtool.c104 static void otx2_get_strings(struct net_device *netdev, u32 sset, u8 *data) in otx2_get_strings() argument
109 if (sset != ETH_SS_STATS) in otx2_get_strings()
242 static int otx2_get_sset_count(struct net_device *netdev, int sset) in otx2_get_sset_count() argument
247 if (sset != ETH_SS_STATS) in otx2_get_sset_count()
1245 static void otx2vf_get_strings(struct net_device *netdev, u32 sset, u8 *data) in otx2vf_get_strings() argument
1250 if (sset != ETH_SS_STATS) in otx2vf_get_strings()
1288 static int otx2vf_get_sset_count(struct net_device *netdev, int sset) in otx2vf_get_sset_count() argument
1293 if (sset != ETH_SS_STATS) in otx2vf_get_sset_count()
/Linux-v5.15/drivers/net/dsa/
Ddsa_loop.c106 static int dsa_loop_get_sset_count(struct dsa_switch *ds, int port, int sset) in dsa_loop_get_sset_count() argument
108 if (sset != ETH_SS_STATS && sset != ETH_SS_PHY_STATS) in dsa_loop_get_sset_count()
/Linux-v5.15/drivers/net/ethernet/qualcomm/
Dqca_debug.c213 qcaspi_get_sset_count(struct net_device *dev, int sset) in qcaspi_get_sset_count() argument
215 switch (sset) { in qcaspi_get_sset_count()
/Linux-v5.15/drivers/net/wireless/marvell/libertas/
Dmesh.h56 int lbs_mesh_ethtool_get_sset_count(struct net_device *dev, int sset);
/Linux-v5.15/drivers/net/ethernet/ibm/ehea/
Dehea_ethtool.c213 static int ehea_get_sset_count(struct net_device *dev, int sset) in ehea_get_sset_count() argument
215 switch (sset) { in ehea_get_sset_count()
/Linux-v5.15/drivers/net/ethernet/atheros/alx/
Dethtool.c314 static int alx_get_sset_count(struct net_device *netdev, int sset) in alx_get_sset_count() argument
316 switch (sset) { in alx_get_sset_count()

1234567