Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9355ec23397af32799038d0e8edbfa5b6f425c27
Commit:     9355ec23397af32799038d0e8edbfa5b6f425c27
Parent:     db7bf6d97c6956b7eb0f22131cb5c37bd41f33c0
Author:     Herbert Xu <[EMAIL PROTECTED]>
AuthorDate: Sun Sep 16 16:20:21 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Sun Sep 16 16:20:21 2007 -0700

    [PPP] pppoe: Fill in header directly in __pppoe_xmit
    
    This patch removes the hdr variable (which is copied into the skb)
    and instead sets the header directly in the skb.
    
    It also uses __skb_push instead of skb_push since we've just checked
    using skb_cow for enough head room.
    
    Signed-off-by: Herbert Xu <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 drivers/net/pppoe.c |   20 +++++++++-----------
 1 files changed, 9 insertions(+), 11 deletions(-)

diff --git a/drivers/net/pppoe.c b/drivers/net/pppoe.c
index 8818253..bac3654 100644
--- a/drivers/net/pppoe.c
+++ b/drivers/net/pppoe.c
@@ -848,19 +848,12 @@ static int __pppoe_xmit(struct sock *sk, struct sk_buff 
*skb)
 {
        struct pppox_sock *po = pppox_sk(sk);
        struct net_device *dev = po->pppoe_dev;
-       struct pppoe_hdr hdr;
        struct pppoe_hdr *ph;
        int data_len = skb->len;
 
        if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
                goto abort;
 
-       hdr.ver = 1;
-       hdr.type = 1;
-       hdr.code = 0;
-       hdr.sid = po->num;
-       hdr.length = htons(skb->len);
-
        if (!dev)
                goto abort;
 
@@ -870,12 +863,17 @@ static int __pppoe_xmit(struct sock *sk, struct sk_buff 
*skb)
        if (skb_cow(skb, sizeof(*ph) + dev->hard_header_len))
                goto abort;
 
-       ph = (struct pppoe_hdr *) skb_push(skb, sizeof(struct pppoe_hdr));
-       memcpy(ph, &hdr, sizeof(struct pppoe_hdr));
-       skb->protocol = __constant_htons(ETH_P_PPP_SES);
-
+       __skb_push(skb, sizeof(*ph));
        skb_reset_network_header(skb);
 
+       ph = pppoe_hdr(skb);
+       ph->ver = 1;
+       ph->type = 1;
+       ph->code = 0;
+       ph->sid = po->num;
+       ph->length = htons(data_len);
+
+       skb->protocol = __constant_htons(ETH_P_PPP_SES);
        skb->dev = dev;
 
        dev->hard_header(skb, dev, ETH_P_PPP_SES,
-
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