Home
last modified time | relevance | path

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

/linux-4.1.27/fs/ocfs2/cluster/
Dnetdebug.c66 void o2net_debug_add_nst(struct o2net_send_tracking *nst) in o2net_debug_add_nst() argument
69 list_add(&nst->st_net_debug_item, &send_tracking); in o2net_debug_add_nst()
73 void o2net_debug_del_nst(struct o2net_send_tracking *nst) in o2net_debug_del_nst() argument
76 if (!list_empty(&nst->st_net_debug_item)) in o2net_debug_del_nst()
77 list_del_init(&nst->st_net_debug_item); in o2net_debug_del_nst()
84 struct o2net_send_tracking *nst, *ret = NULL; in next_nst() local
88 list_for_each_entry(nst, &nst_start->st_net_debug_item, in next_nst()
91 if (&nst->st_net_debug_item == &send_tracking) in next_nst()
95 if (nst->st_task != NULL) { in next_nst()
96 ret = nst; in next_nst()
[all …]
Dtcp.h129 void o2net_debug_add_nst(struct o2net_send_tracking *nst);
130 void o2net_debug_del_nst(struct o2net_send_tracking *nst);
141 static inline void o2net_debug_add_nst(struct o2net_send_tracking *nst) in o2net_debug_add_nst() argument
144 static inline void o2net_debug_del_nst(struct o2net_send_tracking *nst) in o2net_debug_del_nst() argument
Dtcp.c147 static void o2net_init_nst(struct o2net_send_tracking *nst, u32 msgtype, in o2net_init_nst() argument
150 INIT_LIST_HEAD(&nst->st_net_debug_item); in o2net_init_nst()
151 nst->st_task = task; in o2net_init_nst()
152 nst->st_msg_type = msgtype; in o2net_init_nst()
153 nst->st_msg_key = msgkey; in o2net_init_nst()
154 nst->st_node = node; in o2net_init_nst()
157 static inline void o2net_set_nst_sock_time(struct o2net_send_tracking *nst) in o2net_set_nst_sock_time() argument
159 nst->st_sock_time = ktime_get(); in o2net_set_nst_sock_time()
162 static inline void o2net_set_nst_send_time(struct o2net_send_tracking *nst) in o2net_set_nst_send_time() argument
164 nst->st_send_time = ktime_get(); in o2net_set_nst_send_time()
[all …]
/linux-4.1.27/drivers/net/ethernet/ibm/emac/
Dcore.c1904 struct net_device_stats *nst = &dev->nstats; in emac_stats() local
1911 nst->rx_packets = (unsigned long)st->rx_packets; in emac_stats()
1912 nst->rx_bytes = (unsigned long)st->rx_bytes; in emac_stats()
1913 nst->tx_packets = (unsigned long)st->tx_packets; in emac_stats()
1914 nst->tx_bytes = (unsigned long)st->tx_bytes; in emac_stats()
1915 nst->rx_dropped = (unsigned long)(est->rx_dropped_oom + in emac_stats()
1919 nst->tx_dropped = (unsigned long)est->tx_dropped; in emac_stats()
1921 nst->rx_errors = (unsigned long)est->rx_bd_errors; in emac_stats()
1922 nst->rx_fifo_errors = (unsigned long)(est->rx_bd_overrun + in emac_stats()
1925 nst->rx_frame_errors = (unsigned long)(est->rx_bd_alignment_error + in emac_stats()
[all …]
/linux-4.1.27/drivers/net/wireless/b43/
Dwa.c212 static void b43_write_nst(struct b43_wldev *dev, const u16 *nst) in b43_write_nst() argument
217 b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE, i, nst[i]); in b43_write_nst()