|
@@ -101,7 +101,7 @@ static int frag_create_buffer(struct list_head *head)
|
|
|
for (i = 0; i < FRAG_BUFFER_SIZE; i++) {
|
|
|
tfp = kmalloc(sizeof(*tfp), GFP_ATOMIC);
|
|
|
if (!tfp) {
|
|
|
- frag_list_free(head);
|
|
|
+ batadv_frag_list_free(head);
|
|
|
return -ENOMEM;
|
|
|
}
|
|
|
tfp->skb = NULL;
|
|
@@ -151,7 +151,7 @@ mov_tail:
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
|
-void frag_list_free(struct list_head *head)
|
|
|
+void batadv_frag_list_free(struct list_head *head)
|
|
|
{
|
|
|
struct frag_packet_list_entry *pf, *tmp_pf;
|
|
|
|
|
@@ -172,8 +172,8 @@ void frag_list_free(struct list_head *head)
|
|
|
* or the skb could be reassembled (skb_new will point to the new packet and
|
|
|
* skb was freed)
|
|
|
*/
|
|
|
-int frag_reassemble_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
|
|
|
- struct sk_buff **new_skb)
|
|
|
+int batadv_frag_reassemble_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
|
|
|
+ struct sk_buff **new_skb)
|
|
|
{
|
|
|
struct orig_node *orig_node;
|
|
|
struct frag_packet_list_entry *tmp_frag_entry;
|
|
@@ -216,8 +216,8 @@ out:
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-int frag_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
|
|
|
- struct hard_iface *hard_iface, const uint8_t dstaddr[])
|
|
|
+int batadv_frag_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
|
|
|
+ struct hard_iface *hard_iface, const uint8_t dstaddr[])
|
|
|
{
|
|
|
struct unicast_packet tmp_uc, *unicast_packet;
|
|
|
struct hard_iface *primary_if;
|
|
@@ -283,7 +283,7 @@ out:
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-int unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv)
|
|
|
+int batadv_unicast_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv)
|
|
|
{
|
|
|
struct ethhdr *ethhdr = (struct ethhdr *)skb->data;
|
|
|
struct unicast_packet *unicast_packet;
|
|
@@ -342,8 +342,9 @@ find_router:
|
|
|
neigh_node->if_incoming->net_dev->mtu) {
|
|
|
/* send frag skb decreases ttl */
|
|
|
unicast_packet->header.ttl++;
|
|
|
- ret = frag_send_skb(skb, bat_priv,
|
|
|
- neigh_node->if_incoming, neigh_node->addr);
|
|
|
+ ret = batadv_frag_send_skb(skb, bat_priv,
|
|
|
+ neigh_node->if_incoming,
|
|
|
+ neigh_node->addr);
|
|
|
goto out;
|
|
|
}
|
|
|
|