netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jan Oravec <jan.oravec@6com.sk>
To: akpm@osdl.org
Cc: davem@redhat.com, netdev@oss.sgi.com
Subject: Re: [patch 6/18] gcc-3.5: ipv6/ndisc.c fixes
Date: Mon, 26 Jan 2004 23:44:10 +0100	[thread overview]
Message-ID: <20040126224410.GA8133@wsx.ksp.sk> (raw)
In-Reply-To: <200401251107.i0PB7Go25072@mail.osdl.org>

Isn't syntax like:

> -	skb->h.raw = (unsigned char*) msg = (struct nd_msg *) skb_put(skb, len);
> +	skb->h.raw = (unsigned char*) (msg = (struct nd_msg *) skb_put(skb, len));

accepted in gcc-3.5 ?

The warning was about casting msg to unsigned char* and then assigning right
side into that expression with casts.

I wonder the old code did not produce warnings in gcc-3.3; it assigned to
unsigned char* variable a struct nd_msg* variable.


Jan


On Sun, Jan 25, 2004 at 03:07:16AM -0800, akpm@osdl.org wrote:
> 
> 
> net/ipv6/ndisc.c: In function `ndisc_send_na':
> net/ipv6/ndisc.c:478: warning: use of cast expressions as lvalues is deprecated
> 
> 
> 
> ---
> 
>  net/ipv6/ndisc.c |   12 ++++++++----
>  1 files changed, 8 insertions(+), 4 deletions(-)
> 
> diff -puN net/ipv6/ndisc.c~gcc-35-ip6-ndisc-fix net/ipv6/ndisc.c
> --- 25/net/ipv6/ndisc.c~gcc-35-ip6-ndisc-fix	2004-01-19 13:36:19.000000000 -0800
> +++ 25-akpm/net/ipv6/ndisc.c	2004-01-19 13:36:19.000000000 -0800
> @@ -475,7 +475,8 @@ static void ndisc_send_na(struct net_dev
>  	skb_reserve(skb, (dev->hard_header_len + 15) & ~15);
>  	ip6_nd_hdr(sk, skb, dev, src_addr, daddr, IPPROTO_ICMPV6, len);
>  
> -	skb->h.raw = (unsigned char*) msg = (struct nd_msg *) skb_put(skb, len);
> +	msg = (struct nd_msg *)skb_put(skb, len);
> +	skb->h.raw = (unsigned char*)msg;
>  
>          msg->icmph.icmp6_type = NDISC_NEIGHBOUR_ADVERTISEMENT;
>          msg->icmph.icmp6_code = 0;
> @@ -559,7 +560,8 @@ void ndisc_send_ns(struct net_device *de
>  	skb_reserve(skb, (dev->hard_header_len + 15) & ~15);
>  	ip6_nd_hdr(sk, skb, dev, saddr, daddr, IPPROTO_ICMPV6, len);
>  
> -	skb->h.raw = (unsigned char*) msg = (struct nd_msg *)skb_put(skb, len);
> +	msg = (struct nd_msg *)skb_put(skb, len);
> +	skb->h.raw = (unsigned char*)msg;
>  	msg->icmph.icmp6_type = NDISC_NEIGHBOUR_SOLICITATION;
>  	msg->icmph.icmp6_code = 0;
>  	msg->icmph.icmp6_cksum = 0;
> @@ -630,7 +632,8 @@ void ndisc_send_rs(struct net_device *de
>  	skb_reserve(skb, (dev->hard_header_len + 15) & ~15);
>  	ip6_nd_hdr(sk, skb, dev, saddr, daddr, IPPROTO_ICMPV6, len);
>  
> -        skb->h.raw = (unsigned char*) hdr = (struct icmp6hdr *) skb_put(skb, len);
> +        hdr = (struct icmp6hdr *)skb_put(skb, len);
> +        skb->h.raw = (unsigned char*)hdr;
>          hdr->icmp6_type = NDISC_ROUTER_SOLICITATION;
>          hdr->icmp6_code = 0;
>          hdr->icmp6_cksum = 0;
> @@ -1374,7 +1377,8 @@ void ndisc_send_redirect(struct sk_buff 
>  	ip6_nd_hdr(sk, buff, dev, &saddr_buf, &skb->nh.ipv6h->saddr,
>  		   IPPROTO_ICMPV6, len);
>  
> -	buff->h.raw = (unsigned char*) icmph = (struct icmp6hdr *) skb_put(buff, len);
> +	icmph = (struct icmp6hdr *)skb_put(buff, len);
> +	buff->h.raw = (unsigned char*)icmph;
>  
>  	memset(icmph, 0, sizeof(struct icmp6hdr));
>  	icmph->icmp6_type = NDISC_REDIRECT;
> 
> _
> 

      reply	other threads:[~2004-01-26 22:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-01-25 11:07 [patch 6/18] gcc-3.5: ipv6/ndisc.c fixes akpm
2004-01-26 22:44 ` Jan Oravec [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20040126224410.GA8133@wsx.ksp.sk \
    --to=jan.oravec@6com.sk \
    --cc=akpm@osdl.org \
    --cc=davem@redhat.com \
    --cc=netdev@oss.sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).