hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/net/llc/llc_sap.c
....@@ -37,6 +37,7 @@
3737
3838 /**
3939 * llc_alloc_frame - allocates sk_buff for frame
40
+ * @sk: socket to allocate frame to
4041 * @dev: network device this skb will be sent over
4142 * @type: pdu type to allocate
4243 * @data_size: data size to allocate
....@@ -273,6 +274,7 @@
273274 * llc_sap_rcv - sends received pdus to the sap state machine
274275 * @sap: current sap component structure.
275276 * @skb: received frame.
277
+ * @sk: socket to associate to frame
276278 *
277279 * Sends received pdus to the sap state machine.
278280 */
....@@ -379,6 +381,7 @@
379381 * llc_sap_mcast - Deliver multicast PDU's to all matching datagram sockets.
380382 * @sap: SAP
381383 * @laddr: address of local LLC (MAC + SAP)
384
+ * @skb: PDU to deliver
382385 *
383386 * Search socket list of the SAP and finds connections with same sap.
384387 * Deliver clone to each.