Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1248073

Re: [PATCH 2/2] isdn: correctly check failed allocation

From isdn@linux-pingi.de
Newsgroups linux.kernel
Subject Re: [PATCH 2/2] isdn: correctly check failed allocation
Date 2015-10-15 20:50 +0200
Message-ID <qjVLb-6zi-3@gated-at.bofh.it> (permalink)
References <qjTzJ-3md-31@gated-at.bofh.it> <qjTzJ-3md-49@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hi Insu,

thanks for bringing up this issue again.
I thought I did fix this a year ago, but seems it did not managed to
sent it upstream.

The patch do not fix this completly, since it will drop the original skb
from the L2 I frame queue, so the transmission would lost an I-FRAME,
which is not allowed by the protocol.

The format of the new lines is wrong, you need to use TAB.


Best regards
Karsten

Am 15.10.2015 um 18:29 schrieb Insu Yun:
> Since skb_clone is memory allocation, it could be failed when lack of resource.
> Therefore, return value of skb_clone needs to be checked and handle error.
> 
> Signed-off-by: Insu Yun <wuninsu@gmail.com>
> ---
>  drivers/isdn/mISDN/layer2.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/drivers/isdn/mISDN/layer2.c b/drivers/isdn/mISDN/layer2.c
> index 949cabb..888c610 100644
> --- a/drivers/isdn/mISDN/layer2.c
> +++ b/drivers/isdn/mISDN/layer2.c
> @@ -1509,6 +1509,12 @@ l2_pull_iqueue(struct FsmInst *fi, int event, void *arg)
>  	}
>  
>  	nskb = skb_clone(skb, GFP_ATOMIC);
> +  if (!nskb) {
> +			printk(KERN_WARNING "%s: no skb mem in %s\n",
> +			       mISDNDevName4ch(&l2->ch), __func__);
> +			return;
> +  }
> +
>  	p1 = skb_headroom(nskb);
>  	if (p1 >= i)
>  		memcpy(skb_push(nskb, i), header, i);
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 1/2] isdn: correctly check failed allocation Insu Yun <wuninsu@gmail.com> - 2015-10-15 18:30 +0200
  [PATCH 2/2] isdn: correctly check failed allocation Insu Yun <wuninsu@gmail.com> - 2015-10-15 18:30 +0200
    Re: [PATCH 2/2] isdn: correctly check failed allocation isdn@linux-pingi.de - 2015-10-15 20:50 +0200
    Re: [PATCH 2/2] isdn: correctly check failed allocation David Miller <davem@davemloft.net> - 2015-10-16 08:20 +0200

csiph-web