Re: [PATCH] [Coding Style]: fs/ext{3,4}/ext{3,4}_jbd{,2}.c

2008-01-10 Thread Paul Mundt
On Fri, Jan 11, 2008 at 04:09:45AM +0100, Peter Stuge wrote: > On Thu, Jan 10, 2008 at 10:03:58PM +0100, Roel Kluin wrote: > > -#define DEBUG(x,args...) printk(__FUNCTION__ ": " x,##args) > > +#define DEBUG(x, args...) printk("%s: ", __func__, x, ##args) > > Can this really be expected to work

Re: [PATCH 2/3] Rework arch specific Makefiles to use mkubootimg

2008-01-04 Thread Paul Mundt
On Fri, Jan 04, 2008 at 09:19:28AM +, Russell King wrote: > On Fri, Jan 04, 2008 at 01:01:19PM +0900, Paul Mundt wrote: > > On Thu, Jan 03, 2008 at 04:58:54PM -0600, Josh Boyer wrote: > > > On Thu, 3 Jan 2008 22:41:40 + > > > Ben Dooks <[EMAIL PROTECTED]>

Re: [PATCH 2/3] Rework arch specific Makefiles to use mkubootimg

2008-01-03 Thread Paul Mundt
in-kernel version of > > > the mkubootimg tool. > > > > > > Signed-off-by: Josh Boyer <[EMAIL PROTECTED]> > > > > A CC: to RMK and any other arch maintainers being touched by this > > would have useful too. > > D'oh. I thought I had fix

Re: [PATCH] sh: sh7712 clock support

2007-12-31 Thread Paul Mundt
On Mon, Dec 31, 2007 at 04:32:25PM -, Andrew Murray wrote: > +static void bus_clk_init(struct clk *clk) > +{ > + clk->rate = CONFIG_SH_PCLK_FREQ; > +} > + > +static struct clk_ops sh7712_bus_clk_ops = { > + .init = bus_clk_init, > +}; > + This shouldn't be necessary, the bus c

Re: [PATCH] SH/Dreamcast - add support for GD-Rom device

2007-12-30 Thread Paul Mundt
On Sun, Dec 30, 2007 at 01:38:24PM +, Adrian McMenamin wrote: > On Thu, 2007-12-27 at 14:58 -0800, Joe Perches wrote: > > On Thu, 2007-12-27 at 16:52 +, Adrian McMenamin wrote: > > > This patch adds support for the CD-Rom drive on the SEGA Dreamcast. > > > > Because it was already so close

Re: [PATCH] SH/Dreamcast - add support for GD-Rom device

2007-12-27 Thread Paul Mundt
On Thu, Dec 27, 2007 at 07:49:01PM -0500, Mike Frysinger wrote: > On Thursday 27 December 2007, Joe Perches wrote: > > I also added a function gdrom_is_busy() to make a couple of tests > > fit on a single line and perhaps easier to read. > > i'd tend to agree it does make it easier to read, howeve

Re: [PATCH] SH/Dreamcast - add support for GD-Rom device

2007-12-27 Thread Paul Mundt
On Thu, Dec 27, 2007 at 04:52:19PM +, Adrian McMenamin wrote: > This patch adds support for the CD-Rom drive on the SEGA Dreamcast. > > The SEGA Dreamcast has a built in CD-Rom drive, electrically similar > to an ATA-3 drive, but implementing a proprietary packet interface - > the so-called Se

Re: [PATCH] SH/Dreamcast - add support for GD-Rom device

2007-12-27 Thread Paul Mundt
On Thu, Dec 27, 2007 at 01:26:47AM +, Adrian McMenamin wrote: > This patch adds support for the CD-Rom drive on the SEGA Dreamcast. > Please fix your mailer to inline the patch, preferably without word wrapping. This is not a difficult thing, send yourself some test mails until you get it sort

Re: [PATCH - SH/Dreamcast] CD-Rom (GD-Rom) support for the SEGA Dreamcast

2007-12-25 Thread Paul Mundt
On Sun, Dec 23, 2007 at 07:43:24PM +, Adrian McMenamin wrote: > This patch adds support for the CD-Rom (the so-called "GD-Rom") on the > SEGA Dreamcast. > Looks quite a bit better. Just a few minor things. > +static void gdrom_spicommand(void *spi_string, int buflen) > +{ > + short *cmd =

Re: [PATCH 2/3] Add GD-Rom support to the SEGA Dreamcast

2007-12-20 Thread Paul Mundt
On Thu, Dec 20, 2007 at 09:53:54PM +, Adrian McMenamin wrote: > On 16/12/2007, Paul Mundt <[EMAIL PROTECTED]> wrote: > > Also, __devinit/__devexit annotations? > > > > Is there any difference between __init and __devint? Yes. -- To unsubscribe from this list: send

Re: [PATCH] arch/sh/: Spelling fixes

2007-12-17 Thread Paul Mundt
On Mon, Dec 17, 2007 at 11:30:18AM -0800, Joe Perches wrote: > arch/sh/boards/dreamcast/irq.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) On Mon, Dec 17, 2007 at 11:30:19AM -0800, Joe Perches wrote: > include/asm-sh/hd64461.h | 28 ++-- > include/asm

kconfig: Obey KCONFIG_ALLCONFIG choices with randconfig.

2007-12-16 Thread Paul Mundt
. Original thread is at http://lkml.org/lkml/2007/11/28/94 It would be nice to have this for 2.6.24. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- scripts/kconfig/conf.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c

Re: div64: Rework 64-bit type safety checks in do_div().

2007-12-16 Thread Paul Mundt
(Adding Ingo to CC regarding kernel/lockdep_proc.c..) On Sun, Dec 16, 2007 at 07:04:18PM -0800, Andrew Morton wrote: > On Mon, 17 Dec 2007 10:48:05 +0900 Paul Mundt <[EMAIL PROTECTED]> wrote: > > The options are to either 'fix' all callers of do_div() to make sure >

div64: Rework 64-bit type safety checks in do_div().

2007-12-16 Thread Paul Mundt
grep u64 | wc -l 13942 In short, screw uint64_t and its fan club. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- include/asm-generic/div64.h |7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/asm-generic/div64.h b/include/asm-generic/div64.h index a4a4

Re: [PATCH 2/3] Add GD-Rom support to the SEGA Dreamcast

2007-12-16 Thread Paul Mundt
On Sun, Dec 16, 2007 at 05:32:51PM +, Adrian McMenamin wrote: > On Sun, 2007-12-16 at 18:50 +0900, Paul Mundt wrote: > > > + for (count = 0xa000; count < 0xa020; count += 4) > > > + ctrl_inl(count); > > > > Er? This ranged dummy reading of

Re: [HP6XX/FIX/PATCH] - Fix bad default keymap in HP Jornada 6xx keyboard driver

2007-12-16 Thread Paul Mundt
On Wed, Dec 12, 2007 at 07:54:52PM +0100, Kristoffer Ericson wrote: > On Thu, 13 Dec 2007 03:45:58 +0900 > Paul Mundt <[EMAIL PROTECTED]> wrote: > > On Wed, Dec 12, 2007 at 07:22:07PM +0100, Kristoffer Ericson wrote: > > > * This patch fixes the HP Jornada 6xx ke

Re: [PATCH 2/3] Add GD-Rom support to the SEGA Dreamcast

2007-12-16 Thread Paul Mundt
Ok, I don't know anything about the CD-ROM layer, so I've just commented on the general and SH-specific stuff. Hopefully someone with a clue in this area (ie, not me) can offer input on the rest of the bits. On Sun, Dec 16, 2007 at 12:21:21AM +, Adrian McMenamin wrote: > +/* GD Rom registers *

Re: [PATCH 0/3] Add GD-Rom support to the SEGA Dreamcast

2007-12-15 Thread Paul Mundt
On Sun, Dec 16, 2007 at 12:20:54AM +, Adrian McMenamin wrote: > This device is electrically compatible with ATA-3 IDE CD drives but > implements a proprietary packet interface. There have been previous > Dreamcast CD drivers around but this is new code and uses DMA as > opposed to PIO for reads

Re: [HP6XX/FIX/PATCH] - Fix bad default keymap in HP Jornada 6xx keyboard driver

2007-12-12 Thread Paul Mundt
On Wed, Dec 12, 2007 at 07:22:07PM +0100, Kristoffer Ericson wrote: > shortlog: > * This patch fixes the HP Jornada 6xx keyboard default keymap which had some > bad keymap values. This resulted in wrong > key being returned when pressed (example : key y returned 'r'). > * Also, while we are at it

[GIT PULL] sh updates for 2.6.24-rc4, part 2.

2007-12-03 Thread Paul Mundt
Please pull from: master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6.24.git Which contains: Nobuhiro Iwamatsu (2): sh: Fix PCI IO space base address of SH7780. sh: Support PCI IO access of SH7780 base boards. arch/sh/drivers/pci/ops-r7780rp.c |4 ++-- arch/sh/dri

Re: use of fixmap on non-x86/sh?

2007-11-30 Thread Paul Mundt
On Fri, Nov 30, 2007 at 04:14:55PM -0600, Kumar Gala wrote: > Ben and I are talking about using fixmap on ppc for similar > applications to it use on x86. However in poking around other arch's > (sparc, mips) they appear to have some support but not as complete as > x86. > > For example bot

Re: [PATCH] kconfig: Make KCONFIG_ALLCONFIG work with randconfig.

2007-11-28 Thread Paul Mundt
On Wed, Nov 28, 2007 at 06:08:16PM +0100, Roman Zippel wrote: > On Wed, 28 Nov 2007, Paul Mundt wrote: > > While allyes/mod/noconfigs do seem to work fine with KCONFIG_ALLCONFIG > > provisions, randconfig tramples all over the provided values at perhaps > > not surprisingly, r

[PATCH] kconfig: Make KCONFIG_ALLCONFIG work with randconfig.

2007-11-28 Thread Paul Mundt
om SYMBOL_DEF) in addition to checking the def_sym flag before randomly assigning a new value ended up fixing things up. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- scripts/kconfig/conf.c |9 - scripts/kconfig/expr.h |3 +-- 2 files changed, 9 insertions(+), 3 deletio

nommu: Add new vmalloc_user() and remap_vmalloc_range() interfaces.

2007-11-28 Thread Paul Mundt
at we also have to rework the vmalloc_user() code to grovel for the VMA and set the flag. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- mm/nommu.c | 45 - 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/mm/nommu.c b/mm/nommu.c in

Re: Question regarding naming scheme (HP Jornada 6XX/7XX)

2007-11-25 Thread Paul Mundt
On Mon, Nov 26, 2007 at 12:03:29AM +0100, Kristoffer Ericson wrote: > For instance an hp 620 user thought that their system was unsupported > because everything was for '680'. Or the other way round 728 users > didn't want to use 720 since they thought they would loose their extra > ram (only diffe

[GIT PULL] sh updates for 2.6.24-rc4

2007-11-22 Thread Paul Mundt
sh: include ax88796 in the defconfig for r7785rp Paul Mundt (4): sh: Kill off UTLB flush in fast-path. sh: lockless UTLB miss fast-path. sh: Update mailing list info. fb: Orphan imsttfb. MAINTAINERS | 16 +-- arch/sh/boards/renesas

Re: even *more* unused CONFIG variables at no extra charge

2007-11-19 Thread Paul Mundt
On Fri, Nov 16, 2007 at 06:15:48AM -0500, Robert P. J. Day wrote: > sh64 > > DEVICE_MEMORY_START > > FLASH_MEMORY_START > > HDSP253_LED > > PCI_BLOCK_START > > PCIDEVICE_MEMORY_START Yeah, these are mostly bogus and just never got removed. I'll poke through it and kil

Re: drivers/net/ax88796.c compile error on sh64

2007-11-11 Thread Paul Mundt
On Sun, Nov 11, 2007 at 10:06:21AM +0100, Adrian Bunk wrote: > Commit 8687991a734a67f1638782c968f46fff0f94bb1f causes the following > compile error on sh64: > > <-- snip --> > > ... > CC [M] drivers/net/ax88796.o > /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/net/ax88796.c: In function

Re: [RFC: 2.6 patch] add -fno-tree-scev-cprop to KBUILD_CFLAGS

2007-11-10 Thread Paul Mundt
On Sun, Nov 11, 2007 at 07:48:29AM +0100, Adrian Bunk wrote: > But the kernel does (at least on some architectures) not link with > libgcc or ship other code providing the required libgcc functions. > > Richard Guenther suggested in gcc bug #32044 to use -fno-tree-scev-cprop > (new option in gcc

Re: [PATCH 0/11 v3] enable "make ARCH=x86"

2007-11-10 Thread Paul Mundt
On Sat, Nov 10, 2007 at 10:21:41AM +0100, Adrian Bunk wrote: > On Sat, Nov 10, 2007 at 05:21:52PM +0900, Paul Mundt wrote: > > If you do that, then things like randconfigs will randomly break if you > > happen to use a toolchain targetted specifically at i386 or so. > >... >

Re: [PATCH 0/11 v3] enable "make ARCH=x86"

2007-11-10 Thread Paul Mundt
On Sat, Nov 10, 2007 at 03:24:53AM -0500, Jeff Garzik wrote: > Paul Mundt wrote: > >This is one of the things I've been wondering about with an sh/sh64 > >unification, as we have no option but having completely different > >toolchains, and CONFIG_64BIT=y won'

Re: [PATCH 0/11 v3] enable "make ARCH=x86"

2007-11-10 Thread Paul Mundt
On Sat, Nov 10, 2007 at 08:54:44AM +0100, Sam Ravnborg wrote: > On Fri, Nov 09, 2007 at 10:23:23PM -0500, Jeff Garzik wrote: > > Sam Ravnborg wrote: > > >This is the patch that get rid of ARCH=i386 and ARCH=x86_64 > > >and introduce ARCH=x86. > > >It touches several files but the changes are all on

ARM defconfig bogosity in current git

2007-11-10 Thread Paul Mundt
The last ARM merge contained this gem: commit f33bac8dd4573428b94c67149c5607be489092d1 Author: Robert Schwebel <[EMAIL PROTECTED]> Date: Mon Nov 5 17:59:25 2007 +0100 [ARM] 4642/2: netX: default config for netx based boards This patch updates the default config file for netx based

[GIT PULL] sh updates for 2.6.24-rc3

2007-11-09 Thread Paul Mundt
Paul Mundt (22): sh64: Kill off duplicate includes. sh: Kill off duplicate includes. sh: ubc wakeup for SH-4 only. sh: Fix up kgdb-on-NMI branch target. sh: Export __{s,u}divsi3_i4i on all CPUs. sh: Fix up kgdb build with modular sh-sci. sh: Add -Werror for

[PATCH 2/2 take #2] libata: pata_platform: Support polling-mode configuration.

2007-11-07 Thread Paul Mundt
. This conditionalizes the IRQ resource for pata_platform and lets platforms that want to use polling mode simply omit the resource entirely. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- drivers/ata/pata_platform.c | 35 --- 1 file changed, 28 inse

[PATCH 1/2 take #2] libata: Support PIO polling-only hosts.

2007-11-07 Thread Paul Mundt
Hosts that want to use polling mode can simply set ATA_FLAG_PIO_POLLING and pass in an invalid IRQ. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- drivers/ata/libata-core.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-c

Re: [PATCH 1/2] libata: Support PIO polling-only hosts.

2007-11-07 Thread Paul Mundt
On Wed, Nov 07, 2007 at 09:09:30AM -0500, Mark Lord wrote: > Paul Mundt wrote: > >On Wed, Nov 07, 2007 at 01:09:40PM +, Alan Cox wrote: > >>On Wed, 7 Nov 2007 17:10:52 +0900 > >>Paul Mundt <[EMAIL PROTECTED]> wrote: > >>>By default ata_ho

Re: [patch] audit support for SH

2007-11-07 Thread Paul Mundt
On Wed, Nov 07, 2007 at 10:15:33AM -0500, Steve Grubb wrote: > On Wednesday 07 November 2007 12:04:46 am Yuichi Nakamura wrote: > > I found syscall audit does not work on SH(SuperH). > > I made patch to support syscall audit for SH. > > I think this is close, but it looks like you missed the sysca

Re: [PATCH 1/2] libata: Support PIO polling-only hosts.

2007-11-07 Thread Paul Mundt
On Wed, Nov 07, 2007 at 01:09:40PM +, Alan Cox wrote: > On Wed, 7 Nov 2007 17:10:52 +0900 > Paul Mundt <[EMAIL PROTECTED]> wrote: > > By default ata_host_activate() expects a valid IRQ in order to > > successfully register the host. This patch enables a special case >

[PATCH 2/2] libata: pata_platform: Support polling-mode configuration.

2007-11-07 Thread Paul Mundt
. This conditionalizes the IRQ resource for pata_platform and lets platforms that want to use polling mode simply omit the resource entirely. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- drivers/ata/pata_platform.c | 33 ++--- 1 file changed, 26 insertions

[PATCH 1/2] libata: Support PIO polling-only hosts.

2007-11-07 Thread Paul Mundt
Hosts that want to use polling mode can simply set ATA_FLAG_PIO_POLLING and pass in a NULL IRQ handler or invalid (< 0) IRQ. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- drivers/ata/libata-core.c |7 +++ 1 file changed, 7 insertions(+) diff --git a/drivers/ata/libata-core.c

Re: [patch] audit support for SH

2007-11-06 Thread Paul Mundt
On Wed, Nov 07, 2007 at 02:04:46PM +0900, Yuichi Nakamura wrote: > I found syscall audit does not work on SH(SuperH). > I made patch to support syscall audit for SH. > > Signed-off-by: Yuichi Nakamura<[EMAIL PROTECTED]> Looks fine, but it's too late for 2.6.24. So this will go in to the 2.6.25 qu

lib: Move bitmap.o from lib-y to obj-y.

2007-11-06 Thread Paul Mundt
o to obj-y fixes this up. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- lib/Makefile |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 3a0983b..b6793ed 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -4,7 +4,7 @@ lib-y :=

[PATCH] md: dm-mpath-hp-sw depends on scsi

2007-11-05 Thread Paul Mundt
With CONFIG_SCSI=n __scsi_print_sense() is never linked in. drivers/built-in.o: In function `hp_sw_end_io': dm-mpath-hp-sw.c:(.text+0x914f8): undefined reference to `__scsi_print_sense' Caught with a randconfig on current git. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>

Re: duplicated include files

2007-11-04 Thread Paul Mundt
lly useful, I wonder what else is lurking in the depths of undocumented Makefile target land ;-) docs: Add includecheck/versioncheck to 'make help' Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --- diff --git a/Makefile b/Makefile index 188c3b6..1ab40ac 100644 --- a/Makefile

[GIT PULL] sh64 updates for 2.6.24-rc2

2007-11-01 Thread Paul Mundt
Please pull from: master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh64-2.6.git Which contains: Adrian Bunk (1): sh64: fix dma_cache_sync() compilation Paul Mundt (1): sh64: Update defconfigs. Robert P. J. Day (1): sh64: Move DMA macros from pci.h to scatterlist.h

[GIT PULL] sh updates for 2.6.24-rc2

2007-11-01 Thread Paul Mundt
): sh: Terminate .eh_frame in VDSO with a 4-byte 0. Magnus Damm (1): sh: add support for ax88796 and 93cx6 to highlander boards Manuel Lauss (1): sh: fix zImage build with >=binutils-2.18 Paul Mundt (15): sh: Correct pte_page() breakage. sh: Fix up early mem cmdl

Re: [PATCH] Fix maple bus compiler warning

2007-10-29 Thread Paul Mundt
On Sun, Oct 28, 2007 at 02:24:10PM +, Adrian McMenamin wrote: > The API for uevent has changed for 2.6.24 and this patch makes a > consequential clean up. > > (Apols to linux-sh list users seeing this for the second time, I > should have included lkml first time round for completeness) > > Si

Re: [SUPERH / PATA / SCSI] Unable to do start userland after kernel boot

2007-10-25 Thread Paul Mundt
On Thu, Oct 25, 2007 at 09:22:40PM -0700, Kristoffer Ericson wrote: > The bottom line seems to be that it fails to attach scsi sg0. It > explains why it doesn't work, but not why it stopped working. And this > has nothing to do with the current kernel config, I've been over that > the last 4 days.

Re: [patch 2/2] Use BOOTMEM_EXCLUSIVE for kdump

2007-10-24 Thread Paul Mundt
8 ++-- > > arch/x86/kernel/setup_64.c | 35 +-- > > ia64 and powerpc support crash dump too? > Not via a reserved bootmem area at least, which is what these patches touch. Acked-by: Paul Mundt <[EMAIL PROTECTED]> - To unsubscribe from this list: s

Re: [2.6 patch] sh64: fix dma_cache_sync() compilation

2007-10-24 Thread Paul Mundt
On Mon, Oct 22, 2007 at 04:47:30AM +0200, Adrian Bunk wrote: > This patch fixes the following compile error caused by > commit 622a9edd919de98ef59571ae6c40c7458244e3f2: > Applied, thanks Adrian. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [

Re: [PATCH / HP6XX] : Add Timer values into HD64461.h

2007-10-18 Thread Paul Mundt
On Thu, Oct 18, 2007 at 09:39:04PM -0700, Kristoffer Ericson wrote: > This patch adds HD64461 Timer adresses & registers to the HD64461 > header file (/include/asm-sh/hd64461.h). The timers (TMU0 & TMU1) can > hold 16bit values and auto loads the counter constant when it reaches > zero. Upon reach

Re: [PATCH 0/21] KGDB: Request to merge KGDB

2007-10-18 Thread Paul Mundt
On Wed, Oct 17, 2007 at 09:20:25PM -0700, Andrew Morton wrote: > On Mon, 15 Oct 2007 13:32:24 -0500 Jason Wessel <[EMAIL PROTECTED]> wrote: > > This is a request to merge KGDB into the mainline kernel. > > This won't work very well. There's a lot of review work to be done here, > and a lot of i

[GIT PULL] [RESEND] sh updates for 2.6.24-rc1

2007-10-12 Thread Paul Mundt
: Add gpio.h stubs for PFC definitions. sh: Add SH7720 CPU support. sh: Magic Panel R2 board support. sh: Magic Panel MTD mapping update. Paul Mundt (66): sh: Support explicit L1 cache disabling. sh: Fix cache disabling build failures on nommu. sh: Initial multiple

[GIT PULL] [RESEND] sh64 updates for 2.6.24-rc1

2007-10-12 Thread Paul Mundt
Please pull from: master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh64-2.6.git Which contains: Paul Mundt (18): sh64: Move *_p() I/O routine variants to io.h. sh64: Tidy up includes for Cayman board. sh64: Kill off dead ROM-RAM and generic boards. sh64: Kill

Re: [PATCH 1/2] bug.h: Introduce HAVE_ARCH_WARN

2007-10-11 Thread Paul Mundt
ow-up patch for powerpc). > > Signed-off-by: Olof Johansson <[EMAIL PROTECTED]> > sh bits are fine. Acked-by: Paul Mundt <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED]

Re: [PATCH] Make m68k cross compile like every other architecture.

2007-10-11 Thread Paul Mundt
On Thu, Oct 11, 2007 at 08:27:12AM -0500, Rob Landley wrote: > On Thursday 11 October 2007 7:46:47 am Geert Uytterhoeven wrote: > > On Thu, 11 Oct 2007, Sam Ravnborg wrote: > > > On Thu, Oct 11, 2007 at 09:25:19AM +0200, Geert Uytterhoeven wrote: > > > > BTW, m68k-linux-gnu- is the default name for

[GIT PULL] sh64 updates for 2.6.24-rc1

2007-10-10 Thread Paul Mundt
Please pull from: master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh64-2.6.git Which contains: Paul Mundt (18): sh64: Move *_p() I/O routine variants to io.h. sh64: Tidy up includes for Cayman board. sh64: Kill off dead ROM-RAM and generic boards. sh64: Kill

[GIT PULL] sh updates for 2.6.24-rc1

2007-10-10 Thread Paul Mundt
: Add gpio.h stubs for PFC definitions. sh: Add SH7720 CPU support. sh: Magic Panel R2 board support. sh: Magic Panel MTD mapping update. Paul Mundt (66): sh: Support explicit L1 cache disabling. sh: Fix cache disabling build failures on nommu. sh: Initial multiple

Re: [PATCH] Fix SH4 DMAC API

2007-10-07 Thread Paul Mundt
On Sat, Oct 06, 2007 at 02:52:43PM +0100, Adrian McMenamin wrote: > This patch fixes the DMA cascade by masking the correct bits. > > Tested and working with Dreamcast PVR2 DMA. With this patch applied > the existing mainline code in arch/sh/drivers/dma/dma-sh.c works, > whereas before I was patch

Re: [PATCH] Fix SH DMAC code to handle PVR2 cascade

2007-10-04 Thread Paul Mundt
On Wed, Oct 03, 2007 at 04:41:37PM +0100, Adrian McMenamin wrote: > On Wed, October 3, 2007 7:18 am, Paul Mundt wrote: > > On Tue, Oct 02, 2007 at 10:09:27PM +0100, Adrian McMenamin wrote: > >> Fix SH DMAC code to correctly handle PVR2 cascade DMA. > >> > >> Th

Re: [PATCH] Fix SH DMAC code to handle PVR2 cascade

2007-10-02 Thread Paul Mundt
On Tue, Oct 02, 2007 at 10:09:27PM +0100, Adrian McMenamin wrote: > Fix SH DMAC code to correctly handle PVR2 cascade DMA. > > This updates http://lkml.org/lkml/2007/10/2/276 > > (I decided it was better to have the true size of the transfer put in > via the API and refactor this here. And calc_x

Re: [TOMOYO 04/15](repost) Utility functions and securityfs interface for policy manipulation.

2007-10-02 Thread Paul Mundt
On Tue, Oct 02, 2007 at 04:31:48PM +0900, Kentaro Takeda wrote: > Common functions for TOMOYO Linux. > > TOMOYO Linux uses /sys/kernel/security/tomoyo interface for configuration. > This seems like a bit of an abuse of sysfs. Isn't this precisely what configfs is for? - To unsubscribe from this l

Re: [PATCH] Add TV (RGB) support to Dreamcast PVR driver

2007-09-29 Thread Paul Mundt
On Fri, Sep 28, 2007 at 12:22:04PM +0100, Adrian McMenamin wrote: > Add support for RGB output to the Dreamcast PVR2 frame buffer driver. > > Signed-off by Adrian McMenamin <[EMAIL PROTECTED]> > Looks fine, I'll add it to my 2.6.24 queue, thanks. - To unsubscribe from this list: send the line "un

Re: [COMPAT] Add compat_merge64 helper

2007-09-29 Thread Paul Mundt
On Fri, Sep 28, 2007 at 08:02:47PM -0400, Kyle McMartin wrote: > On Fri, Sep 28, 2007 at 08:01:31PM -0400, Kyle McMartin wrote: > > I checked powerpc, sparc, and mips, which are (besides parisc) the only > > 64-bit with 32-bit userspace big endian architectures that I could think > > of offhand. A

Re: [RFC] QoS params patch

2007-09-27 Thread Paul Mundt
On Thu, Sep 27, 2007 at 11:25:01PM -0700, Andrew Morton wrote: > On Wed, 26 Sep 2007 15:40:26 -0700 Mark Gross <[EMAIL PROTECTED]> wrote: > > +int qos_add_requirement(int qos, char *name, s32 value); > > +int qos_update_requirement(int qos, char *name, s32 new_value); > > +void qos_remove_requireme

Re: [RFC] QoS params patch update.

2007-09-27 Thread Paul Mundt
On Thu, Sep 27, 2007 at 01:17:39PM -0700, Mark Gross wrote: > Updated qos PM parameter patch: > Note: the replacing of latency.c with this is a separate patch. > > this patch attempts to address the issues raised so far. > [snip] > +static int register_new_qos_misc(struct qos_object *qos) > +{ >

Re: [RFC] QoS params patch

2007-09-26 Thread Paul Mundt
On Wed, Sep 26, 2007 at 10:53:03PM -0400, [EMAIL PROTECTED] wrote: > On Wed, 26 Sep 2007 17:40:20 PDT, Mark Gross said: > > --- linux-2.6.23-rc8/kernel/Makefile2007-09-26 13:54:54.0 > > -0700 > > +++ linux-2.6.23-rc8-qos/kernel/Makefile2007-09-26 14:06:38.0 - > 0700 > >

Re: [RFC] QoS params patch

2007-09-26 Thread Paul Mundt
On Wed, Sep 26, 2007 at 03:40:26PM -0700, Mark Gross wrote: > + struct list_head list; > + union { > + s32 value; > + s32 usec; > + s32 kbps; > + }; > + char *name; Your } is in a strange place. It looks like it wants to join its friends

Re: Fwd: [PATCH 0/3] Add Maple bus support for the SEGA Dreamcast - repost

2007-09-21 Thread Paul Mundt
On Thu, Sep 20, 2007 at 12:29:40PM +0100, Adrian McMenamin wrote: > The Maple bus is SEGA's proprietary serial bus for peripherals > (keyboard, mouse, controller etc). The bus is capable of some > (limited) hotplugging and operates at up to 2 M/bits. > I've applied this and the header changes with

Re: [PATCH] binfmt_flat: minimum support for theBlackfin relocations

2007-09-20 Thread Paul Mundt
On Thu, Sep 20, 2007 at 02:04:26PM +0200, Bernd Schmidt wrote: > Paul Mundt wrote: > >I find it a bit disconcerting that blackfin already depends on this > >in-tree without there being any earlier discussion on making these > >changes. > > Parts of the initial sub

Re: [PATCH] binfmt_flat: minimum support for theBlackfin relocations

2007-09-19 Thread Paul Mundt
On Wed, Sep 19, 2007 at 11:42:53PM -0400, Mike Frysinger wrote: > On 9/19/07, Paul Mundt <[EMAIL PROTECTED]> wrote: > > On Thu, Sep 20, 2007 at 11:55:25AM +1000, David McCullough wrote: > > > Jivin Robin Getz lays it down ... > > > > On Tue 18 Sep 2007 04:09, Br

Re: [PATCH] binfmt_flat: minimum support for theBlackfin relocations

2007-09-19 Thread Paul Mundt
On Thu, Sep 20, 2007 at 11:55:25AM +1000, David McCullough wrote: > Jivin Robin Getz lays it down ... > > On Tue 18 Sep 2007 04:09, Bryan Wu pondered: > > > This just adds minimum support for the Blackfin relocations, > > > since we don't have enough space in each reloc. The idea > > > is to store

Re: [patch 6/7] Use extended crashkernel command line on sh

2007-09-13 Thread Paul Mundt
d work. However, if someone of > the SH people could test for me and provide feedback, that would be very nice. > > Signed-off-by: Bernhard Walle <[EMAIL PROTECTED]> > Works fine on SH. Acked-by: Paul Mundt <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line

Re: Define termios_1 functions for powerpc, s390, avr32 and frv

2007-09-13 Thread Paul Mundt
ave this stuff broken this late in 2.6.23. If Tony's patch gets applied, then this stuff will work itself out. Otherwise everything has to be patched for asm-generic/termios.h. In which case.. here's the patch to define them on sh and sh64. Signed-off-by: Paul Mundt <[EMAIL

Re: [PATCH] Blackfin arch: add some missing syscall

2007-09-13 Thread Paul Mundt
On Thu, Sep 13, 2007 at 02:18:52AM -0600, Matthew Wilcox wrote: > On Thu, Sep 13, 2007 at 03:56:43PM +0800, Bryan Wu wrote: > > +/* Not relevant on no-mmu */ > > I thought this list seemed a little long, so I investigated a couple > of them. mbind makes sense (it's only implemented for NUMA ... a

Re: [PATCH] Blackfin arch: add some missing syscall

2007-09-13 Thread Paul Mundt
On Thu, Sep 13, 2007 at 05:07:01PM +0900, Paul Mundt wrote: > On Thu, Sep 13, 2007 at 03:56:43PM +0800, Bryan Wu wrote: > > +#define __NR_syscall 354 > > #define NR_syscalls__NR_syscall > > > Err, why did you change __NR_syscall? This is go

Re: [PATCH] Blackfin arch: add some missing syscall

2007-09-13 Thread Paul Mundt
On Thu, Sep 13, 2007 at 03:56:43PM +0800, Bryan Wu wrote: > @@ -352,9 +353,54 @@ > #define __NR_shmdt 340 > #define __NR_shmget 341 > > -#define __NR_syscall 342 > +#define __NR_splice 342 > +#define __NR_sync_file_range 343 > +#define __NR_tee 34

Re: [PATCH -mm] ssb: Make pcmciahost depend on PCMCIA=y

2007-09-12 Thread Paul Mundt
On Wed, Sep 12, 2007 at 12:59:00PM +0200, Michael Buesch wrote: > On Wednesday 12 September 2007 12:17:45 Paul Mundt wrote: > > On Wed, Sep 12, 2007 at 12:09:09PM +0200, Michael Buesch wrote: > > > There we go. The usual SELECT dependency hell again... > > > Would chang

Re: [PATCH -mm] uvesafb: Don't access VGA registers directly when running on non-x86

2007-09-12 Thread Paul Mundt
On Wed, Sep 12, 2007 at 09:41:51PM +0200, Michal Januszewski wrote: > The VGA registers are only available at their legacy IO locations on > x86. Don't try to access them when running on other arches. > > Note that the code accessing them directly is just an optimization > (limits slow BIOS functi

Re: [PATCH -mm] ssb: Make pcmciahost depend on PCMCIA=y

2007-09-12 Thread Paul Mundt
On Wed, Sep 12, 2007 at 12:09:09PM +0200, Michael Buesch wrote: > On Wednesday 12 September 2007 04:11:00 Paul Mundt wrote: > > SSB uses a bool (SSB_PCMCIAHOST_POSSIBLE) to determine whether to > > build in PCMCIA support or not, as the PCMCIA host code itself is > > a

[PATCH -mm] ssb: Make pcmciahost depend on PCMCIA=y

2007-09-11 Thread Paul Mundt
results in link errors due to the pcmcia_access_configuration_register() accesses, where the symbol is only defined in a module. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> -- drivers/ssb/Kconfig |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-2.6.23-rc4-mm1.orig/drive

[PATCH -mm] fs: define file_fsync() even for CONFIG_BLOCK=n

2007-09-11 Thread Paul Mundt
eclared here (not in a function) make[2]: *** [fs/unionfs/file.o] Error 1 make[2]: *** Waiting for unfinished jobs make[1]: *** [fs/unionfs] Error 2 Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> -- include/linux/buffer_head.h |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)

Re: [PATCH -mm] uvesafb: Don't access VGA registers directly when running on non-x86

2007-09-11 Thread Paul Mundt
On Wed, Sep 12, 2007 at 01:09:59AM +0200, Michal Januszewski wrote: > The VGA registers are only available at their legacy IO locations on x86. > Don't try to access them when running on other arches. > > Note that the code accessing them directly is just an optimization (limits > slow BIOS functi

Re: x86 merge - a little feedback

2007-09-11 Thread Paul Mundt
On Tue, Sep 11, 2007 at 10:34:23PM +0100, Andi Kleen wrote: > > People do not expect code under arch/i386/ to be used by code under > > arch/x86_64/ and vice versa. > > > > That regularly results in people sending patches that don't compile on > > the other architecture. > > > > With one architectu

Re: [PATCH -mm] video: uvesafb: Add X86 dependency.

2007-09-11 Thread Paul Mundt
On Tue, Sep 11, 2007 at 01:19:57PM +0100, Paulo Marques wrote: > Paul Mundt wrote: > >On Tue, Sep 11, 2007 at 12:41:49PM +0100, Paulo Marques wrote: > >>[...] > >>Why do you say that it's x86 specific? Am I missing something? > >> > >The emulator it u

Re: [PATCH -mm] video: uvesafb: Add X86 dependency.

2007-09-11 Thread Paul Mundt
On Tue, Sep 11, 2007 at 12:41:49PM +0100, Paulo Marques wrote: > Paul Mundt wrote: > >uvesafb is x86-specific, reflect that in the Kconfig. > > Hummm... uvesafb _shouldn't_ be x86 specific. At least according to > their page [1] where it says: "works on non-x86 syste

[PATCH -mm] sysctl: Fix syscall disabled build.

2007-09-11 Thread Paul Mundt
ction 'sys_sysctl': kernel/sysctl.c:2601: error: implicit declaration of function 'deprecated_sysctl_warning' make[1]: *** [kernel/sysctl.o] Error 1 make: *** [kernel] Error 2 This just moves the function past the end of the CONFIG_SYSCTL space so both configurations are happy. Signed-o

Re: [PATCH -mm] mm: Fix memory hotplug + sparsemem build.

2007-09-11 Thread Paul Mundt
Hi Goto-san, On Tue, Sep 11, 2007 at 05:18:01PM +0900, Yasunori Goto wrote: > > if (onlined_pages) > > - node_set_state(zone->node, N_HIGH_MEMORY); > > + node_set_state(zone_to_nid(zone), N_HIGH_MEMORY); > > > > setup_per_zone_pages_min(); > > Thanks Paul-san. > >

[PATCH -mm] splice: Disable vmsplice on nommu.

2007-09-11 Thread Paul Mundt
ce.c:1272: undefined reference to `vm_stat_account' This is going to be non-trivial to wire up properly on nommu, and it's debateable whether there's even any point in trying. For now, disable vmsplice if CONFIG_MMU=n and wire it up as a cond syscall for the platforms that support both.

[PATCH -mm] video: uvesafb: Add X86 dependency.

2007-09-11 Thread Paul Mundt
uvesafb is x86-specific, reflect that in the Kconfig. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> -- drivers/video/Kconfig |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-2.6.23-rc4-mm1.orig/drivers/video/Kconfig 2007-09-11 15:15:52.0 +0900 +++ linux-

[PATCH -mm] mm: Fix memory hotplug + sparsemem build.

2007-09-11 Thread Paul Mundt
e: *** [mm] Error 2 Fix it up. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> -- mm/memory_hotplug.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- linux-2.6.23-rc4-mm1.orig/mm/memory_hotplug.c 2007-09-11 15:15:56.0 +0900 +++ linux-2.6.23-rc4-mm1/mm/memory_hotplu

Re: [PATCH 1/2] Maple Bus support for SEGA Dreamcast

2007-09-10 Thread Paul Mundt
On Tue, Sep 11, 2007 at 07:39:26AM +0100, Adrian McMenamin wrote: > On Tue, 2007-09-11 at 13:27 +0900, Paul Mundt wrote: > > I don't believe the 'or any later version' thing was intended by any of > > the original authors, this should probably be dropped. The ori

[PATCH -mm] hrtimer: Build fix for !KTIME_SCALAR on 32bit.

2007-09-10 Thread Paul Mundt
here make[1]: *** [kernel/hrtimer.o] Error 1 make: *** [kernel] Error 2 For some reason the ktime_sub_ns() addition was duplicated, and someone forgot to change the name of the ktime_add_ns() symbol export they lifted. Get it building again. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> --

Re: [PATCH 1/2] Maple Bus support for SEGA Dreamcast

2007-09-10 Thread Paul Mundt
--- /dev/null > +++ b/drivers/sh/maple/maplebus.c > @@ -0,0 +1,747 @@ > +/* maplebus.c > + * Core maple bus functionality > + * Original 2.4 code used here copyright > + * YAEGASHI Takeshi, Paul Mundt, M. R. Brown and others > + * Porting to 2.6 Copyright Adrian McMenamin, 2007 > +

Re: [PATCH - RESUBMiT] Minor patch to pvr2 driver required for maple bus support on SEGA Dreamcast

2007-09-09 Thread Paul Mundt
On Wed, Sep 05, 2007 at 12:27:20AM +0100, Adrian McMenamin wrote: > diff --git a/drivers/video/pvr2fb.c b/drivers/video/pvr2fb.c > index 7d6c298..13de07f 100644 > --- a/drivers/video/pvr2fb.c > +++ b/drivers/video/pvr2fb.c > @@ -890,7 +890,7 @@ static int __init pvr2fb_dc_init(void) > pvr2_fi

Re: what is the value of the macro "__setup_param"?

2007-08-24 Thread Paul Mundt
On Fri, Aug 24, 2007 at 05:49:42AM -0400, Robert P. J. Day wrote: > On Fri, 24 Aug 2007, Paul Mundt wrote: > > > On Fri, Aug 24, 2007 at 05:19:29AM -0400, Robert P. J. Day wrote: > > > > > > perhaps i'm missing it, but it seems that the macro __setup_

Re: what is the value of the macro "__setup_param"?

2007-08-24 Thread Paul Mundt
On Fri, Aug 24, 2007 at 05:19:29AM -0400, Robert P. J. Day wrote: > > perhaps i'm missing it, but it seems that the macro __setup_param is > entirely superfluous: > > $ grep -rw __setup_param * > include/linux/init.h:#define __setup_param(str, unique_id, fn, early) \ > include/linux/init.h

Re: [PATCH 1/1] ensure we don't use bootconsoles after init has been released

2007-08-20 Thread Paul Mundt
t; freed, but still used. > > Signed-off-by: Robin Getz <[EMAIL PROTECTED]> > CC: Gerd Hoffmann <[EMAIL PROTECTED]> > CC: Paul Mundt <[EMAIL PROTECTED]> > CC: Mike Frysinger <[EMAIL PROTECTED]> Looks better, thanks. Acked-by: Paul Mundt <[EMAIL PROTECTE

Re: [PATCH 1/1] ensure we don't use bootconsoles after init has been released

2007-08-19 Thread Paul Mundt
On Sun, Aug 19, 2007 at 11:11:47PM -0400, Mike Frysinger wrote: > On 8/19/07, Robin Getz <[EMAIL PROTECTED]> wrote: > > +static int __init disable_boot_consoles(void) > > +{ > > + struct console *con; > > + > > + for (con = console_drivers; con; con = con->next) { > > + if

<    1   2   3   4   5   >