Re: [patch] ipvs: force read of atomic_t in while loop

2007-08-08 Thread Horms
_dest(struct ip_vs_service *sv > write_lock_bh(&__ip_vs_svc_lock); > > /* Wait until all other svc users go away */ > - while (atomic_read(>usecnt) > 1) {}; > + IP_VS_WAIT_WHILE(atomic_read(>usecnt) > 1); > > /* call

Re: [patch] ipvs: force read of atomic_t in while loop

2007-08-08 Thread Horms
-usecnt) 1) {}; + IP_VS_WAIT_WHILE(atomic_read(svc-usecnt) 1); /* call the update_service, because server weight may be changed */ svc-scheduler-update_service(svc); -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list

Re: [2/2] 2.6.23-rc1: known regressions

2007-08-01 Thread Horms
> IA64 > > Subject : Regression in serial console on ia64 after 2.6.22 > References : http://marc.info/?l=linux-ia64=118483645914066=2 > Last known good : ? > Submitter : Horms <[EMAIL PROTECTED]> > Caused-By : Yinghai Lu <[EMAIL PROTECTE

Re: [2/2] 2.6.23-rc1: known regressions

2007-08-01 Thread Horms
IA64 Subject : Regression in serial console on ia64 after 2.6.22 References : http://marc.info/?l=linux-ia64m=118483645914066w=2 Last known good : ? Submitter : Horms [EMAIL PROTECTED] Caused-By : Yinghai Lu [EMAIL PROTECTED] commit

Re: Regression in serial console on ia64 after 2.6.22

2007-07-25 Thread Horms
On Tue, Jul 24, 2007 at 04:57:32PM -0700, Yinghai Lu wrote: > > IA64 > > Subject : Regression in serial console on ia64 after 2.6.22 > References : http://marc.info/?l=linux-ia64=118483645914066=2 > Last known good : ? > Submitter : Horms <[EM

Re: Regression in serial console on ia64 after 2.6.22

2007-07-25 Thread Horms
On Tue, Jul 24, 2007 at 04:57:32PM -0700, Yinghai Lu wrote: IA64 Subject : Regression in serial console on ia64 after 2.6.22 References : http://marc.info/?l=linux-ia64m=118483645914066w=2 Last known good : ? Submitter : Horms [EMAIL PROTECTED] Caused

Re: [PATCH] kdump/kexec: calculate note size at compile time

2007-03-28 Thread Horms
ated version is below. > > +#define KEXEC_NOTE_BYTES ( (KEXEC_NOTE_HEAD_BYTES * 2) + \ > > Why are we multiplying KEXEC_NOTE_HEAD_BYTES with 2? The way that the note merging code works in vmcore it assumes that the area is a list of notes. And there is a terminating note that h

Re: [PATCH] kdump/kexec: calculate note size at compile time

2007-03-28 Thread Horms
the header values set to 0, and nothing else. So the time 2 is for the space to store the terminating note. This structure isn't entirely neccessary, and if we were to modify the mergeing code in vmcore (which runs in the second kernel) it could be changed. -- Horms H: http://www.vergenet.net/~horms

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-16 Thread Horms
On Fri, Mar 16, 2007 at 07:17:43AM +, Ian Campbell wrote: > On Fri, 2007-03-16 at 08:48 +0900, Horms wrote: > > > > > > > > Signed-off-by: Ian Campbell <[EMAIL PROTECTED]> > > > > > > > > diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore

Re: [Fastboot] [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-16 Thread Horms
On Fri, Mar 16, 2007 at 08:52:30AM +0530, Vivek Goyal wrote: > On Fri, Mar 16, 2007 at 11:40:07AM +0900, Magnus Damm wrote: > > On 3/16/07, Horms <[EMAIL PROTECTED]> wrote: > > >On Thu, Mar 15, 2007 at 06:56:16PM +0530, Vivek Goyal wrote: > > >> On Thu, M

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-16 Thread Horms
On Fri, Mar 16, 2007 at 07:17:43AM +, Ian Campbell wrote: On Fri, 2007-03-16 at 08:48 +0900, Horms wrote: Signed-off-by: Ian Campbell [EMAIL PROTECTED] diff --git a/fs/proc/vmcore.c b/fs/proc/vmcore.c index d960507..523e109 100644 --- a/fs/proc/vmcore.c +++ b/fs

Re: [Fastboot] [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-16 Thread Horms
On Fri, Mar 16, 2007 at 08:52:30AM +0530, Vivek Goyal wrote: On Fri, Mar 16, 2007 at 11:40:07AM +0900, Magnus Damm wrote: On 3/16/07, Horms [EMAIL PROTECTED] wrote: On Thu, Mar 15, 2007 at 06:56:16PM +0530, Vivek Goyal wrote: On Thu, Mar 15, 2007 at 12:22:57PM +, Ian Campbell wrote

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-15 Thread Horms
). For now most patches go in either through Andrew or the relevant architecture maintainers. -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTEC

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-15 Thread Horms
m-i386/kexec.h > > +++ b/include/asm-i386/kexec.h > > @@ -47,6 +47,9 @@ > > /* The native architecture */ > > #define KEXEC_ARCH KEXEC_ARCH_386 > > > > +/* We can also handle crash dumps from 64 bit kernel. */ > > +#define vmcore_elf_check_arch_c

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-15 Thread Horms
On Thu, Mar 15, 2007 at 11:17:26AM +0530, Vivek Goyal wrote: > On Thu, Mar 15, 2007 at 02:07:56PM +0900, Horms wrote: > > On Thu, Mar 15, 2007 at 10:25:36AM +0530, Vivek Goyal wrote: > > > On Thu, Mar 15, 2007 at 10:46:38AM +0900, Horms wrote: > > > > On Wed, Mar 14,

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-15 Thread Horms
On Thu, Mar 15, 2007 at 11:17:26AM +0530, Vivek Goyal wrote: On Thu, Mar 15, 2007 at 02:07:56PM +0900, Horms wrote: On Thu, Mar 15, 2007 at 10:25:36AM +0530, Vivek Goyal wrote: On Thu, Mar 15, 2007 at 10:46:38AM +0900, Horms wrote: On Wed, Mar 14, 2007 at 05:00:09PM +, Ian Campbell

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-15 Thread Horms
architecture maintainers. -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-15 Thread Horms
archtectures as vmcore_elf_check_arch_cross isn't defined for them? -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-14 Thread Horms
On Thu, Mar 15, 2007 at 10:25:36AM +0530, Vivek Goyal wrote: > On Thu, Mar 15, 2007 at 10:46:38AM +0900, Horms wrote: > > On Wed, Mar 14, 2007 at 05:00:09PM +, Ian Campbell wrote: > > > The specific case I am encountering is kdump under Xen with a 64 bit > > > h

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-14 Thread Horms
On Wed, Mar 14, 2007 at 05:00:09PM +, Ian Campbell wrote: > The specific case I am encountering is kdump under Xen with a 64 bit > hypervisor and 32 bit kernel/userspace. The dump created is a 64 bit due > to the hypervisor but the dump kernel is 32 bit to match the domain 0 > kernel. > >

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-14 Thread Horms
On Wed, Mar 14, 2007 at 05:00:09PM +, Ian Campbell wrote: The specific case I am encountering is kdump under Xen with a 64 bit hypervisor and 32 bit kernel/userspace. The dump created is a 64 bit due to the hypervisor but the dump kernel is 32 bit to match the domain 0 kernel. It's

Re: [PATCH 1/1] Allow i386 crash kernels to handle x86_64 dumps

2007-03-14 Thread Horms
On Thu, Mar 15, 2007 at 10:25:36AM +0530, Vivek Goyal wrote: On Thu, Mar 15, 2007 at 10:46:38AM +0900, Horms wrote: On Wed, Mar 14, 2007 at 05:00:09PM +, Ian Campbell wrote: The specific case I am encountering is kdump under Xen with a 64 bit hypervisor and 32 bit kernel/userspace

Re: [Fastboot] [PATCH RFC 0/5] hard_smp_processor_id overhaul

2007-03-01 Thread Horms
On Thu, Mar 01, 2007 at 04:16:13PM +0900, Fernando Luis Vázquez Cao wrote: > With the advent of kdump, the assumption that the boot CPU when running > an UP kernel is always the CPU with a hardware ID of 0 (usually referred > to as BSP on some architectures) does not hold true anymore. The reason

Re: [Fastboot] [PATCH RFC 0/5] hard_smp_processor_id overhaul

2007-03-01 Thread Horms
On Thu, Mar 01, 2007 at 04:16:13PM +0900, Fernando Luis Vázquez Cao wrote: With the advent of kdump, the assumption that the boot CPU when running an UP kernel is always the CPU with a hardware ID of 0 (usually referred to as BSP on some architectures) does not hold true anymore. The reason

Re: [Fastboot] [PATCH 1/1] - platform_kernel_launch_event is noop on generic kernel

2007-02-28 Thread Horms
from certain hardware errors. > > Signed-off-by: John Keller <[EMAIL PROTECTED]> I made a similar change when porting to xen, but I hadn't thought to see if mainline linux needs it to. Acked-by: Simon Horman <[EMAIL PROTECTED]> -- Horms H: http://www.vergenet.net/~horms/

Re: [Fastboot] [PATCH 1/1] - platform_kernel_launch_event is noop on generic kernel

2007-02-28 Thread Horms
errors. Signed-off-by: John Keller [EMAIL PROTECTED] I made a similar change when porting to xen, but I hadn't thought to see if mainline linux needs it to. Acked-by: Simon Horman [EMAIL PROTECTED] -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe

Re: [PATCH 2.6.19.2 1/1] kexec: update IO-APIC dest field to 8-bit for APIC

2007-02-13 Thread Horms
On Fri, Jan 19, 2007 at 12:12:28PM -0500, Benjamin Romer wrote: > On the Unisys ES7000/ONE system, we encountered a problem where performing > a kexec reboot or dump on any cell other than cell 0 causes the system > timer to stop working, resulting in a hang during timer calibration in the > new

Re: [PATCH 2.6.19.2 1/1] kexec: update IO-APIC dest field to 8-bit for APIC

2007-02-13 Thread Horms
On Fri, Jan 19, 2007 at 12:12:28PM -0500, Benjamin Romer wrote: On the Unisys ES7000/ONE system, we encountered a problem where performing a kexec reboot or dump on any cell other than cell 0 causes the system timer to stop working, resulting in a hang during timer calibration in the new

Re: [Fastboot] [PATCH] free initrds boot option

2007-02-08 Thread Horms
On Wed, Dec 13, 2006 at 10:35:08AM +0900, Horms wrote: > On Fri, Dec 08, 2006 at 10:32:15AM +1100, Michael Neuling wrote: > > > >Is there a kexec-tools patch too? How does second kernel know about > > > >the location of the first kernel's initrd to be reused? > >

Re: [Fastboot] [PATCH] free initrds boot option

2007-02-08 Thread Horms
On Wed, Dec 13, 2006 at 10:35:08AM +0900, Horms wrote: On Fri, Dec 08, 2006 at 10:32:15AM +1100, Michael Neuling wrote: Is there a kexec-tools patch too? How does second kernel know about the location of the first kernel's initrd to be reused? kexec-tools has to be modified

Re: [PATCH] [IA64] Include kexec.h in arch/ia64/kernel/process.c

2007-02-07 Thread Horms
more comfortable with the stub approach, I have no objections. -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at

Re: [PATCH 3/6] workqueue: make cancel_rearming_delayed_workqueue() work on idle dwork

2007-02-07 Thread Horms
n is to fix the ipvs side, is the fix just to remove the call to cancel_rearming_delayed_work() in ip_vs_control_cleanup() ? -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body

Re: [PATCH 3/6] workqueue: make cancel_rearming_delayed_workqueue() work on idle dwork

2007-02-07 Thread Horms
defense_work_handler() is still running/preempted. Unless I missed something, which side should be fixed? Assuming the decision is to fix the ipvs side, is the fix just to remove the call to cancel_rearming_delayed_work() in ip_vs_control_cleanup() ? -- Horms H: http://www.vergenet.net/~horms

Re: [PATCH] [IA64] Include kexec.h in arch/ia64/kernel/process.c

2007-02-07 Thread Horms
inside kexec.h for the #ifndef CONFIG_KEXEC case? Good catch :) I think that #define in the process.c vs an empty stub inside asm/kexec.h is really a style issue. I'm quite ok with things the way they are. But If you are more comfortable with the stub approach, I have no objections. -- Horms

Re: [Fastboot] [ PATCH ] fix to documentation for kexec

2007-02-06 Thread Horms
gt; +* Boot parameter "1" boots the dump-capture kernel into single-user mode > > + without networking. If you want networking, use "3". > > i'm not sure you want to totally remove those first two lines, they > appear to talk about getting to run level 1 *from a run

[PATCH] kexec: fix references to init in documentation for kexe

2007-02-06 Thread Horms
t into run level 1, so > that minimum scripts run in user space and probability of capturing the > dump increases. > > Fedora doc does say that appending "1" on command line will boot it > into runlevel 1. I hope same is true for other distributions too. > > Thanks &

[PATCH] [IA64] whitespace fixes for include/asm-ia64/sal.h

2007-02-06 Thread Horms
* Make use of spaces and tabs consistent * Make long line < 80col Signed-off-by: Simon Horman <[EMAIL PROTECTED]> Index: linux-2.6/include/asm-ia64/sal.h === --- linux-2.6.orig/include/asm-ia64/sal.h 2007-02-07

[PATCH] [IA64] Include kexec.h in arch/ia64/kernel/process.c

2007-02-06 Thread Horms
kexec.h is needed by arch/ia64/kernel/process.c so for the declaration of kexec_disable_iosapic() which is used in machine_shutdown(). Signed-off-by: Simon Horman <[EMAIL PROTECTED]> Index: linux-2.6/arch/ia64/kernel/process.c ===

[PATCH] kexec: fix references to init in documentation for kexe

2007-02-06 Thread Horms
that appending 1 on command line will boot it into runlevel 1. I hope same is true for other distributions too. Thanks Vivek This seems fine to me. Lets see if we can get it included. -- Simon Horman (Horms) [EMAIL PROTECTED] http://verge.net.au/~horms/ kexec: fix references to init

Re: [Fastboot] [ PATCH ] fix to documentation for kexec

2007-02-06 Thread Horms
that it is refering to a kernel command line parameter, not a shell command executed on a running system, so I think the patch is correct in that respect. -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line unsubscribe linux

[PATCH] [IA64] whitespace fixes for include/asm-ia64/sal.h

2007-02-06 Thread Horms
* Make use of spaces and tabs consistent * Make long line 80col Signed-off-by: Simon Horman [EMAIL PROTECTED] Index: linux-2.6/include/asm-ia64/sal.h === --- linux-2.6.orig/include/asm-ia64/sal.h 2007-02-07 11:53:12.0

[PATCH] [IA64] Include kexec.h in arch/ia64/kernel/process.c

2007-02-06 Thread Horms
kexec.h is needed by arch/ia64/kernel/process.c so for the declaration of kexec_disable_iosapic() which is used in machine_shutdown(). Signed-off-by: Simon Horman [EMAIL PROTECTED] Index: linux-2.6/arch/ia64/kernel/process.c === ---

Re: [Fastboot] [PATCH] kexec: Fix CONFIG_SMP=n compilation (ia64)

2007-02-02 Thread Horms
it may be better to fail miserably during the build than > fail silently in the case of CONFIG_SMP=y but CONFIG_HOTPLUG_CPU=n. There used to be alternate code for the CONFIG_SMP + !CONFIG_HOTPLUG_CPU, but this was removed because it was determined to be flakey and not maintainable (I can dig up t

Re: [Fastboot] [PATCH] kexec: Fix CONFIG_SMP=n compilation (ia64)

2007-02-02 Thread Horms
this is expressable in Kconfig somehow. -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please

Re: [Fastboot] [PATCH] kexec: Fix CONFIG_SMP=n compilation (ia64)

2007-02-01 Thread Horms
al doesn't return. > > > > So do I. The main problem with the compilation seems to be that > > ia64_jump_to_sal() only exists if CONFIG_HOTPLUG_CPU=y. > > (include/asm-ia64/sal.h, arch/ia64/kernel/head.S) > > > This may cause problem on SN platform. > I rememb

Re: [Fastboot] [PATCH] kexec: Fix CONFIG_SMP=n compilation (ia64)

2007-02-01 Thread Horms
rendez loop to do IRQ redirection. However this needs SGI people to confirm... Does this mean that CONFIG_HOTPLUG_CPU may be required for kdump on the SN platform? -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line

Re: [PATCH] Kdump documentation update for 2.6.20: ia64 portion

2007-01-12 Thread Horms
Hi, this patch fills in the portions for ia64 kexec. I'm actually not sure what options are required for the dump-capture kernel, but "init 1 irqpoll maxcpus=1" has been working fine for me. Or more to the point, I'm not sure if irqpoll is needed or not. This patch requires the documentation

Re: [Fastboot] [PATCH] Kdump documentation update for 2.6.20: ia64 portion

2007-01-12 Thread Horms
On Fri, Jan 12, 2007 at 11:46:39AM -0800, Jay Lan wrote: > Horms wrote: > > Hi, > > > > this patch fills in the portions for ia64 kexec. > > > > I'm actually not sure what options are required for the dump-capture > > kernel, but "init 1 irq

Re: [PATCH] Kdump documentation update for 2.6.20: ia64 portion

2007-01-12 Thread Horms
Hi, this patch fills in the portions for ia64 kexec. I'm actually not sure what options are required for the dump-capture kernel, but "init 1 irqpoll maxcpus=1" has been working fine for me. Or more to the point, I'm not sure if irqpoll is needed or not. This patch requires the documentation

Re: [PATCH] Kdump documentation update for 2.6.20: ia64 portion

2007-01-12 Thread Horms
Hi, this patch fills in the portions for ia64 kexec. I'm actually not sure what options are required for the dump-capture kernel, but init 1 irqpoll maxcpus=1 has been working fine for me. Or more to the point, I'm not sure if irqpoll is needed or not. This patch requires the documentation

Re: [PATCH] Kdump documentation update for 2.6.20: ia64 portion

2007-01-12 Thread Horms
Hi, this patch fills in the portions for ia64 kexec. I'm actually not sure what options are required for the dump-capture kernel, but init 1 irqpoll maxcpus=1 has been working fine for me. Or more to the point, I'm not sure if irqpoll is needed or not. This patch requires the documentation

Re: [Fastboot] [PATCH] Kdump documentation update for 2.6.20: ia64 portion

2007-01-12 Thread Horms
On Fri, Jan 12, 2007 at 11:46:39AM -0800, Jay Lan wrote: Horms wrote: Hi, this patch fills in the portions for ia64 kexec. I'm actually not sure what options are required for the dump-capture kernel, but init 1 irqpoll maxcpus=1 has been working fine for me. Or more to the point

[PATCH] Kdump documentation update for 2.6.20: ia64 portion

2007-01-11 Thread Horms
Hi, this patch fills in the portions for ia64 kexec. I'm actually not sure what options are required for the dump-capture kernel, but "init 1 irqpoll maxcpus=1" has been working fine for me. Or more to the point, I'm not sure if irqpoll is needed or not. This patch requires the documentation

[PATCH] Kdump documentation update for 2.6.20: kexec-tools update

2007-01-11 Thread Horms
12 14:37:18.0 +0900 +++ linux-2.6/Documentation/kdump/kdump.txt 2007-01-12 14:56:42.0 +0900 @@ -61,7 +61,12 @@ 2) Download the kexec-tools user-space package from the following URL: -http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing-20

Re: [PATCH] Kdump documentation update for 2.6.20

2007-01-11 Thread Horms
n as the root user. > > 2) Download the kexec-tools user-space package from the following URL: > > - http://www.xmission.com/~ebiederm/files/kexec/kexec-tools-1.101.tar.gz > +http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing-20061214.tar

Re: [PATCH] Kdump documentation update for 2.6.20

2007-01-11 Thread Horms
as the root user. 2) Download the kexec-tools user-space package from the following URL: - http://www.xmission.com/~ebiederm/files/kexec/kexec-tools-1.101.tar.gz +http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing-20061214.tar.gz -3) Unpack

[PATCH] Kdump documentation update for 2.6.20: ia64 portion

2007-01-11 Thread Horms
Hi, this patch fills in the portions for ia64 kexec. I'm actually not sure what options are required for the dump-capture kernel, but init 1 irqpoll maxcpus=1 has been working fine for me. Or more to the point, I'm not sure if irqpoll is needed or not. This patch requires the documentation

[PATCH] Kdump documentation update for 2.6.20: kexec-tools update

2007-01-11 Thread Horms
:37:18.0 +0900 +++ linux-2.6/Documentation/kdump/kdump.txt 2007-01-12 14:56:42.0 +0900 @@ -61,7 +61,12 @@ 2) Download the kexec-tools user-space package from the following URL: -http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing-20061214

Re: [PATCH] Kdump documentation update for 2.6.20

2007-01-09 Thread Horms
common interface, maybe we should support it by ignore this > arg like ppc does. That sounds reasonable to me. Vivek, what do you think? -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line "unsubscribe linux

Re: [PATCH] Kdump documentation update for 2.6.20

2007-01-09 Thread Horms
On Tue, Jan 09, 2007 at 08:17:08PM +0530, Vivek Goyal wrote: > On Tue, Jan 09, 2007 at 10:18:47AM +0900, Horms wrote: > > > Download and build the system and dump-capture kernels > > > -- > > > +There are two p

Re: [PATCH] Kdump documentation update for 2.6.20

2007-01-09 Thread Horms
On Tue, Jan 09, 2007 at 08:17:08PM +0530, Vivek Goyal wrote: On Tue, Jan 09, 2007 at 10:18:47AM +0900, Horms wrote: Download and build the system and dump-capture kernels -- +There are two possible methods of using Kdump. + + 1

Re: [PATCH] Kdump documentation update for 2.6.20

2007-01-09 Thread Horms
you think? -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ

Re: [PATCH] Kdump documentation update for 2.6.20

2007-01-08 Thread Horms
t; 1) Login as the root user. > > 2) Download the kexec-tools user-space package from the following URL: > > - http://www.xmission.com/~ebiederm/files/kexec/kexec-tools-1.101.tar.gz > +http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing-20061214.t

Re: [PATCH] Kdump documentation update for 2.6.20

2007-01-08 Thread Horms
/files/kexec/kexec-tools-1.101.tar.gz +http://www.kernel.org/pub/linux/kernel/people/horms/kexec-tools/kexec-tools-testing-20061214.tar.gz -3) Unpack the tarball with the tar command, as follows: - - tar xvpzf kexec-tools-1.101.tar.gz - -4) Download the latest consolidated Kdump patch from

Re: [patch] linux/preempt.h needs linux/thread_info.h

2006-12-27 Thread Horms
On Wed, Dec 27, 2006 at 08:27:02AM +, Al Viro wrote: > On Wed, Dec 27, 2006 at 05:17:02PM +0900, Horms wrote: > > It seems that linux/preempt.h needs to include linux/thread_info.h > > in order to access current_thread_info(), which is used in > > preempt_count(). >

[patch] linux/preempt.h needs linux/thread_info.h

2006-12-27 Thread Horms
It seems that linux/preempt.h needs to include linux/thread_info.h in order to access current_thread_info(), which is used in preempt_count(). I guess that all callers of preempt_count() must include both linux/thread_info.h and linux/preempt.h directly or indirectly, as this does not cause a

[patch] linux/preempt.h needs linux/thread_info.h

2006-12-27 Thread Horms
It seems that linux/preempt.h needs to include linux/thread_info.h in order to access current_thread_info(), which is used in preempt_count(). I guess that all callers of preempt_count() must include both linux/thread_info.h and linux/preempt.h directly or indirectly, as this does not cause a

Re: [patch] linux/preempt.h needs linux/thread_info.h

2006-12-27 Thread Horms
On Wed, Dec 27, 2006 at 08:27:02AM +, Al Viro wrote: On Wed, Dec 27, 2006 at 05:17:02PM +0900, Horms wrote: It seems that linux/preempt.h needs to include linux/thread_info.h in order to access current_thread_info(), which is used in preempt_count(). I guess that all callers

Re: [Fastboot] [PATCH] free initrds boot option

2006-12-12 Thread Horms
d then move it out to generic code later. That said, if you're feeling particularly entergetic, feel free to do the generic stuff now and just add null stubs for the other architectures (does that makes sense?). -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscr

Re: [Fastboot] [PATCH] free initrds boot option

2006-12-12 Thread Horms
null stubs for the other architectures (does that makes sense?). -- Horms H: http://www.vergenet.net/~horms/ W: http://www.valinux.co.jp/en/ - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http

Re: Problems Building Bluetooth with K6 and CONFIG_REGPARM

2005-09-08 Thread Horms
On Thu, Sep 08, 2005 at 12:49:17PM -0400, Brian Gerst wrote: > Horms wrote: > >Hi Andy, > > > >that does indeed seem to be a problem. I have narrowed it down to > >a combination of using K6 and CONFIG_REGPARM. Hunting around a bit > >I found this http://my.execp

Problems Building Bluetooth with K6 and CONFIG_REGPARM

2005-09-08 Thread Horms
atile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); \ } \ static inline void ins##bwl(int port, void *addr, unsigned long count) { \ __asm__ __volatile__("rep; ins" #bwl : "+D"(addr), "+c"(count) : "d&qu

Problems Building Bluetooth with K6 and CONFIG_REGPARM

2005-09-08 Thread Horms
) { \ __asm__ __volatile__(rep; ins #bwl : +D(addr), +c(count) : d(port)); \ } -- Horms On Sat, Sep 03, 2005 at 10:49:48AM -0700, [EMAIL PROTECTED] wrote: Package: linux-source-2.6.12 Version: 2.6.12-5 Severity: normal # make-kpkg --initrd --append-to-version=-ahrairah --revision=ahrairah.1

Re: Problems Building Bluetooth with K6 and CONFIG_REGPARM

2005-09-08 Thread Horms
On Thu, Sep 08, 2005 at 12:49:17PM -0400, Brian Gerst wrote: Horms wrote: Hi Andy, that does indeed seem to be a problem. I have narrowed it down to a combination of using K6 and CONFIG_REGPARM. Hunting around a bit I found this http://my.execpc.com/~geezer/osd/gotchas/, which suggests

Re: Bug#321442: kernel-source-2.6.8: fails to compile on powerpc (drivers/ide/ppc/pmac.c)

2005-09-07 Thread Horms
On Mon, Sep 05, 2005 at 02:42:43PM +0200, Bartlomiej Zolnierkiewicz wrote: > Should be fixed in 2.6.13. > > On 8/16/05, Kyle Moffett <[EMAIL PROTECTED]> wrote: > > On Aug 13, 2005, at 18:54:30, LT-P wrote: > > > Le lun 08 aoû 2005 17:57:04 CEST, Horms <[EMAIL PR

Re: Bug#321442: kernel-source-2.6.8: fails to compile on powerpc (drivers/ide/ppc/pmac.c)

2005-09-07 Thread Horms
On Mon, Sep 05, 2005 at 02:42:43PM +0200, Bartlomiej Zolnierkiewicz wrote: Should be fixed in 2.6.13. On 8/16/05, Kyle Moffett [EMAIL PROTECTED] wrote: On Aug 13, 2005, at 18:54:30, LT-P wrote: Le lun 08 aoû 2005 17:57:04 CEST, Horms [EMAIL PROTECTED] a écrit: Can you please enable

Re: kernel 2.4.27-10: isofs driver ignore some parameters with mount

2005-08-16 Thread Horms
over - its bogus but harmless. Signed-off-by: Horms <[EMAIL PROTECTED]> --- a/fs/isofs/inode.c 2005-08-03 14:46:33.0 +0900 +++ b/fs/isofs/inode.c 2005-08-16 17:23:04.0 +0900 @@ -340,13 +337,13 @@ else if (!strcmp(value,"acorn&q

[PATCH] Bogus code in parsing of iocharset in isofs

2005-08-16 Thread Horms
; } else #endif On inspection it turns out that because of use of strtok(), *value is already NULL terminated, and thus the code snippet above is largely bogus. The following patch should remove the bogus code without changing functionality. Signed-off-by: Horms <[EMAIL PROTECTED]&

Re: kernel 2.4.27-10: isofs driver ignore some parameters with mount

2005-08-16 Thread Horms
over - its bogus but harmless. Signed-off-by: Horms [EMAIL PROTECTED] --- a/fs/isofs/inode.c 2005-08-03 14:46:33.0 +0900 +++ b/fs/isofs/inode.c 2005-08-16 17:23:04.0 +0900 @@ -340,13 +337,13 @@ else if (!strcmp(value,acorn)) popt-map

[PATCH] Bogus code in parsing of iocharset in isofs

2005-08-16 Thread Horms
it turns out that because of use of strtok(), *value is already NULL terminated, and thus the code snippet above is largely bogus. The following patch should remove the bogus code without changing functionality. Signed-off-by: Horms [EMAIL PROTECTED] --- ../build-386/fs/isofs/inode.c 2005

Re: kernel 2.4.27-10: isofs driver ignore some parameters with mount

2005-08-15 Thread Horms
On Mon, Aug 15, 2005 at 10:11:21PM -0300, Marcelo Tosatti wrote: > > Hi folks, > > On Fri, Aug 12, 2005 at 05:29:36PM +0900, Horms wrote: > > On Fri, Aug 12, 2005 at 10:44:17AM +0300, Alexander Pytlev wrote: > > > Hello Debian, > > > > > > Kernel 2.4

Re: kernel 2.4.27-10: isofs driver ignore some parameters with mount

2005-08-15 Thread Horms
On Mon, Aug 15, 2005 at 10:11:21PM -0300, Marcelo Tosatti wrote: Hi folks, On Fri, Aug 12, 2005 at 05:29:36PM +0900, Horms wrote: On Fri, Aug 12, 2005 at 10:44:17AM +0300, Alexander Pytlev wrote: Hello Debian, Kernel 2.4.27-10 With mount isofs filesystem, any mount parameters

Re: kernel 2.4.27-10: isofs driver ignore some parameters with mount

2005-08-12 Thread Horms
On Fri, Aug 12, 2005 at 05:29:36PM +0900, Horms wrote: > On Fri, Aug 12, 2005 at 10:44:17AM +0300, Alexander Pytlev wrote: > > Hello Debian, > > > > Kernel 2.4.27-10 > > With mount isofs filesystem, any mount parameters after > > iocharset=,map=,sess

Re: kernel 2.4.27-10: isofs driver ignore some parameters with mount

2005-08-12 Thread Horms
te. I have also CCed Marcelo and the LKML for their consideration, as this problem still seems to be present in the lastest 2.4 tree. -- Horms simply patch: === --- kernel-source-2.4.27/fs/isofs/inode.c 2005-

Re: kernel 2.4.27-10: isofs driver ignore some parameters with mount

2005-08-12 Thread Horms
for their consideration, as this problem still seems to be present in the lastest 2.4 tree. -- Horms simply patch: === --- kernel-source-2.4.27/fs/isofs/inode.c 2005-05-19 13:29:39.0 +0300 +++ kernel-source/fs/isofs

Re: kernel 2.4.27-10: isofs driver ignore some parameters with mount

2005-08-12 Thread Horms
On Fri, Aug 12, 2005 at 05:29:36PM +0900, Horms wrote: On Fri, Aug 12, 2005 at 10:44:17AM +0300, Alexander Pytlev wrote: Hello Debian, Kernel 2.4.27-10 With mount isofs filesystem, any mount parameters after iocharset=,map=,session= are ignored. Sample: mount -t isofs -o uid

Re: Bug#321442: kernel-source-2.6.8: fails to compile on powerpc (drivers/ide/ppc/pmac.c)

2005-08-08 Thread Horms
at resolves your problem. If it does, then the following patch should fix Kconfig so that BLK_DEV_IDEDMA_PCI needs to be enabled for BLK_DEV_IDE_PMAC to be enabled. It should patch cleanly against Debian's 2.6.8 and Linus' current Git tree. -- Horms BLK_DEV_IDEDMA_PCI seems to be needed for BLK_DE

Re: Bug#321442: kernel-source-2.6.8: fails to compile on powerpc (drivers/ide/ppc/pmac.c)

2005-08-08 Thread Horms
to be enabled. It should patch cleanly against Debian's 2.6.8 and Linus' current Git tree. -- Horms BLK_DEV_IDEDMA_PCI seems to be needed for BLK_DEV_IDE_PMAC to compile Signed-off-by: Horms [EMAIL PROTECTED] --- a/drivers/ide/Kconfig.orig 2005-08-08 17:48:17.0 +0900 +++ b/drivers/ide

Re: Bug#320379: Errors during initrd loading when / is on LVM over RAID

2005-08-03 Thread Horms
h device (e.g., media were just removed) */ > if (!get_capacity(disk)) > --- fs/devfs/base.c.orig 2005-07-29 00:32:03.329992027 +0200 > +++ fs/devfs/base.c 2005-07-29 00:32:52.08934 +0200 > @@ -1644,7 +1644,7 @@ > va_start(args, fmt); > n = vsnpri

Re: [Patch] v4l cx88 hue offset fix

2005-08-03 Thread Horms
On Tue, Aug 02, 2005 at 08:41:27AM -0400, Michael Krufky wrote: > Horms wrote: > > >Hi Marcelo, > > > >Another fix from 2.6.12.3 that seems approprite for 2.4. > >Should apply cleanly to your tree. > > > > > Horms- > > Thank you for the

Re: [Patch] v4l cx88 hue offset fix

2005-08-03 Thread Horms
On Tue, Aug 02, 2005 at 08:41:27AM -0400, Michael Krufky wrote: Horms wrote: Hi Marcelo, Another fix from 2.6.12.3 that seems approprite for 2.4. Should apply cleanly to your tree. Horms- Thank you for the effort of trying to get this into 2.4, but I don't think there is any

Re: Bug#320379: Errors during initrd loading when / is on LVM over RAID

2005-08-03 Thread Horms
., __FUNCTION__); + printk(KERN_WARNING %s: invalid argument.\n, __FUNCTION__); return -EINVAL; } -- Horms - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http

Re: [Patch] v4l cx88 hue offset fix

2005-08-02 Thread Horms
On Tue, Aug 02, 2005 at 04:20:00PM +0900, Horms wrote: > Hi Marcelo, > > Another fix from 2.6.12.3 that seems approprite for 2.4. > Should apply cleanly to your tree. Please ignore this. I sent the wrong patch. I don't think thie cx88 driver is in 2.4 at all. > Signed-off-by

[Patch] ppc32: stop misusing ntps time_offset value

2005-08-02 Thread Horms
Hi Marcelo, is this appropriate for 2.4? It seems to apply cleanly to your current git tree. Signed-off-by: Horms <[EMAIL PROTECTED]> From: john stultz <[EMAIL PROTECTED]> Date: Fri, 1 Jul 2005 05:08:54 + (+1000) Subject: [PATCH] ppc32: stop misusing ntps time_offset val

[Patch] v4l cx88 hue offset fix

2005-08-02 Thread Horms
Hi Marcelo, Another fix from 2.6.12.3 that seems approprite for 2.4. Should apply cleanly to your tree. Signed-off-by: Horms <[EMAIL PROTECTED]> From: Michael Krufky <[EMAIL PROTECTED]> Date: Thu, 30 Jun 2005 20:06:41 + (-0400) Subject: [PATCH] v4l cx88 hue offset fix X-Git-Ta

[Patch] v4l cx88 hue offset fix

2005-08-02 Thread Horms
Hi Marcelo, Another fix from 2.6.12.3 that seems approprite for 2.4. Should apply cleanly to your tree. Signed-off-by: Horms [EMAIL PROTECTED] From: Michael Krufky [EMAIL PROTECTED] Date: Thu, 30 Jun 2005 20:06:41 + (-0400) Subject: [PATCH] v4l cx88 hue offset fix X-Git-Tag: v2.6.12.3 X

[Patch] ppc32: stop misusing ntps time_offset value

2005-08-02 Thread Horms
Hi Marcelo, is this appropriate for 2.4? It seems to apply cleanly to your current git tree. Signed-off-by: Horms [EMAIL PROTECTED] From: john stultz [EMAIL PROTECTED] Date: Fri, 1 Jul 2005 05:08:54 + (+1000) Subject: [PATCH] ppc32: stop misusing ntps time_offset value X-Git-Tag: v2.6.12.3

Re: [Patch] v4l cx88 hue offset fix

2005-08-02 Thread Horms
On Tue, Aug 02, 2005 at 04:20:00PM +0900, Horms wrote: Hi Marcelo, Another fix from 2.6.12.3 that seems approprite for 2.4. Should apply cleanly to your tree. Please ignore this. I sent the wrong patch. I don't think thie cx88 driver is in 2.4 at all. Signed-off-by: Horms [EMAIL PROTECTED

Re: [PATCH] Maintainers list update: linux-net -> netdev

2005-04-12 Thread Horms
On Tue, Apr 12, 2005 at 12:14:56PM -0700, George Anzinger wrote: > Horms wrote: > > > >Use netdev as the mailing list contact instead of the mostly dead > >linux-net list. > > > ~ > > PHRAM MTD DRIVER > >@@ -1795,7 +1795,7 @@ > > POSIX CLOCKS a

[PATCH] Maintainers list update: linux-net -> netdev

2005-04-12 Thread Horms
: Andrew Morton > > M: [EMAIL PROTECTED] > > P: Jeff Garzik > > M: [EMAIL PROTECTED] > > L: linux-net@vger.kernel.org > > S: Maintained > > Maybe one of the two maintainers might want to change that? ;) Use netdev as the mailing

  1   2   >