[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
(usagi-users 00996) Re: Problem with USAGI on Linux ARM
In article <XFMail.20011108100550.guido.barzini@xxxxxxxxxx> (at Thu, 08 Nov 2001 10:05:50 -0000 (GMT)), Guido Barzini <guido.barzini@xxxxxxxxxx> says:
> > Hmm, could you try this, please?
> Yes. That works, thank you! Thanks for the really quick response.
I've commited the fix solving the problem in another way.
Please discard the previous one, and let me know if the new fix
does not work well. Thanks.
Index: kernel/linux24/include/net/ndisc.h
===================================================================
RCS file: /cvsroot/usagi/usagi/kernel/linux24/include/net/ndisc.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- kernel/linux24/include/net/ndisc.h 2001/09/15 10:18:20 1.12
+++ kernel/linux24/include/net/ndisc.h 2001/11/08 13:25:06 1.13
@@ -1,4 +1,4 @@
-/* $USAGI: ndisc.h,v 1.12 2001/09/15 10:18:20 yoshfuji Exp $ */
+/* $USAGI: ndisc.h,v 1.13 2001/11/08 13:25:06 yoshfuji Exp $ */
#ifndef _NDISC_H
#define _NDISC_H
@@ -64,7 +64,7 @@
struct nd_opt_hdr {
__u8 nd_opt_type;
__u8 nd_opt_len;
-};
+} __attribute__((__packed__));
union ndisc_options {
struct nd_opt_hdr *nd_opt_array[9]; /*max = home agent info*/
--yoshfuji