netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch 3/3] git-net: sctp build fix (not for applying)
@ 2007-10-02 21:04 akpm
  2007-10-03 13:50 ` Vlad Yasevich
  0 siblings, 1 reply; 4+ messages in thread
From: akpm @ 2007-10-02 21:04 UTC (permalink / raw)
  To: davem; +Cc: netdev, akpm

From: Andrew Morton <akpm@linux-foundation.org>

net/sctp/sm_statetable.c:551: error: 'sctp_sf_tabort_8_4_8' undeclared here (not in a function)


Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 net/sctp/sm_statetable.c |    2 --
 1 file changed, 2 deletions(-)

diff -puN net/sctp/sm_statetable.c~git-net-sctp-hack net/sctp/sm_statetable.c
--- a/net/sctp/sm_statetable.c~git-net-sctp-hack
+++ a/net/sctp/sm_statetable.c
@@ -527,8 +527,6 @@ static const sctp_sm_table_entry_t prsct
 	/* SCTP_STATE_EMPTY */ \
 	TYPE_SCTP_FUNC(sctp_sf_ootb), \
 	/* SCTP_STATE_CLOSED */ \
-	TYPE_SCTP_FUNC(sctp_sf_tabort_8_4_8), \
-	/* SCTP_STATE_COOKIE_WAIT */ \
 	TYPE_SCTP_FUNC(sctp_sf_discard_chunk), \
 	/* SCTP_STATE_COOKIE_ECHOED */ \
 	TYPE_SCTP_FUNC(sctp_sf_eat_auth), \
_

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch 3/3] git-net: sctp build fix (not for applying)
  2007-10-02 21:04 [patch 3/3] git-net: sctp build fix (not for applying) akpm
@ 2007-10-03 13:50 ` Vlad Yasevich
  2007-10-03 23:45   ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Vlad Yasevich @ 2007-10-03 13:50 UTC (permalink / raw)
  To: akpm; +Cc: davem, netdev

akpm@linux-foundation.org wrote:
> From: Andrew Morton <akpm@linux-foundation.org>
> 
> net/sctp/sm_statetable.c:551: error: 'sctp_sf_tabort_8_4_8' undeclared here (not in a function)
> 

Andrew, is the a result of the merge of net-2.6.24 with net-2.6?  

That's the only way I see this happening.

> 
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
> 
>  net/sctp/sm_statetable.c |    2 --
>  1 file changed, 2 deletions(-)
> 
> diff -puN net/sctp/sm_statetable.c~git-net-sctp-hack net/sctp/sm_statetable.c
> --- a/net/sctp/sm_statetable.c~git-net-sctp-hack
> +++ a/net/sctp/sm_statetable.c
> @@ -527,8 +527,6 @@ static const sctp_sm_table_entry_t prsct
>  	/* SCTP_STATE_EMPTY */ \
>  	TYPE_SCTP_FUNC(sctp_sf_ootb), \
>  	/* SCTP_STATE_CLOSED */ \
> -	TYPE_SCTP_FUNC(sctp_sf_tabort_8_4_8), \
                       ^^^^^^^^^^^^^^^^^^^^
That should be changed to sctp_sf_ootb and then it'll compile.  As is, the patch
is wrong.

Thanks
-vlad

> -	/* SCTP_STATE_COOKIE_WAIT */ \
>  	TYPE_SCTP_FUNC(sctp_sf_discard_chunk), \
>  	/* SCTP_STATE_COOKIE_ECHOED */ \
>  	TYPE_SCTP_FUNC(sctp_sf_eat_auth), \
> _
> -
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch 3/3] git-net: sctp build fix (not for applying)
  2007-10-03 13:50 ` Vlad Yasevich
@ 2007-10-03 23:45   ` David Miller
  2007-10-04 15:02     ` Vlad Yasevich
  0 siblings, 1 reply; 4+ messages in thread
From: David Miller @ 2007-10-03 23:45 UTC (permalink / raw)
  To: vladislav.yasevich; +Cc: akpm, netdev

From: Vlad Yasevich <vladislav.yasevich@hp.com>
Date: Wed, 03 Oct 2007 09:50:55 -0400

> akpm@linux-foundation.org wrote:
> > From: Andrew Morton <akpm@linux-foundation.org>
> > 
> > net/sctp/sm_statetable.c:551: error: 'sctp_sf_tabort_8_4_8' undeclared here (not in a function)
> > 
> 
> Andrew, is the a result of the merge of net-2.6.24 with net-2.6?  

Actually, it is a result of merging with Linus's tree since your SCTP
bits were there already, that's why Andrew hit this.

> That's the only way I see this happening.

Right.

I'll resolve this cleanly as I rebase net-2.6.24 today.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [patch 3/3] git-net: sctp build fix (not for applying)
  2007-10-03 23:45   ` David Miller
@ 2007-10-04 15:02     ` Vlad Yasevich
  0 siblings, 0 replies; 4+ messages in thread
From: Vlad Yasevich @ 2007-10-04 15:02 UTC (permalink / raw)
  To: David Miller; +Cc: akpm, netdev

David Miller wrote:
> From: Vlad Yasevich <vladislav.yasevich@hp.com>
> Date: Wed, 03 Oct 2007 09:50:55 -0400
> 
>> akpm@linux-foundation.org wrote:
>>> From: Andrew Morton <akpm@linux-foundation.org>
>>>
>>> net/sctp/sm_statetable.c:551: error: 'sctp_sf_tabort_8_4_8' undeclared here (not in a function)
>>>
>> Andrew, is the a result of the merge of net-2.6.24 with net-2.6?  
> 
> Actually, it is a result of merging with Linus's tree since your SCTP
> bits were there already, that's why Andrew hit this.
> 
>> That's the only way I see this happening.
> 
> Right.
> 
> I'll resolve this cleanly as I rebase net-2.6.24 today.

OK.  Thanks David.

-vlad

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-10-04 15:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-02 21:04 [patch 3/3] git-net: sctp build fix (not for applying) akpm
2007-10-03 13:50 ` Vlad Yasevich
2007-10-03 23:45   ` David Miller
2007-10-04 15:02     ` Vlad Yasevich

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).