linux-kernel mailing list

FromSubjectsort iconDate
The Camelot Group
Congratulation Winner
You won the sum of(£1,350,973.00) from our monthly PROGRAM,you are hereby advice to get back to us, to claimed your prize.Contact Mr.Juan Walker Email:contact_edisonwalker@yahoo.co.uk Claims Requirements:1.full name:2.Home Address:3.Age:4.Sex:5:Phone Number. --
Apr 14, 7:42 pm 2008
Mathieu Desnoyers
[RFC PATCH] x86 NMI-safe INT3 and Page Fault (v2)
(CCing lkml) Implements an alternative iret with popf and return so trap and exception handlers can return to the NMI handler without issuing iret. iret would cause NMIs to be reenabled prematurely. x86_32 uses popf and far return. x86_64 has to copy the return instruction pointer to the top of the previous stack, issue a popf, loads the previous esp and issue a near return (ret). It allows placing immediate values (and therefore optimized trace_marks) in NMI code since returning from a breakpoin...
Apr 14, 7:05 pm 2008
Harvey Harrison
[PATCH-mm 15/15] ncpfs: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- fs/ncpfs/ncplib_kernel.c | 39 +++++++++++++++++++-------------------- 1 files changed, 19 insertions(+), 20 deletions(-) diff --git a/fs/ncpfs/ncplib_kernel.c b/fs/ncpfs/ncplib_kernel.c index df6d60b..1567860 100644 --- a/fs/ncpfs/ncplib_kernel.c +++ b/fs/ncpfs/ncplib_kernel.c @@ -102,48 +102,47 @@ static inline void ncp_init_request_s(struct ncp_server *server, int subfunction } static inline char * - ncp_reply_data(...
Apr 14, 6:48 pm 2008
Al Viro Apr 14, 7:02 pm 2008
Harvey Harrison
Re: [PATCH-mm 15/15] ncpfs: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- Thanks to Al Viro for pointing out I sent the wrong mbox. fs/ncpfs/ncplib_kernel.c | 39 +++++++++++++++++++-------------------- 1 files changed, 19 insertions(+), 20 deletions(-) diff --git a/fs/ncpfs/ncplib_kernel.c b/fs/ncpfs/ncplib_kernel.c index df6d60b..476d980 100644 --- a/fs/ncpfs/ncplib_kernel.c +++ b/fs/ncpfs/ncplib_kernel.c @@ -102,48 +102,47 @@ static inline void ncp_init_request_s(struct ncp_server *server, int...
Apr 14, 7:11 pm 2008
Harvey Harrison
[PATCH-mm 14/15] isofs: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- fs/isofs/isofs.h | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fs/isofs/isofs.h b/fs/isofs/isofs.h index d1bdf8a..ccbf72f 100644 --- a/fs/isofs/isofs.h +++ b/fs/isofs/isofs.h @@ -78,29 +78,29 @@ static inline int isonum_712(char *p) } static inline unsigned int isonum_721(char *p) { - return le16_to_cpu(get_unaligned((__le16 *)p)); + return get_unaligned_le16(p); } static inline u...
Apr 14, 6:48 pm 2008
Harvey Harrison
[PATCH-mm 13/15] hfsplus: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- fs/hfsplus/wrapper.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/hfsplus/wrapper.c b/fs/hfsplus/wrapper.c index 72cab78..175d08e 100644 --- a/fs/hfsplus/wrapper.c +++ b/fs/hfsplus/wrapper.c @@ -47,7 +47,7 @@ static int hfsplus_read_mdb(void *bufptr, struct hfsplus_wd *wd) return 0; wd->ablk_start = be16_to_cpu(*(__be16 *)(bufptr + HFSP_WRAPOFF_ABLKSTART)); - extent = be32_to_cpu(get_...
Apr 14, 6:48 pm 2008
Harvey Harrison
[PATCH-mm 12/15] fat: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- fs/fat/inode.c | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 53f3cf6..8476993 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -1215,8 +1215,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, brelse(bh); goto out_invalid; } - logical_sector_size = - le16_to_cpu(get_unaligned((__le16 *)&b->sector_size)); + logical_...
Apr 14, 6:48 pm 2008
Harvey Harrison
[PATCH-mm 11/15] video: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/video/matrox/matroxfb_misc.c | 28 ++++++++++++++-------------- drivers/video/metronomefb.c | 9 +++------ 2 files changed, 17 insertions(+), 20 deletions(-) diff --git a/drivers/video/matrox/matroxfb_misc.c b/drivers/video/matrox/matroxfb_misc.c index ab7fb50..cfb5205 100644 --- a/drivers/video/matrox/matroxfb_misc.c +++ b/drivers/video/matrox/matroxfb_misc.c @@ -522,8 +522,6 @@ static void parse_bios(uns...
Apr 14, 6:48 pm 2008
Al Viro
Re: [PATCH-mm 11/15] video: Use get/put_unaligned_* helpers
Why not simply change definitions of those? --
Apr 14, 7:05 pm 2008
Harvey Harrison
Re: [PATCH-mm 11/15] video: Use get/put_unaligned_* helpers
Could have done, but seeing the number of times it was used in the file and what the code looked like with it simply replaced, I went for eliminating the macro. If you'd prefer a two-patch, replace in macro/replace macro entirely I could do so. Harvey --
Apr 14, 7:13 pm 2008
Harvey Harrison
[PATCH-mm 10/15] usb: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/usb/atm/ueagle-atm.c | 48 +++++++++++++++++++-------------------- drivers/usb/class/cdc-acm.c | 2 +- drivers/usb/gadget/goku_udc.c | 2 +- drivers/usb/gadget/rndis.c | 40 ++++++++++++-------------------- drivers/usb/gadget/usbstring.c | 2 +- drivers/usb/host/ehci-hub.c | 2 +- drivers/usb/host/ohci-hub.c | 4 +- 7 files changed, 44 insertions(+), 56 deletions(-) diff --git a/drive...
Apr 14, 6:48 pm 2008
Harvey Harrison
[PATCH-mm 09/15] pcmcia: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/pcmcia/cistpl.c | 39 +++++++++++++++------------------------ 1 files changed, 15 insertions(+), 24 deletions(-) diff --git a/drivers/pcmcia/cistpl.c b/drivers/pcmcia/cistpl.c index 06a85d7..3637953 100644 --- a/drivers/pcmcia/cistpl.c +++ b/drivers/pcmcia/cistpl.c @@ -402,15 +402,6 @@ EXPORT_SYMBOL(pcmcia_replace_cis); ======================================================================*/ -static inline...
Apr 14, 6:48 pm 2008
Harvey Harrison
[PATCH-mm 08/15] wireless: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/net/wireless/airo.c | 2 +- drivers/net/wireless/ath5k/base.c | 8 +----- drivers/net/wireless/b43/main.c | 2 +- drivers/net/wireless/b43legacy/main.c | 2 +- drivers/net/wireless/iwlwifi/iwl-3945.c | 32 +++++++++++++----------------- drivers/net/wireless/libertas/scan.c | 2 +- drivers/net/wireless/zd1211rw/zd_usb.c | 4 +- 7 files changed, 22 insertions(+), 30 deleti...
Apr 14, 6:47 pm 2008
Harvey Harrison
[PATCH-mm 06/15] mmc: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/mmc/host/mmc_spi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c index 365024b..3550858 100644 --- a/drivers/mmc/host/mmc_spi.c +++ b/drivers/mmc/host/mmc_spi.c @@ -340,7 +340,7 @@ checkstatus: /* SPI R3, R4, or R7 == R1 + 4 bytes */ case MMC_RSP_SPI_R3: - cmd->resp[1] = be32_to_cpu(get_unaligned((u32 *)cp)); + cmd->resp...
Apr 14, 6:47 pm 2008
Harvey Harrison
[PATCH-mm 07/15] net: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/net/e100.c | 2 +- drivers/net/hamachi.c | 2 +- drivers/net/irda/mcs7780.c | 2 +- drivers/net/irda/stir4200.c | 2 +- drivers/net/tulip/de4x5.c | 35 +++++++++++++++++------------------ drivers/net/tulip/de4x5.h | 2 +- drivers/net/tulip/tulip.h | 7 ++----- drivers/net/tulip/tulip_core.c | 10 +++++----- drivers/net/yellowfin.c | 2 +- 9 files...
Apr 14, 6:47 pm 2008
Harvey Harrison
[PATCH-mm 05/15] radio: Use get/put_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/media/radio/radio-si470x.c | 16 ++++++---------- 1 files changed, 6 insertions(+), 10 deletions(-) diff --git a/drivers/media/radio/radio-si470x.c b/drivers/media/radio/radio-si470x.c index 649f14d..1e9678e 100644 --- a/drivers/media/radio/radio-si470x.c +++ b/drivers/media/radio/radio-si470x.c @@ -513,8 +513,7 @@ static int si470x_get_register(struct si470x_device *radio, int regnr) retval = si470x_get_report(radi...
Apr 14, 6:47 pm 2008
Harvey Harrison
[PATCH-mm 04/15] input: Use get_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/input/tablet/aiptek.c | 16 ++++++++-------- drivers/input/tablet/gtco.c | 14 +++++++------- drivers/input/tablet/kbtab.c | 4 ++-- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/drivers/input/tablet/aiptek.c b/drivers/input/tablet/aiptek.c index 94683f5..6266db8 100644 --- a/drivers/input/tablet/aiptek.c +++ b/drivers/input/tablet/aiptek.c @@ -527,9 +527,9 @@ static void aiptek_irq(struct u...
Apr 14, 6:47 pm 2008
Harvey Harrison
[PATCH-mm 03/15] hid-core: Use get_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/hid/hid-core.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index f0b00ec..d76fec3 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -606,7 +606,7 @@ static u8 *fetch_item(__u8 *start, __u8 *end, struct hid_item *item) case 2: if ((end - start) < 2) return NULL; - item->data.u16 = le16_to_cpu(get_unal...
Apr 14, 6:47 pm 2008
Harvey Harrison
[PATCH-mm 02/15] char: Use get_unaligned_* helpers
Remove unnecessary temp variable from_buf in snsc_event.c Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/char/rocket_int.h | 2 +- drivers/char/snsc_event.c | 10 +++------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/drivers/char/rocket_int.h b/drivers/char/rocket_int.h index b01d381..143cc43 100644 --- a/drivers/char/rocket_int.h +++ b/drivers/char/rocket_int.h @@ -55,7 +55,7 @@ static inline void sOutW(unsigned short port, unsigned short...
Apr 14, 6:47 pm 2008
Harvey Harrison
[PATCH-mm 01/15] drivers/block: Use get_unaligned_* helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- drivers/block/aoe/aoecmd.c | 24 ++++++++++++------------ drivers/block/aoe/aoenet.c | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c index d00293b..8fc429c 100644 --- a/drivers/block/aoe/aoecmd.c +++ b/drivers/block/aoe/aoecmd.c @@ -668,16 +668,16 @@ ataid_complete(struct aoedev *d, struct aoetgt *t, unsigned char *id) u16 n; /* word...
Apr 14, 6:47 pm 2008
Pavel Machek
w35und: add softmac interface
Hi! This adds softmac interface to w35und driver... so it becomes monster driver with _two_ interfaces. If you initialize hardmac interface, then softmac starts to works... it associates to AP, and can even ping. (Or at least I hope so... it was somewhat too easy.) Pavel diff --git a/drivers/net/wireless/winbond/winbondport/adapter.h b/drivers/net/wireless/winbond/winbondport/adapter.h index 64585c5..81e7bd8 100644 --- a/drivers/net/wireless/winbond/winbondport/adapter.h +++ b/dr...
Apr 14, 6:47 pm 2008
devzero
Re: sata io freeze, 2.6.18 and also 2.6.24 [the real culprit]
no hurry - i don`t want put any pressure on you, i just like help hunting bugs. :) _________________________________________________________________________ In 5 Schritten zur eigenen Homepage. Jetzt Domain sichern und gestalten! Nur 3,99 EUR/Monat! http://www.maildomain.web.de/?mc=021114 --
Apr 14, 6:31 pm 2008
Paul Collins
ata2: SATA link down (SStatus 611 SControl 300)
I just noticed that my optical drive no longer works with 2.6.25-rc9. It works with 2.6.24.3. git bisect claims the culprit is c729072459446885c5c200137de1db32da5db4dc ("ata_piix: implement SIDPR SCR access"). $ diff -u cd.{ok,no} | grep '^.ata' ata_piix 0000:00:1f.2: version 2.12 -ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ] +ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x20e0 irq 14 ata2: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0...
Apr 14, 5:48 pm 2008
devzero
Re: sata io freeze, 2.6.18 and also 2.6.24 [the real culprit]
so - you told, you have your disk attached to this controller: 00:0f.0 RAID bus controller: VIA Technologies, Inc. VIA VT6420 SATA RAID Controller (rev 80) Subsystem: Micro-Star International Co., Ltd. Unknown device 0430 Flags: bus master, medium devsel, latency 32, IRQ 16 I/O ports at ec00 [size=8] I/O ports at e800 [size=4] I/O ports at e400 [size=8] I/O ports at e000 [size=4] I/O ports at dc00 [size=16] I/O ports at d800 [size=256] Capabilities: <access denied> and use sata...
Apr 14, 6:03 pm 2008
Luis Sousa
Re: sata io freeze, 2.6.18 and also 2.6.24 [the real culprit]
Correct. But I'm not sure it's an exclusive i/o thing. I've had the box crash in situations where I don't think heavy i/o is involved.. for instance, it I'm actually running 2.6.25-rc7-git6 now. Hmm, I have no serial consoles here, and my spare box is dead. Unless I can attach netconsole to a windows box. I can probably crash it in console mode, without Xorg. Then I hope something There is definitely a random element in it. But I can reliably crash it. Just trigger some CPU and i/o...
Apr 14, 6:24 pm 2008
David Miller
Re: sparc64 2.6.25-rc7 bug: kswapd oops
From: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Date: Mon, 14 Apr 2008 22:19:03 +0200 This one looks like it might not be sparc64 specific, so CC:'ing --
Apr 14, 5:04 pm 2008
Christian Schmidt
ptrace (PTRACE_GETREGS, ...) discrepancy for x86 emulation o...
Hi all, I'm currently toying around a bit with the ptrace api on linux. First, a few specs: Kernel 2.6.24.4, glibc 2.7, x86_64 arch. I am using the 32bit emulation on this to debug a program "the old way", putting "int3" opcodes into the code via PTRACE_POKE and waiting for the trap. In theory, I should than use PTRACE_GETREGS, decrement the EIP register, restore the original opcode, write the registers back with PTRACE_SETREGS, and the program should continue. What I see instead is that...
Apr 14, 4:21 pm 2008
Andreas Schwab
Re: ptrace (PTRACE_GETREGS, ...) discrepancy for x86 emulati...
You are using the wrong structure. The right one is struct user_regs_struct defined in <sys/user.h>. Andreas. -- Andreas Schwab, SuSE Labs, schwab@suse.de SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." --
Apr 14, 5:08 pm 2008
Adrian Bunk
[2.6 patch] serial/8250_gsc.c: add MODULE_LICENSE
This patch adds the missing MODULE_LICENSE("GPL"). Signed-off-by: Adrian Bunk <bunk@kernel.org> --- c0d845566182db3fc650dcfa35700f84e82bbae7 diff --git a/drivers/serial/8250_gsc.c b/drivers/serial/8250_gsc.c index 4eb7437..0416ad3 100644 --- a/drivers/serial/8250_gsc.c +++ b/drivers/serial/8250_gsc.c @@ -119,3 +119,5 @@ int __init probe_serial_gsc(void) } module_init(probe_serial_gsc); + +MODULE_LICENSE("GPL"); --
Apr 14, 3:56 pm 2008
Alan Cox
Re: [2.6 patch] serial/8250_gsc.c: add MODULE_LICENSE
On Mon, 14 Apr 2008 22:56:08 +0300 Acked-by: Alan Cox <alan@redhat.com> --
Apr 14, 5:31 pm 2008
Adrian Bunk
[2.6 patch] xtensa: don't offer PARPORT_PC
This patch fixes the following compile error: <-- snip --> ... CC [M] drivers/parport/parport_pc.o /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/parport/parport_pc.c:67:25: error: asm/parport.h: No such file or directory /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/parport/parport_pc.c: In function 'parport_pc_find_ports': /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/parport/parport_pc.c:3215: error: implicit declaration of function 'parport_pc_find_nonpci_ports' make[3]:...
Apr 14, 3:55 pm 2008
Alan Cox
Re: [2.6 patch] xtensa: don't offer PARPORT_PC
On Mon, 14 Apr 2008 22:55:51 +0300 If xtensa has PCI then if you fix up the headers so the PCI stuff works we'll be in a better shape. --
Apr 14, 5:31 pm 2008
Adrian Bunk
Re: [2.6 patch] xtensa: don't offer PARPORT_PC
The only merged platform does not support PCI, and I don't have any xtensa hardware for knowing what to put there. Chris? cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed --
Apr 14, 6:13 pm 2008
Chris Zankel
Re: [2.6 patch] xtensa: don't offer PARPORT_PC
Hi Adrian, Most of the boards with Xtensa don't have PCI, and the PCI bridge on the two boards I know have PCI are more or less broken. One (with a V3) doesn't support byte/word accesses and the other one has broken PCI-Master to main memory connection. I'll work on the one that has only 32-bit access and will try to fix it. Thanks, -Chris --
Apr 14, 7:00 pm 2008
Rogan Dawes
Re: [2.6 patch] xtensa: don't offer PARPORT_PC
Pardon a possibly stupid question here, but would it not make more sense to code the architectures for which these various devices *are* possible, rather than requiring each architecture to go through the entire config file and add their own "we don't do this" for many entries? As seen, it is easy for them to be missed, hence all these recent patches. The way I look at it, it is a lot easier to require that the arch maintainer adds specific entries to get their particular hardware working,...
Apr 14, 4:33 pm 2008
Alan Cox
Re: [2.6 patch] xtensa: don't offer PARPORT_PC
For any with PCI bus the right fix is to add the header files. -- -- "Alan, I'm getting a bit worried about you." -- Linus Torvalds --
Apr 14, 5:34 pm 2008
Adrian Bunk
[2.6 patch] xtensa: don't offer CONFIG_GEN_RTC
This patch fixes the following compile error: <-- snip --> ... CC [M] drivers/char/genrtc.o /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/char/genrtc.c:58:21: error: asm/rtc.h: No such file or directory ... make[3]: *** [drivers/char/genrtc.o] Error 1 <-- snip --> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- 8efde38c14112370e1a2cdbe64a99c0c50f18f4f diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 5dc5794..da98c9a 100644 --- a/drivers/char/...
Apr 14, 3:55 pm 2008
Adrian Bunk
[2.6 patch] xtensa: don't offer CONFIG_RTC
This patch fixes the following compile error: <-- snip --> ... CC [M] drivers/char/rtc.o In file included from /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/char/rtc.c:70: /home/bunk/linux/kernel-2.6/git/linux-2.6/include/linux/mc146818rtc.h:16:59: error: asm/mc146818rtc.h: No such file or directory ... make[3]: *** [drivers/char/rtc.o] Error 1 <-- snip --> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- 58a9730328adf21f2b76b8ab3a586da2d7e8bcfa diff --git a...
Apr 14, 3:55 pm 2008
Adrian Bunk
[2.6 patch] xtensa: don't offer ATA
Trying to build libata for xtensa fails with the following error: <-- snip --> ... CC [M] drivers/ata/libata-core.o /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/ata/libata-core.c: In function 'ata_devchk': /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/ata/libata-core.c:1034: error: implicit declaration of function 'iowrite8' /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/ata/libata-core.c:1043: error: implicit declaration of function 'ioread8' /home/bunk/linux/kernel-2.6/gi...
Apr 14, 3:55 pm 2008
Adrian Bunk
[2.6 patch] xtensa: remove the nonexisting highmem support
Trying to compile an xtensa kernel with CONFIG_HIGHMEM=y fails early and hard: <-- snip --> ... CC init/main.o In file included from /home/bunk/linux/kernel-2.6/git/linux-2.6/include/linux/pagemap.h:10, from /home/bunk/linux/kernel-2.6/git/linux-2.6/include/linux/buffer_head.h:13, from /home/bunk/linux/kernel-2.6/git/linux-2.6/init/main.c:53: /home/bunk/linux/kernel-2.6/git/linux-2.6/include/linux/highmem.h: In function 'clear_user_highpage': ...
Apr 14, 3:55 pm 2008
Davide Libenzi
[patch] F_GETPATH implementation
This is a small patch to support BSD's F_GETPATH on Linux. I removed the unneeded export, like Arnd pointed out. IMO the simplicity of the patch and the portability advantages makes it worth it. I'll leave to others to further comments it. Built and tested on my box against 2.6.25-rc9. Simple test program here: http://www.xmailserver.org/fgetpath-test.c Signed-off-by: Davide Libenzi <davidel@xmailserver.org> - Davide --- fs/fcntl.c | 26 ++++++++++++++++++...
Apr 14, 3:40 pm 2008
Linus Torvalds
Re: [patch] F_GETPATH implementation
This won't work. Different architectures have different F_xyzzy numbers, and 12 is already used by various ones (it's F_SETOWN in asm-parisc/fcntl.h, for example). I think you'd have to do it in terms of F_LINUX_SPECIFIC_BASE, like F_NOTIFY is done, for example. That way you avoid these issues. Linus --
Apr 14, 6:48 pm 2008
Davide Libenzi
Re: [patch] F_GETPATH implementation
Right. Will re-munge ... - Davide --
Apr 14, 7:09 pm 2008
Roland McGrath
[PATCH] x86_64 vDSO: compile with -g
The 64-bit vDSO's sources are compiled with -g0 for no good reason. Using -g when enabled lets their separate debug files be used at runtime via build ID matching, same as we can see 32-bit vDSO's assembly sources. Signed-off-by: Roland McGrath <roland@redhat.com> --- arch/x86/vdso/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile index 0a8f474..e5745a6 100644 --- a/arch/x86/vdso/Makefile +++ b/arch/x86/vd...
Apr 14, 3:19 pm 2008
Sam Ravnborg
Re: [PATCH] x86_64 vDSO: compile with -g
Looks good. Acked-by: Sam Ravnborg <sam@ravnborg.org> [I have not tested it] Sam --
Apr 14, 4:59 pm 2008
Adrian Bunk
[2.6 patch] video/pvrusb2/pvrusb2-hdw.c cleanups
This patch contains the following cleanups: - make the following needlessly global function static: - pvr2_hdw_set_cur_freq() - #if 0 the following unused global functions: - pvr2_hdw_get_state_name() - pvr2_hdw_get_debug_info_unlocked() - pvr2_hdw_get_debug_info_locked() Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 31 Mar 2008 drivers/media/video/pvrusb2/pvrusb2-hdw.c | 6 +++++- drivers/media/video/pvrusb2/pvrusb2-hdw.h | 3 --- ...
Apr 14, 2:41 pm 2008
Adrian Bunk
[2.6 patch] make ipmi_alloc_recv_msg() static
This patch makes the needlessly global ipmi_alloc_recv_msg() static. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 31 Mar 2008 2a99aad0e15f482da6e0f34fa3005d4574a1a8a9 diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c index 32b2b22..63171d7 100644 --- a/drivers/char/ipmi/ipmi_msghandler.c +++ b/drivers/char/ipmi/ipmi_msghandler.c @@ -3789,7 +3789,7 @@ static void free_recv_msg(struct ipmi_recv_msg *msg) kfree(ms...
Apr 14, 2:41 pm 2008
Adrian Bunk
[2.6 patch] include/linux/isdn.h: remove dead code
This patch remove the usage of a nonexisting kconfig variable. Reported-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 31 Mar 2008 - 1 Mar 2008 include/linux/isdn.h | 6 ------ 1 file changed, 6 deletions(-) 68dcdff8287b565d34ba8b3bb1a608a0a0b3a3fd foobar diff --git a/include/linux/isdn.h b/include/linux/isdn.h index 9cb2855..44cd663 100644 --- a/include/linux/isdn.h +++ b/include/linux/isdn....
Apr 14, 2:40 pm 2008
Adrian Bunk
[RFC: 2.6 patch] remove irlan_eth_send_gratuitous_arp()
Even kernel 2.2.26 (sic) already contains the #undef CONFIG_IRLAN_SEND_GRATUITOUS_ARP with the comment "but for some reason the machine crashes if you use DHCP". Either someone finally looks into this or it's simply time to remove this dead code. Reported-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 31 Mar 2008 - 1 Mar 2008 include/net/irda/irlan_eth.h | 1 - net/irda/irlan/irlan_common....
Apr 14, 2:40 pm 2008
previous daytodaynext day
April 13, 2008April 14, 2008April 15, 2008