linux-kernel mailing list

FromSubjectsort iconDate
Mathieu Desnoyers
[PATCH] spufs support multiple probes markers
Update spufs to the new linux kernel markers API, which supports connecting more than one probe to a single marker. (compile-tested only) Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: Christoph Hellwig <hch@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: Steven Rostedt <rostedt@goodmis.org> CC: Andrew Morton <akpm@linux-foundation.org> --- arch/powerpc/platforms/cell/spufs/sputrace.c | 31 +++++++++------------------ 1 file c...
Feb 12, 7:56 pm 2008
Jody Belka
[PATCH] x86: fixup machine_ops reboot_{32|64}.c unification ...
Please cc on any replies, thanks. --- When reboot_32.c and reboot_64.c were unified (commit 4d022e35fd...), the machine_ops code was broken, leading to xen pvops kernels failing to properly halt/poweroff/reboot etc. This fixes that up. Signed-off-by: Jody Belka <knew-linux@pimb.org> --- arch/x86/kernel/reboot.c | 46 ++++++++++++++++++++++++++++++++++++---------- 1 files changed, 36 insertions(+), 10 deletions(-) diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 5...
Feb 12, 7:37 pm 2008
Jody Belka
2.6.25-rc1 xen pvops regression
Hi all, I thought I'd try out 2.6.25-rc1 as a xen 32-bit pae domU the other day. Unfortunately, I didn't get very far very fast, as the domain just crashed immediately upon booting, without any direct feedback (I did have messages on the xen message buffer, which helped). This even with earlyprintk turned on. After a long, arduous journey, I managed to track this down to the following: ---------- commit 551889a6e2a24a9c06fd453ea03b57b7746ffdc0 x86: construct 32-bit boot time page tables in n...
Feb 12, 7:54 pm 2008
Jeff Garzik
[PATCH] gdth: convert to PCI hotplug API
Signed-off-by: Jeff Garzik <jgarzik@redhat.com> --- drivers/scsi/gdth.c | 143 +++++++++++++++++++++++++++++++--------------------- 1 file changed, 86 insertions(+), 57 deletions(-) 06196f50915da97bb897495863f9f084d785c1e4 diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c index c825239..1b53e92 100644 --- a/drivers/scsi/gdth.c +++ b/drivers/scsi/gdth.c @@ -595,85 +595,107 @@ static int __init gdth_search_isa(ulong32 bios_adr) #endif /* CONFIG_ISA */ #ifdef CONFIG_PCI -stati...
Feb 12, 7:49 pm 2008
Rafael J. Wysocki
[PATCH] ACPI suspend: Execute _WAK with the right argument
From: Rafael J. Wysocki <rjw@sisk.pl> The _WAK global ACPI control method has to be called with the argument representing the sleep state being exited. Make it happen. Special thanks to Mirco Tischler <mt-ml@gmx.de> for reporting the problem and debugging. Reported-by: Mirco Tischler <mt-ml@gmx.de> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> --- drivers/acpi/hardware/hwsleep.c | 1 + 1 file changed, 1 insertion(+) Index: linux-2.6/drivers/acpi/hardware/hwsle...
Feb 12, 7:32 pm 2008
Pavel Machek Feb 12, 7:45 pm 2008
Rafael J. Wysocki
Re: [PATCH] ACPI suspend: Execute _WAK with the right argument
Sure, it certainly is. The bug has been breaking suspend on people's boxes already. Thanks, --
Feb 12, 7:49 pm 2008
Felix Marti
RE: [ofa-general] Re: Demand paging for memory regions
That is correct, not a change we can make for T3. We could, in theory, deal with changing mappings though. The change would need to be synchronized though: the VM would need to tell us which mapping were about to change and the driver would then need to disable DMA to/from --
Feb 12, 7:14 pm 2008
marcin.slusarz
[PATCHSET] [bl]e*_add_cpu conversions
From: Marcin Slusarz <marcin.slusarz@gmail.com> Hi This patchset converts big/little_endian_variable = cpu_to_[bl]eX([bl]eX_to_cpu(big/little_endian_variable) + expression_in_cpu_byteorder); to: [bl]eX_add_cpu(&big/little_endian_variable, expression_in_cpu_byteorder); All patches were generated by spatch, then reviewed and fixed to follow coding style. Semantic patch: @@ expression *X; expression Y; @@ ( - *X = cpu_to_le64(le64_to_cpu(*X) + Y); + le64_add_cpu(X, Y); ...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] ufs: [bl]e*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: big/little_endian_variable = cpu_to_[bl]eX([bl]eX_to_cpu(big/little_endian_variable) + expression_in_cpu_byteorder); with: [bl]eX_add_cpu(&big/little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Evgeniy Dushistov <dushistov@mail.ru> --- fs/ufs/swab.h | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 de...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] sysv: [bl]e*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: big/little_endian_variable = cpu_to_[bl]eX([bl]eX_to_cpu(big/little_endian_variable) + expression_in_cpu_byteorder); with: [bl]eX_add_cpu(&big/little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Christoph Hellwig <hch@infradead.org> --- fs/sysv/sysv.h | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] reiserfs: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: reiserfs-dev@namesys.com Cc: reiserfs-devel@vger.kernel.org --- fs/reiserfs/objectid.c | 5 ++--- fs/reiserfs/stree.c | 3 +-- 2 files ...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] quota: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Jan Kara <jack@suse.cz> --- fs/quota_v2.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/quota_v2.c b/fs/q...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] ocfs2: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Mark Fasheh <mark.fasheh@oracle.com> Cc: Kurt Hackel <kurt.hackel@oracle.com> Cc: ocfs2-devel@oss.oracle.com --- fs/ocfs2/dir.c ...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] ntfs: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Anton Altaparmakov <aia21@cantab.net> Cc: linux-ntfs-dev@lists.sourceforge.net --- fs/ntfs/upcase.c | 5 ++--- 1 files changed, 2 insert...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] jfs: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: shaggy@austin.ibm.com Cc: jfs-discussion@lists.sourceforge.net --- fs/jfs/jfs_dmap.c | 11 +++++------ fs/jfs/jfs_imap.c | 15 ++++++-------...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] ext4: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: linux-ext4@vger.kernel.org Cc: sct@redhat.com Cc: Andrew Morton <akpm@linux-foundation.org> Cc: adilger@clusterfs.com Cc: "Theodore Ts'o" &l...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] ext2: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: linux-ext4@vger.kernel.org --- fs/ext2/ialloc.c | 12 ++++-------- fs/ext2/super.c | 2 +- fs/ext2/xattr.c | 9 +++------ 3 files chan...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] scsi: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: linux-scsi@vger.kernel.org Cc: aacraid@adaptec.com Cc: James.Bottomley@HansenPartnership.com --- drivers/scsi/aacraid/commsup.c | 2 +- drive...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] ipw2200: le*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: little_endian_variable = cpu_to_leX(leX_to_cpu(little_endian_variable) + expression_in_cpu_byteorder); with: leX_add_cpu(&little_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Zhu Yi <yi.zhu@intel.com> Cc: John W. Linville <linville@tuxdriver.com> Cc: linux-wireless@vger.kernel.org --- drivers/net/wireless/i...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] hfs/hfsplus: be*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: big_endian_variable = cpu_to_beX(beX_to_cpu(big_endian_variable) + expression_in_cpu_byteorder); with: beX_add_cpu(&big_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Roman Zippel <zippel@linux-m68k.org> --- fs/hfs/mdb.c | 2 +- fs/hfsplus/super.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] gfs2: be*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: big_endian_variable = cpu_to_beX(beX_to_cpu(big_endian_variable) + expression_in_cpu_byteorder); with: beX_add_cpu(&big_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Steven Whitehouse <swhiteho@redhat.com> Cc: cluster-devel@redhat.com --- fs/gfs2/dir.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] affs: be*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: big_endian_variable = cpu_to_beX(beX_to_cpu(big_endian_variable) + expression_in_cpu_byteorder); with: beX_add_cpu(&big_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Roman Zippel <zippel@linux-m68k.org> --- fs/affs/file.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/affs/file.c ...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] infiniband: be*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: big_endian_variable = cpu_to_beX(beX_to_cpu(big_endian_variable) + expression_in_cpu_byteorder); with: beX_add_cpu(&big_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Roland Dreier <rolandd@cisco.com> Cc: Sean Hefty <sean.hefty@intel.com> Cc: Hal Rosenstock <hal.rosenstock@gmail.com> --- drivers/infini...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] ieee 1394: be*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: big_endian_variable = cpu_to_beX(beX_to_cpu(big_endian_variable) + expression_in_cpu_byteorder); with: beX_add_cpu(&big_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Ben Collins <ben.collins@ubuntu.com> Cc: Stefan Richter <stefanr@s5r6.in-berlin.de> --- drivers/ieee1394/csr.c | 6 ++---- 1 files changed,...
Feb 12, 7:06 pm 2008
marcin.slusarz
[PATCH] crypto: be*_add_cpu conversion
From: Marcin Slusarz <marcin.slusarz@gmail.com> replace all: big_endian_variable = cpu_to_beX(beX_to_cpu(big_endian_variable) + expression_in_cpu_byteorder); with: beX_add_cpu(&big_endian_variable, expression_in_cpu_byteorder); generated with semantic patch Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: David S. Miller <davem@davemloft.net> --- crypto/lrw.c | 2 +- 1 files changed, 1 insertions(+...
Feb 12, 7:06 pm 2008
Mathieu Desnoyers
Cast cmpxchg64 and cmpxchg64_local result for 386 and 486 - ...
Two pairs of parenthesis were missing around the result cast of cmpxchg64 and cmpxchg64_local. This is a rather stupid mistake in "Cast cmpxchg and cmpxchg_local result for 386 and 486". My bad. This fix should be folded with the previous. Sorry for this trivial bug which should have never appeared in the first place. The aim was to fix cmpxchg and cmpxchg_local, which were used in slub. cmpxchg64 and cmpxchg64_local happen to be only used in LTTng currently. Signed-off-by: Mathieu Desnoyers <...
Feb 12, 6:59 pm 2008
Dmitry Baryshkov
Re: [PATCH 1/6] Core driver for WM97xx touchscreens
Hi, You used platform_device_register, but should be using platform_device_add, otherwise you get barfs with 2.6.25-rc1 (device is initialized twice). Also as <sound/driver.h> got deprecated there is no point including it. Patch below -- With best wishes Dmitry From 81b96191eb50837bdf1f437a6f4f05786cc0b49e Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov <dbaryshkov@gmail.com> Date: Wed, 13 Feb 2008 01:55:10 +0300 Subject: [PATCH] wm97xx-core fixes Signed-off-by: Dmitry B...
Feb 12, 6:58 pm 2008
Hiroshi Shimamoto
[RFC v2 PATCH] RTTIME watchdog timer proc interface
From: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com> Introduce new proc interface for RTTIME watchdog. It makes administrator able to set RTTIME watchdog to existing real-time applications without impact. $ echo 10000000 > /proc/<pid>/rttime set RTTIME current value to 10000000, it means 10sec. $ echo "10000000 20000000" > /proc/<pid>/rttime set RTTIME current value to 10000000 and max value to 20000000. And /proc/<pid>/task/<tid>/rttime is also accessible....
Feb 12, 6:41 pm 2008
Tomasz Chmielewski
Re: currently active Linux kernel versions
I would say: a) the kernel your distro provides, b) if you're not using a kernel provided by your distribution, the newest kernel from kernel.org (there are some older, still maintaned kernels with security fixes, too). -- Tomasz Chmielewski http://wpkg.org --
Feb 12, 6:37 pm 2008
Rafael J. Wysocki
Re: [Bug 9944] suspend to ram doesn't work anymore on Thinkp...
There are at least two known suspend regressions, one of which affects the T61 for sure. There's a fix for it, available at: http://lkml.org/lkml/2008/2/11/472 The fix for the second issue is in the works. --
Feb 12, 6:27 pm 2008
Konrad Rzeszutek
[PATH] Add iSCSI iBFT support (v0.4.8)
This patch (v0.4.8) adds /sysfs/firmware/ibft/[initiator|targetX|ethernetX] directories along with text properties which export the the iSCSI Boot Firmware Table (iBFT) structure. What is iSCSI Boot Firmware Table? It is a mechanism for the iSCSI tools to extract from the machine NICs the iSCSI connection information so that they can automagically mount the iSCSI share/target. Currently the iSCSI information is hard-coded in the initrd. The /sysfs entries are read-only one-name-and-value fields. ...
Feb 12, 6:13 pm 2008
Steve Wise
[PATCH 2.6.25] RDMA/cxgb3: Fail loopback connections.
RDMA/cxgb3: Fail loopback connections. The cxgb3 HW and driver don't support loopback RDMA connections. So fail any connection attempt where the destination address is local. Signed-off-by: Steve Wise <swise@opengridcomputing.com> --- drivers/infiniband/hw/cxgb3/iwch_cm.c | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/drivers/infiniband/hw/cxgb3/iwch_cm.c b/drivers/infiniband/hw/cxgb3/iwch_cm.c index e9a08fa..5d82723 100644 --- a/drivers/in...
Feb 12, 6:09 pm 2008
H. Peter Anvin
[PATCH] timeconst.pl: correct reversal of USEC_TO_HZ and HZ_...
The USEC_TO_HZ and HZ_TO_USEC constant sets were mislabelled, with seriously incorrect results. This among other things manifested itself as cpufreq not working when a tickless kernel was configured. Signed-off-by: H. Peter Anvin <hpa@zytor.com> --- kernel/timeconst.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/timeconst.pl b/kernel/timeconst.pl index 62b1287..4146803 100644 --- a/kernel/timeconst.pl +++ b/kernel/timeconst.pl @@ -339,7 +339,7 @@ su...
Feb 12, 5:52 pm 2008
Carlos R. Mafra Feb 12, 6:25 pm 2008
Krzysztof Halasa
E1000 (PCI-E) doesn't work on nforce430, MSI issue.
Hi, Is it a known problem? Linux 2.6.24.2, ASUS M2NPV-MX mobo, nforce 430 based, two PCI-E x1 E1000 cards, 32-bit kernel, default e1000 driver (PCI IDs disabled in e1000e). Don't work by default. "pci=nomsi" fixes the problem. 82572EI Gigabit Ethernet Controller (Copper) (rev 06) Subsystem: PRO/1000 PT Desktop Adapter (8086:10b9 subsystem 8086:1083) grep eth0 /proc/interrupts 20: 1945 1 IO-APIC-fasteoi eth0 (without "pci=nomsi": 221: 0 0 PCI-M...
Feb 12, 5:25 pm 2008
Prakash Punnoor
Re: E1000 (PCI-E) doesn't work on nforce430, MSI issue.
Probably the patch to enable msi bit on the host bridge(?) is still missing= in=20 mainline. I needed that patch to make msi work on my MCP51 system. =2D-=20 (=B0=3D =3D=B0) //\ Prakash Punnoor /\\ V_/ \_V
Feb 12, 5:34 pm 2008
Kok, Auke
Re: E1000 (PCI-E) doesn't work on nforce430, MSI issue.
actually does not fix anything - it just works around it by falling back to legacy and there have been many more reports. unfortunately e1000 cards are one of the few things that actually uses MSI. It works great except for a few problematic motherboards, and the ones mentioned in this thread fall amongst them. Auke --
Feb 12, 6:24 pm 2008
Wagner Ferenc
currently active Linux kernel versions
Hi, which are the "currently active Linux kernel versions" at any point in time? The quote is taken from http://lkml.org/lkml/2008/2/11/29. Or more precisely: which are the "stable" versions I can depend on for a more or less critical server, those that have active security support or receive at least critical bugfixes? I know about the 2.6.2[34].y stable git trees, but I wonder how long will those receive attention (that is, security fixes). Can I find a written policy somewhere? -- (Please...
Feb 12, 4:27 pm 2008
Xavier Bestel
Re: currently active Linux kernel versions
Hi, The answer is at http://kernel.org/ You're welcome, Xav --
Feb 12, 5:13 pm 2008
Ferenc Wagner
Re: currently active Linux kernel versions
Not quite, at least I can't find 2.6.23.y there, even though that branch seems to be maintained... -- Thanks, Feri. --
Feb 12, 5:18 pm 2008
Mike Snitzer
Re: currently active Linux kernel versions
2.6.16.x is still maintained (2.6.16.60 was recently released). 2.6.22.x is still maintained but Greg KH is apparently going to be ending his duties on it after the next release or so. There is some confusion as to whether Willy Tarreau will be taking on the 2.6.22.x tree once Greg is done, Willy?: http://lwn.net/Articles/268003/ http://kerneltrap.org/Linux/Stable_2.6_Branches 2.6.23.x and 2.6.24.x are obviously quite active for stable@kernel.org --
Feb 12, 5:37 pm 2008
Oliver Pinter
Re: currently active Linux kernel versions
When Willy go in 2.6.22.y, then I help it, so far as I 'm possible. -- Thanks, Oliver --
Feb 12, 5:49 pm 2008
Xavier Bestel Feb 12, 5:25 pm 2008
Oliver Pinter
Re: currently active Linux kernel versions
and 2.6.22.y too -- Thanks, Oliver --
Feb 12, 5:21 pm 2008
Mauro Carvalho Chehab
[GIT PATCHES] V4L/DVB fixes
Linus, Please pull from: ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb.git master For the following fixes: - bug #9699: radio-sf16fmr2: fix request_region() validation; - bug #9833 when building V4L without I2C; - bug #9887: tda10086: make the 22kHz tone for DISEQC a config option; - Warning fix: Remove sound/driver.h; - zr364xx: trivial board additions and fix at docs; - saa7134: trivial board addition and detection, fix for md2819; - tcm825x...
Feb 12, 5:02 pm 2008
Ferenc Wagner
printk %%
Hi, Looking at http://lxr.linux.no/linux/lib/vsprintf.c#L549 (where vsnprintf in linux/lib/vsprintf.c parses the % format specifier) suggests that the printk format string in http://lxr.linux.no/linux/drivers/ide/setup-pci.c#L657 is correct: printk(KERN_INFO "%s: not 100%% native mode: " "will probe irqs later\n", d->name); Still, in my kern.log the percent sign is doubled: ICH4: not 100%% native mode: will probe irqs later Why? -- Regards, Feri. (Please Cc: ...
Feb 12, 4:41 pm 2008
Harvey Harrison
[PATCH] x86: include prototype for no_broadcast in mach-defa...
Fixes sparse warning: arch/x86/mach-default/setup.c:19:5: warning: symbol 'no_broadcast' was not declared. Should it be static? Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- arch/x86/mach-default/setup.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/x86/mach-default/setup.c b/arch/x86/mach-default/setup.c index 0c28a07..ba1e7bd 100644 --- a/arch/x86/mach-default/setup.c +++ b/arch/x86/mach-default/setup.c @@ -9,6 +9,7 @@ #include <asm...
Feb 12, 4:35 pm 2008
Andi Kleen
[PATCH] [1/1] RFC: Fix some EFI problems v2
From code review the EFI memory map handling has a couple of problems: - The test for _WB memory was reversed so it would set cache able memory to uncached - It would always set a wrong uninitialized zero address to uncached (so I suspect it always set the first few pages in phys memory to uncached, that is why it may have gone unnoticed) - It would call set_memory_x() on a fixmap address that it doesn't handle correctly. - Some other problems I commented in the code (but was unable to solve f...
Feb 12, 4:30 pm 2008
Bart Dopheide
Kernel BUG at fs/mpage.c:489
Hello, While copying between two DOS-partitions, my screen went haywire saying=20 I found a kernel bug. Since no hits on google when searching for kernel BUG at fs/mpage.c:489! I decided to let you know. Some notes that might be relevant: * I composed the bios out of the original from my asus a7v-133 and some=20 stuff from ECS L7VTA * /dev/hde is on Promise FastTrak "Lite" PDC20265R * I do not use (fake)RAID; I only use it as an extra IDE controller * /dev/hde is old; Seems that it can d...
Feb 12, 3:45 pm 2008
previous daytodaynext day
February 11, 2008February 12, 2008February 13, 2008