svn commit: r297234 - in head/sys: net netinet

George Neville-Neil gnn at neville-neil.com
Thu Mar 24 13:33:03 UTC 2016


Thanks,
George


On 24 Mar 2016, at 20:40, Bjoern A. Zeeb wrote:

> Author: bz
> Date: Thu Mar 24 11:40:10 2016
> New Revision: 297234
> URL: https://svnweb.freebsd.org/changeset/base/297234
>
> Log:
>   Fix compile errors after r297225:
>
>   - properly V_irtualise variable access unbreaking VIMAGE kernels.
>   - remove the volatile from the function return type to make 
> architecture
>     using gcc happy [-Wreturn-type]
>     "type qualifiers ignored on function return type"
>     I am not entirely happy with this solution putting the u_int there
>     but it will do for now.
>
> Modified:
>   head/sys/net/route.c
>   head/sys/net/route.h
>   head/sys/netinet/tcp_subr.c
>   head/sys/netinet/udp_usrreq.c
>
> Modified: head/sys/net/route.c
> ==============================================================================
> --- head/sys/net/route.c	Thu Mar 24 11:38:18 2016	(r297233)
> +++ head/sys/net/route.c	Thu Mar 24 11:40:10 2016	(r297234)
> @@ -201,7 +201,7 @@ rt_tables_get_rnh(int table, int fam)
>  	return (*rt_tables_get_rnh_ptr(table, fam));
>  }
>
> -rt_gen_t
> +u_int
>  rt_tables_get_gen(int table, int fam)
>  {
>  	struct rib_head *rnh;
>
> Modified: head/sys/net/route.h
> ==============================================================================
> --- head/sys/net/route.h	Thu Mar 24 11:38:18 2016	(r297233)
> +++ head/sys/net/route.h	Thu Mar 24 11:40:10 2016	(r297234)
> @@ -437,7 +437,7 @@ int	 rt_setgate(struct rtentry *, struct
>  void 	 rt_maskedcopy(struct sockaddr *, struct sockaddr *, struct 
> sockaddr *);
>  struct rib_head *rt_table_init(int);
>  void	rt_table_destroy(struct rib_head *);
> -rt_gen_t rt_tables_get_gen(int table, int fam);
> +u_int	rt_tables_get_gen(int table, int fam);
>
>  int	rtsock_addrmsg(int, struct ifaddr *, int);
>  int	rtsock_routemsg(int, struct ifnet *ifp, int, struct rtentry *, 
> int);
>
> Modified: head/sys/netinet/tcp_subr.c
> ==============================================================================
> --- head/sys/netinet/tcp_subr.c	Thu Mar 24 11:38:18 2016	(r297233)
> +++ head/sys/netinet/tcp_subr.c	Thu Mar 24 11:40:10 2016	(r297234)
> @@ -1932,7 +1932,7 @@ tcp_ctlinput(int cmd, struct sockaddr *s
>  		notify = tcp_drop_syn_sent;
>  	else if (PRC_IS_REDIRECT(cmd)) {
>  		/* signal EHOSTDOWN, as it flushes the cached route */
> -		in_pcbnotifyall(&tcbinfo, faddr, EHOSTDOWN, notify);
> +		in_pcbnotifyall(&V_tcbinfo, faddr, EHOSTDOWN, notify);
>  		return;
>  	}
>  	/*
>
> Modified: head/sys/netinet/udp_usrreq.c
> ==============================================================================
> --- head/sys/netinet/udp_usrreq.c	Thu Mar 24 11:38:18 2016	(r297233)
> +++ head/sys/netinet/udp_usrreq.c	Thu Mar 24 11:40:10 2016	(r297234)
> @@ -768,7 +768,7 @@ udp_common_ctlinput(int cmd, struct sock
>
>  	if (PRC_IS_REDIRECT(cmd)) {
>  		/* signal EHOSTDOWN, as it flushes the cached route */
> -		in_pcbnotifyall(&udbinfo, faddr, EHOSTDOWN, udp_notify);
> +		in_pcbnotifyall(&V_udbinfo, faddr, EHOSTDOWN, udp_notify);
>  		return;
>  	}


More information about the svn-src-all mailing list