Re: [PATCH] x86 (Linux Tiny): configure out support for some processors

2008-02-09 Thread Simon Holm Thøgersen
lør, 09 02 2008 kl. 10:29 +0100, skrev Michael Opdenacker: > On 02/09/2008 09:30 AM, Simon Holm Thøgersen wrote: > > The build of my currently running kernel for my laptop has > > $ size -t amd.o cyrix.o centaur.o transmeta.o intel.o nexgen.o umc.o > >textdata

Re: [PATCH] x86 (Linux Tiny): configure out support for some processors

2008-02-09 Thread Simon Holm Thøgersen
0 419 1a3 nexgen.o 41 312 0 353 161 umc.o 86312700 0 113312c43 (TOTALS) I don't think the code changes in the patch do much with respect to size. Simon Holm Thøgersen -- To unsubscribe from this list: send the line "unsubscribe linux-ke

Re: [PATCH] Fix compilation of powerpc asm-offsets.c with old gcc

2008-02-08 Thread Simon Holm Thøgersen
[1] http://git.kernel.org/ [2] http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=summary Simon Holm Thøgersen -- 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://v

Re: nfs server patches for 2.6.25

2008-01-27 Thread Simon Holm Thøgersen
d(&xprt->xpt_ref.refcount) < 2); + if (test_bit(XPT_TEMP, &xprt->xpt_flags)) serv->sv_tmpcnt--; svc_xprt_put(&svsk->sk_xprt); should have been svc_xprt_put(&xprt); There might be more errors in the

Re: [Btrfs-devel] [ANNOUNCE] Btrfs v0.10 (online growing/shrinking, ext3 conversion, and more)

2008-01-16 Thread Simon Holm Thøgersen
kernels without acl by Yan Zheng on the btrfs-devel list http://oss.oracle.com/pipermail/btrfs-devel/2008-January/000386.html Simon Holm Thøgersen -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo i

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

2007-12-27 Thread Simon Holm Thøgersen
_info->mask = CDC_CLOSE_TRAY | CDC_OPEN_TRAY | > + CDC_LOCK | CDC_SELECT_DISC; > } > > static void __devinit probe_gdrom_setupdisk(void) > @@ -671,7 +696,7 @@ > { > int err; > if (gdrom_execute_diagnostic() != 1) { > - pri

Re: [PATCH 3/3] net: wireless: bcm43xx: big_buffer_sem semaphore to mutex

2007-12-14 Thread Simon Holm Thøgersen
e to give you some more feedback > > about your shiny new code. > > This user did get the following messages in dmesg: > > b43err(dev->wl, "Firmware file \"%s\" not found " >"or load failed.\n", path); So the question seems to be why b

[PATCH] Fix casting on architectures with 32-bit pointers/longs.

2007-12-08 Thread Simon Holm Thøgersen
tom's simplified the ABI > considerably. I've put a trivial example in a syslet-userspace git tree: > > git://git.kernel.org/pub/scm/linux/kernel/git/zab/syslets-userspace.git > Signed-of-by: Simon Holm Thøgersen <[EMAIL PROTECTED]> --- diff --git

Re: [PATCH 1/6] indirect: use asmlinkage in i386 syscall table prototype

2007-12-08 Thread Simon Holm Thøgersen
regs->ecx, > regs->edx, regs->esi, > regs->edi, regs->ebp); Simon Holm Thøgersen -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body o

Re: programs vanish with 2.6.22+

2007-12-07 Thread Simon Holm Thøgersen
n my own... > If you feel like you are able to tell whether a specific kernel version is buggy or not, you might want to try to bisect it. See Documentation/BUG-HUNTING in the sources, and please ask. Simon Holm Thøgersen -- To unsubscribe from this list: send the line "unsubscribe l

Re: [PATCH 0/2] fix the long standing exec vs kill race

2007-12-02 Thread Simon Holm Thøgersen
lved (?). > > exec() from the signal handler doesn't do sys_sigreturn(), so we don't unblock > the signal, and it remains blocked after exec(). > > Hmm. Is this linux bug, or application bug? Good question. I haven't been able to find something in the documentation f

Re: [PATCH 0/2] fix the long standing exec vs kill race

2007-12-02 Thread Simon Holm Thøgersen
e idea is promising. > I have an issue that sounds related, but I might be completely off. I would expect the simple attached program to keep receiving the same signal, i.e. respond to killall signal-exec -s SIGHUP I tried your patches, but they didn't help. Any ideas? Simon

Re: Possible bug from kernel 2.6.22 and above

2007-11-21 Thread Simon Holm Thøgersen
> >> wp : yes > >> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge > >> mca cmov > >> pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt > >> pdpe1gb rdtscp > >> lm 3dnowext 3dnow constant_tsc

Re: [patch] raid6: generate raid6tables.c with proper style

2007-10-26 Thread Simon Holm Thøgersen
(i,j+k)); > +if (k) > + printf(" "); > + printf("0x%02x,", gfmul(i,j+k)); What happened with the coding style here? Simon Holm Thøgersen - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to

[PATCH] Remove pointless NULL pointer check in drivers/usb/storage/shuttle_usbat.c.

2007-09-06 Thread Simon Holm Thøgersen
tir, 04 09 2007 kl. 23:06 +0200, skrev Jens Axboe: > On Tue, Sep 04 2007, Simon Holm Thøgersen wrote: > > tir, 04 09 2007 kl. 13:06 +0200, skrev Jens Axboe: > > > On Tue, Sep 04 2007, Micah Gruber wrote: > > > > This patch fixes a potential null dereference bug wh

Re: [PATCH] Fix a potential NULL pointer dereference in usbat_check_status() in drivers/usb/storage/shuttle_usbat.c

2007-09-04 Thread Simon Holm Thøgersen
return USB_STOR_TRANSPORT_ERROR; is utterly pointless. Simon Holm Thøgersen - 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 at http://www.tux.org/lkml/