Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=6cf92e98a48ba4bd5aeb8932b3844d3f8eacac76
Commit:     6cf92e98a48ba4bd5aeb8932b3844d3f8eacac76
Parent:     be48be08a829db09a4f786f44a1872ef0f533c85
Author:     Michal Januszewski <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 30 20:41:49 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Tue Oct 30 21:29:47 2007 -0700

    [CONNECTOR]: Fix a spurious kfree_skb() call
    
    Remove a spurious call to kfree_skb() in the connector rx_skb handler.
    
    This fixes a regression introduced by the '[NET]: make netlink user ->
    kernel interface synchronious' patch 
(cd40b7d3983c708aabe3d3008ec64ffce56d33b0)
    
    Signed-off-by: Michal Januszewski <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 drivers/connector/connector.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/drivers/connector/connector.c b/drivers/connector/connector.c
index 0e328d3..6883fcb 100644
--- a/drivers/connector/connector.c
+++ b/drivers/connector/connector.c
@@ -218,7 +218,7 @@ static void cn_rx_skb(struct sk_buff *__skb)
                    skb->len < nlh->nlmsg_len ||
                    nlh->nlmsg_len > CONNECTOR_MAX_MSG_SIZE) {
                        kfree_skb(skb);
-                       goto out;
+                       return;
                }
 
                len = NLMSG_ALIGN(nlh->nlmsg_len);
@@ -229,9 +229,6 @@ static void cn_rx_skb(struct sk_buff *__skb)
                if (err < 0)
                        kfree_skb(skb);
        }
-
-out:
-       kfree_skb(__skb);
 }
 
 /*
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to