From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Sender: "Gustavo F. Padovan" Date: Thu, 22 Apr 2010 09:33:47 -0300 From: "Gustavo F. Padovan" To: Dan Carpenter Cc: Marcel Holtmann , "David S. Miller" , Andrei Emeltchenko , linux-bluetooth@vger.kernel.org, netdev@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [patch] bluetooth: handle l2cap_create_connless_pdu() errors Message-ID: <20100422123347.GA5265@vigoh> References: <20100422095201.GO29647@bicker> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20100422095201.GO29647@bicker> List-ID: Hi Dan, * Dan Carpenter [2010-04-22 11:52:01 +0200]: > l2cap_create_connless_pdu() can sometimes return ERR_PTR(-ENOMEM) or > ERR_PTR(-EFAULT). > > Signed-off-by: Dan Carpenter > > diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c > index 99d68c3..9753b69 100644 > --- a/net/bluetooth/l2cap.c > +++ b/net/bluetooth/l2cap.c > @@ -1626,7 +1626,10 @@ static int l2cap_sock_sendmsg(struct kiocb *iocb, struct socket *sock, struct ms > /* Connectionless channel */ > if (sk->sk_type == SOCK_DGRAM) { > skb = l2cap_create_connless_pdu(sk, msg, len); > - err = l2cap_do_send(sk, skb); > + if (IS_ERR(skb)) > + err = PTR_ERR(skb); > + else > + err = l2cap_do_send(sk, skb); > goto done; > } Your fix looks ok, but we have changed l2cap_do_send() to void, so you have to modify your patch. That change is not in the bluetooth-testingtree yet, so remote add my git tree and use the branch ertm. git://git.profusion.mobi/users/padovan/bluetooth-testing.git Regards, -- Gustavo F. Padovan http://padovan.org