Re: 2.6.24-rc3-mm2 - add-64-bit-capability-support-to-the-kernel

2007-12-05 Thread Andrew Morgan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Serge E. Hallyn wrote: > Quoting [EMAIL PROTECTED] ([EMAIL PROTECTED]): >> Question: >> >> The patch does the semantic equivalent of: >> >> -#define cap_clear(c) do { cap_t(c) = 0; } while(0) >> -#define cap_set_full(c) do { cap_t(c) = ~0

[PATCH] (2.6.24-rc3-mm2) -mm Smack mutex, capability, pointers, and spelling cleanup

2007-12-04 Thread Casey Schaufler
- security/smack/smackfs.c |6 + 4 files changed, 19 insertions(+), 27 deletions(-) diff -uprN -X linux-2.6.24-rc3-mm2-base/Documentation/dontdiff linux-2.6.24-rc3-mm2-base/security/smack/smack_access.c linux-2.6.24-rc3-mm2-smack/security/smack/smack_access.c --- linux-2.6.24-rc3-mm2-ba

Re: [PATCH] (2.6.24-rc3-mm2) -mm Smack mutex cleanup

2007-12-03 Thread Casey Schaufler
mack/smack.h|3 -- > > security/smack/smack_access.c |3 ++ > > security/smack/smack_lsm.c | 34 +--- > > security/smack/smackfs.c |6 + > > 4 files changed, 19 insertions(+), 27 deletions(-) > > > > di

Re: [PATCH] (2.6.24-rc3-mm2) -mm Smack mutex cleanup

2007-12-03 Thread Jiri Slaby
gt; --- > > Tested with stamp-2007-11-30-16-39 > > security/smack/smack.h|3 -- > security/smack/smack_access.c |3 ++ > security/smack/smack_lsm.c| 34 +--- > security/smack/smackfs.c | 6 +++++ > 4 files changed,

Re: 2.6.24-rc3-mm2

2007-12-03 Thread Torsten Kaiser
[ 602.469250] kernel BUG at lib/list_debug.c:33! > > [ 602.473731] invalid opcode: [1] SMP > > [ 602.477828] last sysfs file: > > /sys/devices/system/cpu/cpu3/cache/index2/shared_cpu_map [snip] > > [ 602.515102] Pid: 7452, comm: nfsv4-svc Not tainted 2.6.24-rc3-mm2 #1

[PATCH] (2.6.24-rc3-mm2) -mm Smack mutex cleanup

2007-12-03 Thread Casey Schaufler
kfs.c |6 + 4 files changed, 19 insertions(+), 27 deletions(-) diff -uprN -X linux-2.6.24-rc3-mm2-base/Documentation/dontdiff linux-2.6.24-rc3-mm2-base/security/smack/smack_access.c linux-2.6.24-rc3-mm2-smack/security/smack/smack_access.c --- linux-2.6.24-rc3-mm2-base/security/smack/smack_

Re: 2.6.24-rc3-mm2 - add-64-bit-capability-support-to-the-kernel

2007-12-03 Thread Serge E. Hallyn
Quoting [EMAIL PROTECTED] ([EMAIL PROTECTED]): > Question: > > The patch does the semantic equivalent of: > > -#define cap_clear(c) do { cap_t(c) = 0; } while(0) > -#define cap_set_full(c) do { cap_t(c) = ~0; } while(0) > > +# define cap_clear(c) do { (c) = __cap_empty_set;

Re: [BUG] 2.6.24-rc3-mm2 kernel bug on nfs & cifs mounted partitions

2007-12-02 Thread Kamalesh Babulal
Jan Kara wrote: > On Thu 29-11-07 17:27:08, Kamalesh Babulal wrote: >> Andrew Morton wrote: >>> On Thu, 29 Nov 2007 14:30:14 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> >>> wrote: >>> Hi Andrew, While running file system stress on nfs and cifs mounted partitions, the machine >>

2.6.24-rc3-mm2 - add-64-bit-capability-support-to-the-kernel

2007-12-01 Thread Valdis . Kletnieks
Question: The patch does the semantic equivalent of: -#define cap_clear(c) do { cap_t(c) = 0; } while(0) -#define cap_set_full(c) do { cap_t(c) = ~0; } while(0) +# define cap_clear(c) do { (c) = __cap_empty_set; } while (0) +# define cap_set_full(c) do { (c) = __cap_fu

Re: [PATCH] 2.6.24-rc3-mm2 build failure pasemi-rng driver

2007-12-01 Thread Olof Johansson
On Wed, Nov 28, 2007 at 07:52:01PM +0530, Kamalesh Babulal wrote: > Hi Andrew, > > The kerne build fails, with message > > CC drivers/char/hw_random/pasemi-rng.o > drivers/char/hw_random/pasemi-rng.c: In function > ???pasemi_rng_data_present???: > drivers/char/hw_random/pasemi-rng.c:53: e

Re: [PATCH 9/9] MN10300: Fix MTD JEDEC probe so that the ASB2303 bootprom can be detected [2.6.24-rc3-mm2]

2007-11-30 Thread David Woodhouse
You made me look at datasheets which number address lines from A-1 to A18. My brain hurts. I hate you now. Please try git://git.infradead.org/~dwmw2/jedec-unlock.git I may have broken chip probing for a number of people now, but it ought to be progress. -- dwmw2 - To unsubscribe from this lis

Re: [PATCH 9/9] MN10300: Fix MTD JEDEC probe so that the ASB2303 bootprom can be detected [2.6.24-rc3-mm2]

2007-11-30 Thread David Woodhouse
On Fri, 2007-11-30 at 14:01 +, David Howells wrote: > David Woodhouse <[EMAIL PROTECTED]> wrote: > > > I don't like this -- it shouldn't be necessary. > > Actually, I think you're right. I think the problem is that: > > if (uaddr != MTD_UADDR_NOT_SUPPORTED ) { > /*

Re: [PATCH 9/9] MN10300: Fix MTD JEDEC probe so that the ASB2303 bootprom can be detected [2.6.24-rc3-mm2]

2007-11-30 Thread David Howells
Andrew, > Fix MTD JEDEC probe so that the ASB2303 bootprom can be accessed. This is > presumably required because the bootprom is normally write-protected and so > the normal flash probes don't work as they require the ability to write to the > flash to send it commands. > > In the condition of

Re: [PATCH 9/9] MN10300: Fix MTD JEDEC probe so that the ASB2303 bootprom can be detected [2.6.24-rc3-mm2]

2007-11-30 Thread David Howells
David Woodhouse <[EMAIL PROTECTED]> wrote: > I don't like this -- it shouldn't be necessary. Actually, I think you're right. I think the problem is that: if (uaddr != MTD_UADDR_NOT_SUPPORTED ) { /* ASSERT("The unlock addresses for non-8-bit mode are bo

Re: [PATCH 9/9] MN10300: Fix MTD JEDEC probe so that the ASB2303 bootprom can be detected [2.6.24-rc3-mm2]

2007-11-30 Thread David Woodhouse
On Thu, 2007-11-29 at 22:53 +, David Howells wrote: > > + /* the MN10300 ASB2303 board doesn't detect its bootprom if this test > +* is allowed to take place, presumably because the flash is > +* write-protected and so cannot be commanded for the purposes of > +*

Re: [BUG] 2.6.24-rc3-mm2 soft lockup while running tbench

2007-11-29 Thread Kamalesh Babulal
Andrew Morton wrote: > On Wed, 28 Nov 2007 20:03:22 +0530 > Kamalesh Babulal <[EMAIL PROTECTED]> wrote: > >> Hi Andrew, >> >> while running tbench on the powerpc with 2.6.24-rc3-mm2 softlock up occurs >> >> BUG: soft lockup - CPU#0 stuck for 11

Re: 2.6.24-rc3-mm2 (bugfix for memory cgroup per-zone-struct allocation.)

2007-11-29 Thread KAMEZAWA Hiroyuki
On Thu, 29 Nov 2007 16:25:33 -0500 Lee Schermerhorn <[EMAIL PROTECTED]> wrote: > > - pn = kmalloc_node(sizeof(*pn), GFP_KERNEL, node); > > + /* > > +* This routine is called against possible nodes. > > +* But it's BUG to call kmalloc() against offline node. > > +* > > +* TODO: t

[PATCH 9/9] MN10300: Fix MTD JEDEC probe so that the ASB2303 bootprom can be detected [2.6.24-rc3-mm2]

2007-11-29 Thread David Howells
Fix MTD JEDEC probe so that the ASB2303 bootprom can be accessed. This is presumably required because the bootprom is normally write-protected and so the normal flash probes don't work as they require the ability to write to the flash to send it commands. In the condition of the excluded if-state

Re: named + capset = EPERM [Was: 2.6.24-rc3-mm2]

2007-11-29 Thread Jiri Slaby
On 11/29/2007 01:17 AM, Serge E. Hallyn wrote: > From 70d5da610fdbd66a36886c01e27b7fb11d2de044 Mon Sep 17 00:00:00 2001 > From: [EMAIL PROTECTED] <[EMAIL PROTECTED](none)> > Date: Wed, 28 Nov 2007 16:16:23 -0800 > Subject: [PATCH 1/1] capabilities: correct logic at capset_check > > Fix typo at cap

[PATCH 6/9] MN10300: Allocate serial port UART IDs for on-chip serial ports [2.6.24-rc3-mm2]

2007-11-29 Thread David Howells
Allocate serial port UART type IDs for the MN10300 on-chip serial ports. Signed-off-by: David Howells <[EMAIL PROTECTED]> Acked-by: Alan Cox <[EMAIL PROTECTED]> --- include/linux/serial_core.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/linux/serial_core.h

[PATCH 8/9] MN10300: Add platform MTD support for the ASB2303 board [2.6.24-rc3-mm2]

2007-11-29 Thread David Howells
Add platform MTD support for the ASB2303 board. Signed-off-by: David Howells <[EMAIL PROTECTED]> --- arch/mn10300/configs/asb2303_defconfig |5 +- arch/mn10300/unit-asb2303/Makefile |2 - arch/mn10300/unit-asb2303/flash.c | 100 3 files changed,

[PATCH 3/9] AOUT: Suppress A.OUT library support if !CONFIG_ARCH_SUPPORTS_AOUT [2.6.24-rc3-mm2]

2007-11-29 Thread David Howells
Suppress A.OUT library support if CONFIG_ARCH_SUPPORTS_AOUT is not set. Not all architectures support the A.OUT binfmt, so the ELF binfmt should not be permitted to go looking for A.OUT libraries to load in such a case. Not only that, but under such conditions A.OUT core dumps are not produced ei

[PATCH 5/9] USB: net2280 can't have a function called show_registers() [2.6.24-rc3-mm2]

2007-11-29 Thread David Howells
net2280 can't have a function called show_registers() because this can produce a namespace clash with an arch function of the same name. All this driver's functions and variables should really be prefixed with "net2280_" to avoid such a problem in future. Signed-off-by: David Howells <[EMAIL PROT

[PATCH 4/9] AOUT: Remove unnecessary inclusions of {asm, linux}/a.out.h [2.6.24-rc3-mm2]

2007-11-29 Thread David Howells
Remove now unnecessary inclusions of {asm,linux}/a.out.h. Signed-off-by: David Howells <[EMAIL PROTECTED]> --- arch/alpha/kernel/osf_sys.c |1 - arch/alpha/kernel/process.c |1 - arch/alpha/kernel/setup.c |1 - arch/arm/kernel/process.c |1 - a

[PATCH 2/9] AOUT: Mark arches that support A.OUT format [2.6.24-rc3-mm2]

2007-11-29 Thread David Howells
Mark arches that support A.OUT format by including the following in their master Kconfig files: config ARCH_SUPPORTS_AOUT def_bool y This should also be set if the arch provides compatibility A.OUT support for an older arch, for instance x86_64 for i386 or sparc64 for spar

[PATCH 1/9] AOUT: Move STACK_TOP[_MAX] to asm/processor.h [2.6.24-rc3-mm2]

2007-11-29 Thread David Howells
Move STACK_TOP[_MAX] out of asm/a.out.h and into asm/processor.h as they're required whether or not A.OUT format is available. Signed-off-by: David Howells <[EMAIL PROTECTED]> --- include/asm-alpha/a.out.h |8 +--- include/asm-alpha/processor.h |5 + include/asm-arm

Re: 2.6.24-rc3-mm2

2007-11-29 Thread Stefan Richter
Andrew Morton wrote: > On Thu, 29 Nov 2007 21:58:16 +0100 > "Torsten Kaiser" <[EMAIL PROTECTED]> wrote: >> First crash: >> >> [ 1116.083651] Unable to handle kernel NULL pointer dereference at >> 0378 RIP: >> [ 1116.089216] [] ether1394_dg_complete+0x28/0xa0 ... > Yep, looks like a gen

Re: 2.6.24-rc3-mm2 (bugfix for memory cgroup per-zone-struct allocation.)

2007-11-29 Thread Lee Schermerhorn
hotplug) but here just uses kmalloc(). > > Should be revisited later. > > Signed-off-by: KAMEZAWA Hiroyuki <[EMAIL PROTECTED]> > > mm/memcontrol.c | 14 ++++++++-- > 1 file changed, 12 insertions(+), 2 deletions(-) > > Index: linux-2.6.24-rc3-mm2/mm/me

Re: [BUG] 2.6.24-rc3-mm2 soft lockup while running tbench

2007-11-29 Thread Andrew Morton
On Wed, 28 Nov 2007 20:03:22 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> wrote: > Hi Andrew, > > while running tbench on the powerpc with 2.6.24-rc3-mm2 softlock up occurs > > BUG: soft lockup - CPU#0 stuck for 11s! [tbench:12183] > NIP: c00ac978

Re: 2.6.24-rc3-mm2

2007-11-29 Thread Andrew Morton
On Thu, 29 Nov 2007 21:58:16 +0100 "Torsten Kaiser" <[EMAIL PROTECTED]> wrote: > On Nov 28, 2007 12:41 PM, Andrew Morton <[EMAIL PROTECTED]> wrote: > > > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ > > >

Re: 2.6.24-rc3-mm2

2007-11-29 Thread Torsten Kaiser
On Nov 28, 2007 12:41 PM, Andrew Morton <[EMAIL PROTECTED]> wrote: > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ > > - All patches against subsystem trees were recently sent to the relevant > maintainers. Many (probably most) w

Re: [BUG] 2.6.24-rc3-mm2 kernel bug on nfs & cifs mounted partitions

2007-11-29 Thread Jan Kara
On Thu 29-11-07 17:27:08, Kamalesh Babulal wrote: > Andrew Morton wrote: > > On Thu, 29 Nov 2007 14:30:14 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> > > wrote: > > > >> Hi Andrew, > >> > >> While running file system stress on nfs and cifs mounted partitions, the > >> machine > >> drops to xmon >

Re: [BUG] 2.6.24-rc3-mm2 kernel bug on nfs & cifs mounted partitions

2007-11-29 Thread Kamalesh Babulal
Jan Kara wrote: > On Thu 29-11-07 17:27:08, Kamalesh Babulal wrote: >> Andrew Morton wrote: >>> On Thu, 29 Nov 2007 14:30:14 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> >>> wrote: >>> Hi Andrew, While running file system stress on nfs and cifs mounted partitions, the machine >>

Re: [BUG] 2.6.24-rc3-mm2 kernel bug on nfs & cifs mounted partitions

2007-11-29 Thread Kamalesh Babulal
Andrew Morton wrote: > On Thu, 29 Nov 2007 14:30:14 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> wrote: > >> Hi Andrew, >> >> While running file system stress on nfs and cifs mounted partitions, the >> machine >> drops to xmon >> >> 1:mon> e >> cpu 0x1: Vector: 300 (Data Access) at [c00080a9f88

Re: PATCH 2.6.24-rc3-mm2 - build breakage - bnx2x depends on ZLIB_INFLATE

2007-11-29 Thread Eliezer Tamir
On Wed, 2007-11-28 at 12:25 -0800, Lee Schermerhorn wrote: > Couldn't find one of these on the lists... > > PATCH 2.6.24-rc3-mm1: bnx2x depends on ZLIB_INFLATE > > The bnx2x module depends on the zlib_inflate functions. The > build will fail if ZLIB_INFLATE has not been selected manually > or

Re: [BUG] 2.6.24-rc3-mm2 kernel bug on nfs & cifs mounted partitions

2007-11-29 Thread Jan Kara
On Thu 29-11-07 17:27:08, Kamalesh Babulal wrote: > Andrew Morton wrote: > > On Thu, 29 Nov 2007 14:30:14 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> > > wrote: > > > >> Hi Andrew, > >> > >> While running file system stress on nfs and cifs mounted partitions, the > >> machine > >> drops to xmon >

Re: 2.6.24-rc3-mm2: Result: hostbyte=0x01 driverbyte=0x00\nend_request: I/O error

2007-11-29 Thread Boaz Harrosh
t;>> month old and there were no prolems with, say, 2.6.24-rc3: >> Could you try reverting 6f5391c283d7fdcf24bf40786ea79061919d1e1d and see >> if the problem still exists? >> > > That's not completely trivial.. > > I did a hand-made revert against 2.6.24-rc3-mm2 (below) but some other pa

Re: [BUG] 2.6.24-rc3-mm2 kernel bug on nfs & cifs mounted partitions

2007-11-29 Thread Andrew Morton
On Thu, 29 Nov 2007 14:30:14 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> wrote: > Hi Andrew, > > While running file system stress on nfs and cifs mounted partitions, the > machine > drops to xmon > > 1:mon> e > cpu 0x1: Vector: 300 (Data Access) at [c00080a9f880] > pc: c01392c8:

[BUG] 2.6.24-rc3-mm2 kernel bug on nfs & cifs mounted partitions

2007-11-29 Thread Kamalesh Babulal
Hi Andrew, While running file system stress on nfs and cifs mounted partitions, the machine drops to xmon 1:mon> e cpu 0x1: Vector: 300 (Data Access) at [c00080a9f880] pc: c01392c8: .inotify_inode_queue_event+0x50/0x158 lr: c01074d0: .vfs_link+0x204/0x298 sp: c

Re: 2.6.24-rc3-mm2 (bugfix for memory cgroup per-zone-struct allocation.)

2007-11-28 Thread KAMEZAWA Hiroyuki
OTECTED]> mm/memcontrol.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) Index: linux-2.6.24-rc3-mm2/mm/memcontrol.c =========== --- linux-2.6.24-rc3-mm2.orig/mm/memcontrol.c +++ linux-2.6.24-rc3-mm2/mm/memcontro

Re: 2.6.24-rc3-mm2

2007-11-28 Thread KAMEZAWA Hiroyuki
> +per-zone-and-reclaim-enhancements-for-memory-controller-take-3-add-scan_global_lru-macro.patch > +per-zone-and-reclaim-enhancements-for-memory-controller-take-3-nid-zid-helper-function-for-cgroup.patch > +per-zone-and-reclaim-enhancements-for-memory-controller-take-3-per-zone-active-inactive-co

Re: 2.6.24-rc3-mm2 - Build Failure on powerpc timerfd() undeclared

2007-11-28 Thread Arnd Bergmann
On Wednesday 28 November 2007 19:43:45 Andrew Morton wrote: > > I guess all architectures except x86 are currently broken because they > > reference the old sys_timerfd function. > > None of them were broken in my testing and I'm unsure why powerpc broke > here. PowerPC is unique in that it actual

Re: named + capset = EPERM [Was: 2.6.24-rc3-mm2]

2007-11-28 Thread Serge E. Hallyn
1 PM, Andrew Morton wrote: > > > > > > > > > > > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ > > > > [...] > > > > > +capabilities-introduce-per-process-capability-bounding-set.pat

Re: named + capset = EPERM [Was: 2.6.24-rc3-mm2]

2007-11-28 Thread Serge E. Hallyn
.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ > > > [...] > > > > +capabilities-introduce-per-process-capability-bounding-set.patch > > > > > > A regression against -mm1. This patch breaks bind (9.5.0-18.a7.fc8): > > >

Re: named + capset = EPERM [Was: 2.6.24-rc3-mm2]

2007-11-28 Thread Serge E. Hallyn
Quoting Casey Schaufler ([EMAIL PROTECTED]): > > --- Jiri Slaby <[EMAIL PROTECTED]> wrote: > > > On 11/28/2007 12:41 PM, Andrew Morton wrote: > > > > > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ > > [.

Re: 2.6.24-rc3-mm2: Result: hostbyte=0x01 driverbyte=0x00\nend_request: I/O error

2007-11-28 Thread Andrew Morton
e > if the problem still exists? > That's not completely trivial.. I did a hand-made revert against 2.6.24-rc3-mm2 (below) but some other patch in there causes: drivers/scsi/scsi_lib.c: In function 'scsi_blk_pc_done': drivers/scsi/scsi_lib.c:1251: error: '

Re: named + capset = EPERM [Was: 2.6.24-rc3-mm2]

2007-11-28 Thread Casey Schaufler
--- Jiri Slaby <[EMAIL PROTECTED]> wrote: > On 11/28/2007 12:41 PM, Andrew Morton wrote: > > > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ > [...] > > +capabilities-introduce-per-process-capability-bounding-set.patch >

Re: 2.6.24-rc3-mm2: Result: hostbyte=0x01 driverbyte=0x00\nend_request: I/O error

2007-11-28 Thread Matthew Wilcox
On Wed, Nov 28, 2007 at 01:40:36PM -0800, Andrew Morton wrote: > On Wed, 28 Nov 2007 23:01:31 +0300 > Alexey Dobriyan <[EMAIL PROTECTED]> wrote: > > > Reliably spams dmesg with end_request() horrors. This happens when git > > starts checking out linux tree to fresh ext2 partition. Disk is several

named + capset = EPERM [Was: 2.6.24-rc3-mm2]

2007-11-28 Thread Jiri Slaby
On 11/28/2007 12:41 PM, Andrew Morton wrote: > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ [...] > +capabilities-introduce-per-process-capability-bounding-set.patch A regression against -mm1. This patch breaks bind (9.5.0-18.a7.fc8): capset(0x19

Re: 2.6.24-rc3-mm2: Result: hostbyte=0x01 driverbyte=0x00\nend_request: I/O error

2007-11-28 Thread Alan Cox
> > [ 225.378426] sd 2:0:1:0: [sdb] Result: hostbyte=0x01 driverbyte=0x00 > > [ 225.378659] end_request: I/O error, dev sdb, sector 141295703 > > [ 225.390133] sd 2:0:1:0: [sdb] Result: hostbyte=0x01 driverbyte=0x00 > > [ 225.391988] end_request: I/O error, dev sdb, sector 141295703 > > [ 225.

Re: 2.6.24-rc3-mm2 - *not* an insta-brick on my Latitude...

2007-11-28 Thread Valdis . Kletnieks
On Wed, 28 Nov 2007 03:41:40 PST, Andrew Morton said: > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ This one built and booted cleanly on the first try. Whatever was in the -mm1 version of git-x86.patch that gave it indigestion is g

Re: 2.6.24-rc3-mm2: Result: hostbyte=0x01 driverbyte=0x00\nend_request: I/O error

2007-11-28 Thread Andrew Morton
d > [ 35.229713] sd 2:0:1:0: [sdb] 976773168 512-byte hardware sectors (500108 > MB) So that's an OK sector number. > [0.00] Linux version 2.6.24-rc3-mm2 ([EMAIL PROTECTED]) (gcc version > 4.1.2 (Gentoo 4.1.2 p1.0.2)) #3 SMP PREEMPT Wed Nov 28 22:23:45 MSK 2007 > [

Re: 2.6.24-rc3-mm2 (build failure on arm)

2007-11-28 Thread Bartlomiej Zolnierkiewicz
On Wednesday 28 November 2007, Christoph Lameter wrote: > Crossbuild on arm with shark_deconfig fails: > > CC [M] sound/oss/uart401.o > CC net/sched/sch_generic.o > CC net/core/dst.o > AS arch/arm/lib/getuser.o > drivers/ide/arm/ide_arm.c: In function 'ide_arm_init': > driv

PATCH 2.6.24-rc3-mm2 - build breakage - bnx2x depends on ZLIB_INFLATE

2007-11-28 Thread Lee Schermerhorn
Couldn't find one of these on the lists... PATCH 2.6.24-rc3-mm1: bnx2x depends on ZLIB_INFLATE The bnx2x module depends on the zlib_inflate functions. The build will fail if ZLIB_INFLATE has not been selected manually or by building another module that automatically selects it. Modify BNX2X co

Re: 2.6.24-rc3-mm2 (build failure on arm)

2007-11-28 Thread Andrew Morton
On Wed, 28 Nov 2007 11:54:10 -0800 (PST) Christoph Lameter <[EMAIL PROTECTED]> wrote: > Crossbuild on arm with shark_deconfig fails: > > CC [M] sound/oss/uart401.o > CC net/sched/sch_generic.o > CC net/core/dst.o > AS arch/arm/lib/getuser.o > drivers/ide/arm/ide_arm.c: In

Re: 2.6.24-rc3-mm2 (build failure on s390)

2007-11-28 Thread Andrew Morton
On Wed, 28 Nov 2007 11:52:19 -0800 (PST) Christoph Lameter <[EMAIL PROTECTED]> wrote: > Cross build with s390 default configuration (make defconfig) fails > > CC arch/s390/kernel/irq.o > CC arch/s390/kernel/ipl.o > CC arch/s390/kernel/dis.o > CC fs/open.o > LD a

2.6.24-rc3-mm2: Result: hostbyte=0x01 driverbyte=0x00\nend_request: I/O error

2007-11-28 Thread Alexey Dobriyan
not set CONFIG_ATA_ACPI=y CONFIG_SATA_AHCI=y CONFIG_ATA_PIIX=y CONFIG_PATA_JMICRON=y [0.00] Linux version 2.6.24-rc3-mm2 ([EMAIL PROTECTED]) (gcc version 4.1.2 (Gentoo 4.1.2 p1.0.2)) #3 SMP PREEMPT Wed Nov 28 22:23:45 MSK 2007 [0.00] Command line: root=/dev/sda2 [EMAIL PROTECTED

Re: 2.6.24-rc3-mm2 (build failure on arm)

2007-11-28 Thread Christoph Lameter
Crossbuild on arm with shark_deconfig fails: CC [M] sound/oss/uart401.o CC net/sched/sch_generic.o CC net/core/dst.o AS arch/arm/lib/getuser.o drivers/ide/arm/ide_arm.c: In function 'ide_arm_init': drivers/ide/arm/ide_arm.c:42: error: implicit declaration of function 'ide_

Re: 2.6.24-rc3-mm2 (build failure on s390)

2007-11-28 Thread Christoph Lameter
Cross build with s390 default configuration (make defconfig) fails CC arch/s390/kernel/irq.o CC arch/s390/kernel/ipl.o CC arch/s390/kernel/dis.o CC fs/open.o LD arch/s390/hypfs/s390_hypfs.o arch/s390/kernel/ipl.c: In function 'ipl_register_fcp_files': arch/s390/k

Re: 2.6.24-rc3-mm2 - Build Failure on powerpc timerfd() undeclared

2007-11-28 Thread Davide Libenzi
On Wed, 28 Nov 2007, Andrew Morton wrote: > On Wed, 28 Nov 2007 14:32:07 +0100 Arnd Bergmann <[EMAIL PROTECTED]> wrote: > > > On Wednesday 28 November 2007, Kamalesh Babulal wrote: > > > Kernel build fails, with build error > > > > > >   CC      arch/powerpc/platforms/cell/spu_callbacks.o > > >

Re: 2.6.24-rc3-mm2 Build Failure at imacfb framebuffer driver

2007-11-28 Thread Andrew Morton
On Wed, 28 Nov 2007 18:37:13 +0530 Kamalesh Babulal <[EMAIL PROTECTED]> wrote: > Hi Andrew, > > The kernel build fails, with following error > > CC drivers/video/imacfb.o > drivers/video/imacfb.c: In function ‘imacfb_probe’: > drivers/video/imacfb.c:238: error: ‘struct screen_info’ has no

Re: 2.6.24-rc3-mm2 - Build Failure on powerpc timerfd() undeclared

2007-11-28 Thread Andrew Morton
On Wed, 28 Nov 2007 14:32:07 +0100 Arnd Bergmann <[EMAIL PROTECTED]> wrote: > On Wednesday 28 November 2007, Kamalesh Babulal wrote: > > Kernel build fails, with build error > > > >   CC      arch/powerpc/platforms/cell/spu_callbacks.o > > In file included from arch/powerpc/platforms/cell/spu_cal

[BUG] 2.6.24-rc3-mm2 soft lockup while running tbench

2007-11-28 Thread Kamalesh Babulal
Hi Andrew, while running tbench on the powerpc with 2.6.24-rc3-mm2 softlock up occurs BUG: soft lockup - CPU#0 stuck for 11s! [tbench:12183] NIP: c00ac978 LR: c00acff0 CTR: c005c648 REGS: C0076F0F3200 TRAP: 0901 Not tainted (2.6.24-rc3-mm2-autotest) MSR

[PATCH] 2.6.24-rc3-mm2 build failure pasemi-rng driver

2007-11-28 Thread Kamalesh Babulal
Hi Andrew, The kerne build fails, with message CC drivers/char/hw_random/pasemi-rng.o drivers/char/hw_random/pasemi-rng.c: In function ‘pasemi_rng_data_present’: drivers/char/hw_random/pasemi-rng.c:53: error: ‘wait’ undeclared (first use in this function) drivers/char/hw_random/pasemi-rng

Re: 2.6.24-rc3-mm2

2007-11-28 Thread Boaz Harrosh
On Wed, Nov 28 2007 at 13:41 +0200, Andrew Morton <[EMAIL PROTECTED]> wrote: > ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ > > - All patches against subsystem trees were recently sent to the relevant > maintainers. Many (probably

Re: 2.6.24-rc3-mm2 - Build Failure on powerpc timerfd() undeclared

2007-11-28 Thread Arnd Bergmann
On Wednesday 28 November 2007, Kamalesh Babulal wrote: > Kernel build fails, with build error > >   CC      arch/powerpc/platforms/cell/spu_callbacks.o > In file included from arch/powerpc/platforms/cell/spu_callbacks.c:49: > include/asm/systbl.h:312: error: ‘sys_timerfd’ undeclared here (not in a

Re: 2.6.24-rc3-mm2 Build Failure at imacfb framebuffer driver

2007-11-28 Thread Kamalesh Babulal
Hi Andrew, The kernel build fails, with following error CC drivers/video/imacfb.o drivers/video/imacfb.c: In function ‘imacfb_probe’: drivers/video/imacfb.c:238: error: ‘struct screen_info’ has no member named ‘imacpm_seg’ make[2]: *** [drivers/video/imacfb.o] Error 1 make[1]: *** [driver

Re: 2.6.24-rc3-mm2 - Build Failure on powerpc timerfd() undeclared

2007-11-28 Thread Kamalesh Babulal
Hi Andrew, Kernel build fails, with build error CC arch/powerpc/platforms/cell/spu_callbacks.o In file included from arch/powerpc/platforms/cell/spu_callbacks.c:49: include/asm/systbl.h:312: error: ‘sys_timerfd’ undeclared here (not in a function) make[2]: *** [arch/powerpc/platforms/cell

2.6.24-rc3-mm2

2007-11-28 Thread Andrew Morton
ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc3/2.6.24-rc3-mm2/ - All patches against subsystem trees were recently sent to the relevant maintainers. Many (probably most) were ignored. I don't know why this happens. - First bug report: after ten minutes ha