Re: [PATCH] X.25: Fix address field length calculation

2013-10-17 Thread Andrew Hendry
Sorry for the previous html mail. This appears to be correct, what length addresses are you getting back in the call accept when this happens? On Wed, Oct 16, 2013 at 7:56 PM, David Laight wrote: >> On Tue, 2013-10-15 at 14:29 +, Kelleter, Günther wrote: >> > Addresses are BCD encoded, not AS

[PATCH 2/2] MCA: setup ifdefs

2007-07-14 Thread Andrew Hendry
The MCA setup performed is only needed when CONFIG_MCA=y. This wraps the setup with CONFIG_MCA and removes EXPORT_SYMBOL(machine_id) as no modules use it. Moved MCA setup variables from processor.h to mca.h because nothing else uses them. Signed-off-by: Andrew Hendry <[EMAIL PROTECTED]>

[PATCH 1/2] MCA: removed unused mca_pentium_flag

2007-07-14 Thread Andrew Hendry
The check for mca_pentium_flag was removed long ago. This cleans up the flag and documentation. Signed-off-by: Andrew Hendry <[EMAIL PROTECTED]> diff -uprN -X dontdiff a/arch/i386/kernel/cpu/bugs.c b/arch/i386/kernel/cpu/bugs.c --- a/arch/i386/kernel/cpu/bugs.c 2007-07-15 12:04:50.000

[PATCH 0/2] re: x86 setup code rewrite in C - revised

2007-07-14 Thread Andrew Hendry
I tested the 'x86 setup code rewrite revised' patches on a few new Pentium systems and some virtualized environments without any issues. Here are some further patches ontop of yours to remove some unused code and ifdef the MCA setup. -Andrew - To unsubscribe from this list: send the line "unsub

Re: it seems Evolution remove the Tabs

2007-05-24 Thread andrew hendry
select your whole mail and use pre-format in evolution. or change it to pre-format and do insert->text file. this should send it with tabs intact, the confusing bit i think is if your testing it by sending it to yourself, then you cant see the tabs again. Read it in another mailer, something like

Re: Linux 2.6.22-rc1

2007-05-15 Thread andrew hendry
Yes, putting the extern highstart_pfn back compiles clean for that rand config. Sorry for the attachment, no access to a patch friendly mailer at work. Andrew. On 5/16/07, Linus Torvalds <[EMAIL PROTECTED]> wrote: On Tue, 15 May 2007, andrew hendry wrote: > > almost, highstart

Re: Linux 2.6.22-rc1

2007-05-14 Thread andrew hendry
ly once arch/i386/mm/discontig.c:314: error: for each function it appears in.) On 5/15/07, Linus Torvalds <[EMAIL PROTECTED]> wrote: On Tue, 15 May 2007, andrew hendry wrote: > > from a randconfig, attached. > > arch/i386/mm/discontig.c:107: error: expected identifier or '(

Re: Linux 2.6.22-rc1

2007-05-14 Thread andrew hendry
from a randconfig, attached. arch/i386/mm/discontig.c:107: error: expected identifier or '(' before numeric constant arch/i386/mm/discontig.c: In function 'zone_sizes_init': arch/i386/mm/discontig.c:363: error: 'ZONE_HIGHMEM' undeclared (first use in this function) arch/i386/mm/discontig.c:363: e

Re: Linux 2.6.22-rc1

2007-05-13 Thread andrew hendry
sorry, forgot to CC mailing list last time. build errors from make randconfig # CONFIG_SMP is not set CONFIG_X86_VOYAGER=y CONFIG_X86_MSR=y CONFIG_X86_CPUID=y arch/i386/kernel/built-in.o: In function `vic_sys_interrupt': (.text+0x2770): undefined reference to `smp_vic_sys_interrupt' arch/i386/k

[PATCH 1/2] mca: mca_pentium_flag no longer used

2007-05-13 Thread Andrew Hendry
Thanks James, hopefully have the mailer fixed now. The check for mca_pentium_flag was removed long ago. This cleans up the flag and documentation. Signed-off-by: Andrew Hendry <[EMAIL PROTECTED]> diff -uprN -X dontdiff linux-2.6.21-vanilla/arch/i386/kernel/setup.c linux-2.6.21/arc

[PATCH 2/2] mca: Wrap MCA code with CONFIG_MCA

2007-05-13 Thread Andrew Hendry
: Andrew Hendry <[EMAIL PROTECTED] > diff -uprN -X dontdiff linux-2.6.21-vanilla/arch/i386/boot/setup.S linux-2.6.21/arch/i386/boot/setup.S --- linux-2.6.21-vanilla/arch/i386/boot/setup.S 2007-05-06 13:05:15.0 +1000 +++ linux-2.6.21/arch/i386/boot/setup.S 2007-05-06 17:39:22.000

2.6.21-rc1 build errors with X86_VOYAGER=y

2007-02-28 Thread andrew hendry
2.6.21-rc2-git2 from some make randconfig # CONFIG_SMP is not set CONFIG_X86_VOYAGER=y CONFIG_X86_MSR=y CONFIG_X86_CPUID=y LD .tmp_vmlinux1 arch/i386/kernel/built-in.o: In function `vic_sys_interrupt': (.text+0x3141): undefined reference to `smp_vic_sys_interrupt' arch/i386/kernel/built-in.

Re: x25_create initializing socket data twice ...

2005-03-02 Thread Andrew Hendry
Hi Herbert, On the same path sk_set_owner also gets called twice, I think this causes double module use count when creating sockets. Module use count need some attention all over x25. Im not sure if the fix is as straightforward, the calls are: sock_init_data(sock,sk) vs sock_init_data(NULL,sk)