1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
.\" -*- nroff -*-
.TH TAPSET::NETWORKING 3stap "October 2018" "SystemTap Tapset Reference"
.SH NAME
tapset::networking \- systemtap networking tapset
.SH DESCRIPTION
This family of probe points is used to probe the activities of the network device.
.TP
.P
.TP
.B netdev.receive
Data received from network device.
.IP
See
.IR probe::netdev.receive (3stap)
for details.
.P
.TP
.B netdev.transmit
Network device transmitting buffer
.IP
See
.IR probe::netdev.transmit (3stap)
for details.
.P
.TP
.B netdev.change_mtu
Called when the netdev MTU is changed
.IP
See
.IR probe::netdev.change_mtu (3stap)
for details.
.P
.TP
.B netdev.open
Called when the device is opened
.IP
See
.IR probe::netdev.open (3stap)
for details.
.P
.TP
.B netdev.close
Called when the device is closed
.IP
See
.IR probe::netdev.close (3stap)
for details.
.P
.TP
.B netdev.hard_transmit
Called when the devices is going to TX (hard)
.IP
See
.IR probe::netdev.hard_transmit (3stap)
for details.
.P
.TP
.B netdev.rx
Called when the device is going to receive a packet
.IP
See
.IR probe::netdev.rx (3stap)
for details.
.P
.TP
.B netdev.change_rx_flag
Called when the device RX flag will be changed
.IP
See
.IR probe::netdev.change_rx_flag (3stap)
for details.
.P
.TP
.B netdev.set_promiscuity
Called when the device enters/leaves promiscuity
.IP
See
.IR probe::netdev.set_promiscuity (3stap)
for details.
.P
.TP
.B netdev.ioctl
Called when the device suffers an IOCTL
.IP
See
.IR probe::netdev.ioctl (3stap)
for details.
.P
.TP
.B netdev.register
Called when the device is registered
.IP
See
.IR probe::netdev.register (3stap)
for details.
.P
.TP
.B netdev.unregister
Called when the device is being unregistered
.IP
See
.IR probe::netdev.unregister (3stap)
for details.
.P
.TP
.B netdev.get_stats
Called when someone asks the device statistics
.IP
See
.IR probe::netdev.get_stats (3stap)
for details.
.P
.TP
.B netdev.change_mac
Called when the netdev_name has the MAC changed
.IP
See
.IR probe::netdev.change_mac (3stap)
for details.
.SH SEE ALSO
.BR
.IR \%probe::netdev.receive (3stap),
.BR
.IR \%probe::netdev.transmit (3stap),
.BR
.IR \%probe::netdev.change_mtu (3stap),
.BR
.IR \%probe::netdev.open (3stap),
.BR
.IR \%probe::netdev.close (3stap),
.BR
.IR \%probe::netdev.hard_transmit (3stap),
.BR
.IR \%probe::netdev.rx (3stap),
.BR
.IR \%probe::netdev.change_rx_flag (3stap),
.BR
.IR \%probe::netdev.set_promiscuity (3stap),
.BR
.IR \%probe::netdev.ioctl (3stap),
.BR
.IR \%probe::netdev.register (3stap),
.BR
.IR \%probe::netdev.unregister (3stap),
.BR
.IR \%probe::netdev.get_stats (3stap),
.BR
.IR \%probe::netdev.change_mac (3stap),
.BR
.IR \%stap (1),
.IR \%stapprobes (3stap)
|