Skip to content

Commit

Permalink
ax25: use skb_expand_head
Browse files Browse the repository at this point in the history
Use skb_expand_head() in ax25_transmit_buffer and ax25_rt_build_path.
Unlike skb_realloc_headroom, new helper does not allocate a new skb if possible.

Signed-off-by: Vasily Averin <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
vaverin authored and davem330 committed Aug 3, 2021
1 parent 14ee70c commit 53744a4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 23 deletions.
4 changes: 1 addition & 3 deletions net/ax25/ax25_ip.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,8 @@ netdev_tx_t ax25_ip_xmit(struct sk_buff *skb)
skb_pull(skb, AX25_KISS_HEADER_LEN);

if (digipeat != NULL) {
if ((ourskb = ax25_rt_build_path(skb, src, dst, route->digipeat)) == NULL) {
kfree_skb(skb);
if ((ourskb = ax25_rt_build_path(skb, src, dst, route->digipeat)) == NULL)
goto put;
}

skb = ourskb;
}
Expand Down
13 changes: 3 additions & 10 deletions net/ax25/ax25_out.c
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,6 @@ void ax25_kick(ax25_cb *ax25)

void ax25_transmit_buffer(ax25_cb *ax25, struct sk_buff *skb, int type)
{
struct sk_buff *skbn;
unsigned char *ptr;
int headroom;

Expand All @@ -336,18 +335,12 @@ void ax25_transmit_buffer(ax25_cb *ax25, struct sk_buff *skb, int type)

headroom = ax25_addr_size(ax25->digipeat);

if (skb_headroom(skb) < headroom) {
if ((skbn = skb_realloc_headroom(skb, headroom)) == NULL) {
if (unlikely(skb_headroom(skb) < headroom)) {
skb = skb_expand_head(skb, headroom);
if (!skb) {
printk(KERN_CRIT "AX.25: ax25_transmit_buffer - out of memory\n");
kfree_skb(skb);
return;
}

if (skb->sk != NULL)
skb_set_owner_w(skbn, skb->sk);

consume_skb(skb);
skb = skbn;
}

ptr = skb_push(skb, headroom);
Expand Down
13 changes: 3 additions & 10 deletions net/ax25/ax25_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -441,24 +441,17 @@ int ax25_rt_autobind(ax25_cb *ax25, ax25_address *addr)
struct sk_buff *ax25_rt_build_path(struct sk_buff *skb, ax25_address *src,
ax25_address *dest, ax25_digi *digi)
{
struct sk_buff *skbn;
unsigned char *bp;
int len;

len = digi->ndigi * AX25_ADDR_LEN;

if (skb_headroom(skb) < len) {
if ((skbn = skb_realloc_headroom(skb, len)) == NULL) {
if (unlikely(skb_headroom(skb) < len)) {
skb = skb_expand_head(skb, len);
if (!skb) {
printk(KERN_CRIT "AX.25: ax25_dg_build_path - out of memory\n");
return NULL;
}

if (skb->sk != NULL)
skb_set_owner_w(skbn, skb->sk);

consume_skb(skb);

skb = skbn;
}

bp = skb_push(skb, len);
Expand Down

0 comments on commit 53744a4

Please sign in to comment.