Home
last modified time | relevance | path

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

/linux-6.1.9/fs/ocfs2/cluster/
Dnetdebug.c45 void o2net_debug_add_nst(struct o2net_send_tracking *nst) in o2net_debug_add_nst() argument
48 list_add(&nst->st_net_debug_item, &send_tracking); in o2net_debug_add_nst()
52 void o2net_debug_del_nst(struct o2net_send_tracking *nst) in o2net_debug_del_nst() argument
55 if (!list_empty(&nst->st_net_debug_item)) in o2net_debug_del_nst()
56 list_del_init(&nst->st_net_debug_item); in o2net_debug_del_nst()
63 struct o2net_send_tracking *nst, *ret = NULL; in next_nst() local
67 list_for_each_entry(nst, &nst_start->st_net_debug_item, in next_nst()
70 if (&nst->st_net_debug_item == &send_tracking) in next_nst()
74 if (nst->st_task != NULL) { in next_nst()
75 ret = nst; in next_nst()
[all …]
Dtcp.h112 void o2net_debug_add_nst(struct o2net_send_tracking *nst);
113 void o2net_debug_del_nst(struct o2net_send_tracking *nst);
123 static inline void o2net_debug_add_nst(struct o2net_send_tracking *nst) in o2net_debug_add_nst() argument
126 static inline void o2net_debug_del_nst(struct o2net_send_tracking *nst) in o2net_debug_del_nst() argument
Dtcp.c132 static void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, in o2net_init_nst() argument
135 INIT_LIST_HEAD(&nst->st_net_debug_item); in o2net_init_nst()
136 nst->st_task = task; in o2net_init_nst()
137 nst->st_msg_type = msgtype; in o2net_init_nst()
138 nst->st_msg_key = msgkey; in o2net_init_nst()
139 nst->st_node = node; in o2net_init_nst()
142 static inline void o2net_set_nst_sock_time(struct o2net_send_tracking *nst) in o2net_set_nst_sock_time() argument
144 nst->st_sock_time = ktime_get(); in o2net_set_nst_sock_time()
147 static inline void o2net_set_nst_send_time(struct o2net_send_tracking *nst) in o2net_set_nst_send_time() argument
149 nst->st_send_time = ktime_get(); in o2net_set_nst_send_time()
[all …]
/linux-6.1.9/drivers/net/ethernet/ibm/emac/
Dcore.c1975 struct net_device_stats *nst = &ndev->stats; in emac_stats() local
1982 nst->rx_packets = (unsigned long)st->rx_packets; in emac_stats()
1983 nst->rx_bytes = (unsigned long)st->rx_bytes; in emac_stats()
1984 nst->tx_packets = (unsigned long)st->tx_packets; in emac_stats()
1985 nst->tx_bytes = (unsigned long)st->tx_bytes; in emac_stats()
1986 nst->rx_dropped = (unsigned long)(est->rx_dropped_oom + in emac_stats()
1990 nst->tx_dropped = (unsigned long)est->tx_dropped; in emac_stats()
1992 nst->rx_errors = (unsigned long)est->rx_bd_errors; in emac_stats()
1993 nst->rx_fifo_errors = (unsigned long)(est->rx_bd_overrun + in emac_stats()
1996 nst->rx_frame_errors = (unsigned long)(est->rx_bd_alignment_error + in emac_stats()
[all …]
/linux-6.1.9/drivers/net/wireless/broadcom/b43/
Dwa.c105 static void b43_write_nst(struct b43_wldev *dev, const u16 *nst) in b43_write_nst() argument
110 b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE, i, nst[i]); in b43_write_nst()