linux-kernel mailing list

FromSubjectsort iconDate
Henry Nestler
[PATCH] x86: endless page faults in mount_block_root for Lin...
Page faults in kernel address space between PAGE_OFFSET up to VMALLOC_START should not try to map as vmalloc. Fix rarely endless page faults inside mount_block_root for root filesystem at boot time. Signed-off-by: Henry Nestler <henry.nestler@gmail.com> --- All 32bit kernels up to 2.6.25 can fail into this hole. I can not present this under native linux kernel. I see, that the 64bit has fixed the problem. I copied the same lines into 32bit part. Recorded debugs are from coLinux kernel...
Apr 22, 6:50 pm 2008
Thomas Zeitlhofer
2.6.25: racoon does not work without ipv6 any more
Hello, commit df9dcb4588aca9cc243cf1f3f454361a84e1cbdb breaks racoon if the kernel is compiled _without_ ipv6 support. In this case, racoon fails in phase 2 with: racoon: ERROR: pfkey UPDATE failed: Protocol not supported racoon: ERROR: pfkey ADD failed: Protocol not supported Up to 2.6.24, racoon worked fine without ipv6 support in the kernel and reverting the commit above restores the old behavior. Regards, Thomas --
Apr 22, 7:42 pm 2008
Roland Dreier
[bisected] Latest git not seeing HD with sata_nv
It seems that commit 305d2a1a ("libata: unify mechanism to request follow-up SRST") causes sata_nv not to see the HD on a system I have here; with current git (80750147), I get this in my bootlog: [ 2.425108] Driver 'sd' needs updating - please use bus_type methods [ 2.435751] ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 23 [ 2.441508] ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [LSA0] -> GSI 23 (level, low) -> IRQ 23 [ 2.452929] sata_nv 0000:00:05.0: Using SWNCQ mode [ 2....
Apr 22, 7:20 pm 2008
Yinghai Lu
Re: [bisected] Latest git not seeing HD with sata_nv
good. my test system had the same problem. just want to start the bisect other things in the bisect list 1. clocktest is broken. 2. kexec RHEL 5.1 the mpt sas only can support 2 cards... YH --
Apr 22, 7:47 pm 2008
speedy
[BUG REPORT, 2.6.22] sata controler failure on nforce 2 chip...
Hello Linux kernel crew, [Consider this more as a datapoint then a bug report, as after one network and one sata/southbridge issues showing up interminnently, the ASRock motherboard involved will be scrapped for a different one] The integrated NVidia sata controller and/or the hard-drive has failed during operation with the following output: Apr 22 23:36:54 backupserver kernel: [91202.294632] res 40/00:00:00:00:00/00:00:00:00:00/00 Emask 0x4 (t...
Apr 22, 7:14 pm 2008
Justin Piszcz
From 2.6.24 -> 2.6.25, lost audio (snd-hda-intel)
Motherboard: A-Bit AWD9-MAX Using 2.6.24, everything is fine, using 2.6.25, no audio (used make oldconfig).. Kernel configs used attached. I did not see any errors of any kind it just did not play any audio, I booted back to 2.6.24, everything working fine again. The second one I enabled debugging. [ 11.437849] ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 16 (level, low) -> IRQ 16 [ 11.437953] PCI: Setting latency timer of device 0000:00:1b.0 to 64 [ 11.437956] ALSA sound/pci/hda/...
Apr 22, 6:44 pm 2008
Jesper Juhl
[PATCH] PCI Express ASPM support should default to 'No'
Running 'make oldconfig' I just noticed that PCIEASPM defaults to 'y' in Kconfig even though the feature is both experimental and the help text recommends that if you are unsure you say 'n'. It seems to me that this really should default to 'n', not 'y' at the moment. The following patch makes that change. Please consider applying. Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pcie/...
Apr 22, 6:28 pm 2008
Jeff Garzik
[git patch] free_irq() fixes
Please pull from 'irq-fixes' branch of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/misc-2.6.git irq-fixes to receive the following updates: arch/arm/mach-integrator/time.c | 4 ++-- drivers/char/mwave/tp3780i.c | 13 +++++++++---- 2 files changed, 11 insertions(+), 6 deletions(-) Jeff Garzik (1): arm/mach-integrator, char/mwave: fix request_irq/free_irq mismatch diff --git a/arch/arm/mach-integrator/time.c b/arch/arm/mach-integrator/time.c index 5235f64..28726ee 100...
Apr 22, 6:17 pm 2008
Linus Torvalds
Re: [git patch] free_irq() fixes
Quite frankly, I'd actually prefer to just reinstate "dev" to the irq registration instead. Why? Because that field is how we are able to track multiple interrupt registrations that share an IRQ. Now, the "request_irq()" logic has a special rule that actually tests that NULL is a valid cookie if the IRQF_SHARED bit isn't set, but isn't it a nice thing to double-check This, in contrast, *really* sucks as a cookie. In fact, it's useless. If there are multiple tp3780i instances on the sa...
Apr 22, 6:25 pm 2008
Jeff Garzik
Re: [git patch] free_irq() fixes
AFAICS that will never happen for mwave hardware. Nonetheless, it's a good point that NULL fails for disambiguation, so I created the attached, which should do what you want. I'll push it after the compiler gives it a green light (unless it needs further revisions) (note, for mwave I couldn't use pSettings, since that might fail the ambiguity test) Jeff
Apr 22, 6:59 pm 2008
Linus Torvalds
Re: [git patch] free_irq() fixes
Ok, so using the pointer to inside a specific pSettings field is fine. But can you also explain to me why that insane driver does this: static irqreturn_t UartInterrupt(int irq, void *dev_id) { - int irqno = (int)(unsigned long) dev_id; + unsigned short *irqno = dev_id; ... *irqno, dev_id); instead of just ignoring "dev_id" entirely, and then just using that "irq" argument directly? Linus --
Apr 22, 7:20 pm 2008
Jeff Garzik
Re: [git patch] free_irq() fixes
[...] After going over every irq handler (read: almost every driver in the kernel, plus arch code), my #irq-remove branch has confirmed what my gut already knew -- the 'irq' argument is completely unused for almost every driver. So I was taking that line of thought as far as it went. I found less than 10 cases (out of ~1100) that actually did something useful with the value _and_ did not have the value already stashed somewhere in a reached data structure. Those cases are easily handle...
Apr 22, 7:49 pm 2008
Linus Torvalds
Re: [git patch] free_irq() fixes
Ok, that's just not going to happen. What's the upside? Really? I can tell you the downsides: - tons of huge patches with ugly churn - total disaster when it comes to any drivers that are maintained over multiple versions and/or out-of-tree like the DRI stuff so those upsides had better be really big. Linus --
Apr 22, 7:52 pm 2008
Wakko Warner
AIC94xx SAS question.
Please keep me in CC. This is a general question and probably doesn't matter which kernel (although the one in question is 2.6.23 vanilla) I know that this device requires firmware to operate which has to be loaded when the driver is loaded. I'd like to have this driver compiled into the kernel. My question is: Can either of these be done: 1) Embed the firmware into the driver so that it can be used before the rootfs id mounted. 2) Can the firmware be loaded in an initr{d,amfs}? I personn...
Apr 22, 6:10 pm 2008
Bjoern Olausson
Config Disk, RGL10364 device is on DMA blacklist
Hi all, I dont't know where this device is comming from and what it does or is supposed to do. Hardware: Asus P5W-DH Delux Kernel: Stock 2.6.25 Distribution: Gentoo Linux See attached files for more information. Maybe related to: http://bugzilla.kernel.org/show_bug.cgi?id=9010 http://bugzilla.kernel.org/show_bug.cgi?id=8923 can anybody comment on this: [ 1.252722] ata2: SATA max UDMA/133 irq_stat 0x00400040, connection status changed irq 1274 [ 4.783300] ata2: SATA link ...
Apr 22, 5:41 pm 2008
Alexey Dobriyan
[PATCH] SHM: tweak /proc/sysvipc/shm banner
"size" field and everything after in banner isn't aligned properly on 64-bit archs. Before: key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime 0 0 0 4194304 4749 0 0 1000 1000 1000 1000 0 0 1208902917 After: key shmid perms size cpid lpid nattch uid gid cuid cgid atime dtime ctime 0 0 0 ...
Apr 22, 6:31 pm 2008
Jesper Juhl
[PATCH] hfsplus: in case match_strdup() fails to alloc mem i...
From: Jesper Juhl <jesper.juhl@gmail.com> The Coverity checker spotted that we do not check the return value of match_strdup() in fs/hfsplus/options.c::hfsplus_parse_options(). This is bad since match_strdup() does a memory allocation internally which can fail. If it does fail it will return NULL and in that case we will pass the NULL pointer on to load_nls() which will eventually dereference it --> BOOM! Much better to check the return value, fail gracefully and log an error message in c...
Apr 22, 5:28 pm 2008
Jesper Juhl
[PATCH] hfs: if match_strdup() fails to allocate memory in p...
From: Jesper Juhl <jesper.juhl@gmail.com> The Coverity checker spotted that we don't check the return value of match_strdup() in fs/hfs/super.c::parse_options(). This is bad since match_strdup() does a memory allocation internally which can fail. If it does fail it'll return NULL and in that case we'll pass the NULL pointer on to load_nls() which will eventually dereference it - Boom! Much better to check the return value, fail gracefully and log an error message if this happens. This ...
Apr 22, 5:12 pm 2008
Joe Perches
Re: [PATCH] hfs: if match_strdup() fails to allocate memory ...
Using different strings in the printk wastes memory. --
Apr 22, 5:17 pm 2008
Jesper Juhl
Re: [PATCH] hfs: if match_strdup() fails to allocate memory ...
True, but I personally prefer being able to do grep "error message" and hit just one source location over saving a few bytes of memory... If Roman wants the strings to be identical I can resubmit the patch. Roman? -- Jesper Juhl <jesper.juhl@gmail.com> Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html Plain text mails only, please http://www.expita.com/nomime.html --
Apr 22, 5:21 pm 2008
Abdel !
unofficial linux-0.01-3.5
Hello, I have released linux 0.01-3.3 on january 1, 2008. And I often be asked 2 question : the 1st was, "I can't build linux-0.01-3.3, why ?" =================================== Well linux 0.01 was very well written, except 1 thing in the Makefile : To get file size of the kernel image, Linus Torvalds used the following ( and ugly ) command : "ls -l tools/system | grep system | cut -c31-37" which may be invalid for you. So the unofficial linux-0.01-3.5 ( which was released on the end of ...
Apr 22, 5:04 pm 2008
Jean Delvare
[GIT PULL] i2c updates for 2.6.26
Linus, Please pull the i2c subsystem updates for Linux 2.6.26 from: git://jdelvare.pck.nerim.net/jdelvare-2.6 i2c-for-linus There are 3 new I2C bus drivers (for the SuperH Mobile, the Renesas SH7760 and the Philips PCA9564), many cleanups and improvements to the i2c-bfin-twi (Blackfin) bus driver, and random fixes and cleanups. drivers/i2c/algos/Kconfig | 39 +-- drivers/i2c/algos/i2c-algo-pca.c | 126 ++++---- drivers/i2c/algos/i2c-algo-pca.h | 26 -- drivers/i2...
Apr 22, 4:54 pm 2008
Mike Travis
[PATCH 5/5] sched: replace MAX_NUMNODES with nr_node_ids in ...
* Replace usages of MAX_NUMNODES with nr_node_ids in kernel/sched.c, where appropriate. This saves some allocated space as well as many wasted cycles going through node entries that are non-existent. For inclusion into sched-devel/latest tree. Based on: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + sched-devel/latest .../mingo/linux-2.6-sched-devel.git Signed-off-by: Mike Travis <travis@sgi.com> --- kernel/sched.c | 18 +++++++++--------- ...
Apr 22, 4:42 pm 2008
Mike Travis
[PATCH 4/5] x86: remove the 256k node_to_cpumask_map after i...
* Consolidate node_to_cpumask operations and remove the 256k byte node_to_cpumask_map. This is done by allocating the node_to_cpumask_map array after the number of possible nodes (nr_node_ids) is known. * Debug printouts when CONFIG_DEBUG_PER_CPU_MAPS is active have been increased. It now shows faults when calling node_to_cpumask() and node_to_cpumask_ptr(). For inclusion into sched-devel/latest tree. Based on: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/...
Apr 22, 4:42 pm 2008
Mike Travis
[PATCH 2/5] x86: cleanup early per cpu variables/accesses v4
* Introduce a new PER_CPU macro called "EARLY_PER_CPU". This is used by some per_cpu variables that are initialized and accessed before there are per_cpu areas allocated. ["Early" in respect to per_cpu variables is "earlier than the per_cpu areas have been setup".] This patchset adds these new macros: DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) EXPORT_EARLY_PER_CPU_SYMBOL(_name) DECLARE_EARLY_PER_CPU(_type, _name) early_per_cpu_ptr(_name) early_per_cpu_map(_n...
Apr 22, 4:42 pm 2008
Mike Travis
[PATCH 3/5] x86: restore pda nodenumber field
* Restore the nodenumber field in the x86_64 pda. This field is slightly different than the x86_cpu_to_node_map mainly because it's a static indication of which node the cpu is on while the cpu to node map is a dyanamic mapping that may get reset if the cpu goes offline. This also simplifies the numa_node_id() macro. For inclusion into sched-devel/latest tree. Based on: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + sched-devel/latest .../mingo...
Apr 22, 4:42 pm 2008
Mike Travis
[PATCH 0/5] x86: cleanup early per cpu variables/accesses v4...
* Increase the limit of NR_CPUS to 4096 and introduce a boolean called "MAXSMP" which when set (e.g. "allyesconfig"), will set NR_CPUS = 4096 and NODES_SHIFT = 9 (512). Changed max setting for NODES_SHIFT from 15 to 9 to accurately reflect the real limit. * Introduce a new PER_CPU macro called "EARLY_PER_CPU". This is used by some per_cpu variables that are initialized and accessed before there are per_cpu areas allocated. * Add a flag "arch_provides_topology_pointer...
Apr 22, 4:42 pm 2008
Mike Travis
[PATCH 1/5] x86: Modify Kconfig to allow up to 4096 cpus
* Increase the limit of NR_CPUS to 4096 and introduce a boolean called "MAXSMP" which when set (e.g. "allyesconfig"), will set NR_CPUS = 4096 and NODES_SHIFT = 9 (512). * Changed max setting for NODES_SHIFT from 15 to 9 to accurately reflect the real limit. For inclusion into sched-devel/latest tree. Based on: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + sched-devel/latest .../mingo/linux-2.6-sched-devel.git Signed-off-by: Mike Travis &l...
Apr 22, 4:42 pm 2008
Harvey Harrison
[PATCH] mfd: kconfig exposing unbuildable driver
Limit this driver to ARCH_PXA, noticed by breakage on allyesconfig builds on 32-bit x86. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- Linus, please apply and Russell can fix it up however he likes later in the week. Many people are hitting this. drivers/mfd/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 2566479..bd29c61 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -32...
Apr 22, 4:25 pm 2008
Russell King
Re: [PATCH] mfd: kconfig exposing unbuildable driver
That was my initial approach as well, which got shot down by Andrew Morton and others as being unacceptable. -- Russell King Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: --
Apr 22, 4:33 pm 2008
Linus Torvalds
Re: [PATCH] mfd: kconfig exposing unbuildable driver
Hmm. While I in general support the notion of trying to compile drivers on as wide a variety as hardware as possible, if that HTC_PASIC3 thing really is a PXA-only piece of hardware, I don't really see the point of not making the config file accurately represent that. That said, as far as I can tell, the compile failure is because of this line: #include <asm/arch/pxa-regs.h> and I cannot for the life of me see _why_ it tries to include that header file. It seems to compile fi...
Apr 22, 5:05 pm 2008
Russell King
Re: [PATCH] mfd: kconfig exposing unbuildable driver
I think we've settled this in one of my replies to Randy. However, I think there's a bigger issue here. [I'm not including all the details here about the timing - since you know the timing of my emails to you, the only thing left out is that Andrew told me about this problem on Sunday Morning (UK time).] My kernel work pattern is Saturday to Monday inclusive and Thursday. I believe yours is to avoid Saturday through into most of Monday. This unfortunately means that we currently have almost n...
Apr 22, 5:36 pm 2008
Linus Torvalds
Re: [PATCH] mfd: kconfig exposing unbuildable driver
I really don't see what you are talking about, and nobody else has that problem. With patches, once you send them, they are sent, and you can't fix it. With git, once you send my the "please pull", it's sent, and you can't fix it. And with either, you can update the queue later. I don't understand AT ALL why you think they are different. In fact, if anything, git trees are a lot more flexible. With git, what you can do is fix up the tree at any time, and send me an email saying "...
Apr 22, 5:47 pm 2008
Randy.Dunlap Apr 22, 4:38 pm 2008
Russell King
Re: [PATCH] mfd: kconfig exposing unbuildable driver
Well, first I need to gain the permission of Andrew to post his private message. I'm not being subborn here - I _do_ _not_ reproduce private Talk to Andrew then. -- Russell King Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: --
Apr 22, 4:45 pm 2008
Randy.Dunlap
Re: [PATCH] mfd: kconfig exposing unbuildable driver
He is cc-ed (although traveling much this week IIRC). -- ~Randy --
Apr 22, 4:47 pm 2008
Russell King
Re: [PATCH] mfd: kconfig exposing unbuildable driver
In which case, since it's likely I won't get a reply in the next hour (which'll delay my response by 24 hours) let me paraphrase what Andrew said. Andrew believes that it is beneficial to have other architectures, particularly x86, build other architectures drivers. Meanwhile, pHilipp Zabel believes this hardware not to be ARM specific. So, the majority concensus in the three way discussion was that it should remain visible, and the (unnecessary) include and its dependents be removed. Hav...
Apr 22, 5:01 pm 2008
Randy Dunlap
Re: [PATCH] mfd: kconfig exposing unbuildable driver
That's the big Important missing info. So the source file is OK, sounds fair. Thanks. ~Randy --
Apr 22, 5:06 pm 2008
Leonardo Chiquitto
[PATCH] airprime: unlock mutex instead of trying to lock it ...
Hello, The following patch fixes a [probable] copy & paste mistake in airprime.c. Instead of unlocking an acquired mutex, the actual code tries to lock it again. Signed-off-by: Leonardo Chiquitto <lchiquitto@novell.com> Cc: Greg Kroah-Hartman <gregkh@suse.de> --- Leonardo Index: kernel/drivers/usb/serial/airprime.c =================================================================== --- kernel.orig/drivers/usb/serial/airprime.c +++ kernel/drivers/usb/serial/airprime.c @@...
Apr 22, 3:02 pm 2008
Dimitri Sivanich
Dynamic softlockup detection enable/disable?
Is there a way to dynamically enable or disable softlockup detection, rather than having to CONFIG_DETECT_SOFTLOCKUP=n and recompile? Dimitri --
Apr 22, 3:53 pm 2008
Dean Nelson
[Patch 0/4] prepare XPC and XPNET to support SGI UV -v4
This set of four patches moves XPC and XPNET to drivers/misc/sgi-xp in preparation for enabling SGI UV X86_64 support. This version is prompted by reported build problems with certain configs, and a desire to keep things simple by only moving XPC/XPNET as is and only addressing Lindent and checkpatch.pl issues (not x86_64 issues) at this time. --
Apr 22, 3:44 pm 2008
Dean Nelson
[Patch 4/4] run drivers/misc/sgi-xp through scripts/checkpat...
Addressed issues raised by scripts/checkpatch.pl. Removed unnecessary curly braces. Eliminated uses of volatiles and use of kernel_thread() and daemonize(). Signed-off-by: Dean Nelson <dcn@sgi.com> --- The following warning reported by checkpatch.pl I can't do anything about. The symbol being exported resides in drivers/misc/sgi-xp/xp_nofault.S. WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable #30: FILE: misc/sgi-xp/xp_main.c:30: +EXPORT_SYMBOL_GPL(xp_nofaul...
Apr 22, 3:50 pm 2008
Dean Nelson
[Patch 3/4] run drivers/misc/sgi-xp through scripts/Lindent ...
Ran patches through scripts/Lindent (part 2). Signed-off-by: Dean Nelson <dcn@sgi.com> --- drivers/misc/sgi-xp/xpc_channel.c | 390 ++++++++++++---------------------- drivers/misc/sgi-xp/xpc_main.c | 329 ++++++++++++---------------- drivers/misc/sgi-xp/xpnet.c | 109 +++------ 3 files changed, 322 insertions(+), 506 deletions(-) Index: linux-2.6/drivers/misc/sgi-xp/xpc_channel.c =================================================================== --- linux-2.6.orig/driver...
Apr 22, 3:48 pm 2008
Dean Nelson
[Patch 2/4] run drivers/misc/sgi-xp through scripts/Lindent ...
Ran patches through scripts/Lindent (part 1). Signed-off-by: Dean Nelson <dcn@sgi.com> --- drivers/misc/sgi-xp/xp.h | 80 ++--- drivers/misc/sgi-xp/xp_main.c | 98 +++--- drivers/misc/sgi-xp/xp_nofault.S | 1 drivers/misc/sgi-xp/xpc.h | 450 +++++++++++++------------------- drivers/misc/sgi-xp/xpc_partition.c | 328 +++++++++-------------- 5 files changed, 400 insertions(+), 557 deletions(-) Index: linux-2.6/drivers/misc/sgi-xp/xp.h ==========...
Apr 22, 3:48 pm 2008
Dean Nelson
[Patch 1/4] move XP and XPC to drivers/misc/sgi-xp -v4
Move XPC and XPNET from arch/ia64/sn/kernel to drivers/misc/sgi-xp. Signed-off-by: Dean Nelson <dcn@sgi.com> --- arch/ia64/Kconfig | 11 ----------- arch/ia64/sn/kernel/Makefile | 7 +------ drivers/misc/Kconfig | 12 ++++++++++++ drivers/misc/Makefile | 1 + drivers/misc/sgi-xp/Makefile | 11 +++++++++++ {include/asm-ia64/sn => drivers/m...
Apr 22, 3:46 pm 2008
Luck, Tony
RE: [Patch 1/4] move XP and XPC to drivers/misc/sgi-xp -v4
> Move XPC and XPNET from arch/ia64/sn/kernel to drivers/misc/sgi-xp. Dean, I applied this series on top of this morning's patch to change the uncached allocator to support multiple page allocations. Now I see errors in the build because xpc_partition.c doesn't have the matching change to support the extra argument: drivers/misc/sgi-xp/xpc_partition.c: In function `xpc_rsvd_page_init': drivers/misc/sgi-xp/xpc_partition.c:214: error: too few arguments to function `uncached_alloc_page' driv...
Apr 22, 4:57 pm 2008
Luck, Tony
RE: [Patch 1/4] move XP and XPC to drivers/misc/sgi-xp -v4
I've now dropped the change to the uncached allocator. You'll need to update this patch with the changes to the users of uncached_{alloc,free}_page. Using the older one-page version your patches to move XP and XPC all apply, and I see no build errors (I don't have a system on which to check that this works). -Tony --
Apr 22, 6:21 pm 2008
Benoit Boissinot
Re: [PATCH] [TRIVIAL] spelling fix in various files: preferr...
I don't think it is really huge: Documentation/i2c/busses/i2c-parport-light | 2 +- arch/m68knommu/platform/coldfire/head.S | 2 +- arch/s390/kernel/time.c | 2 +- drivers/media/video/cx25840/cx25840-core.c | 2 +- drivers/net/enc28j60_hw.h | 2 +- drivers/net/sk98lin/skrlmt.c | 2 +- drivers/net/tokenring/madgemc.c | 2 +- include/acpi/actbl.h | 4 ++-- include/asm-blackfin/cplbinit.h...
Apr 22, 3:34 pm 2008
Roland McGrath
[PATCH 1/2 x86/latest] x86_64 ia32 ptrace: use compat_ptrace...
This removes the special-case handling for PTRACE_GETSIGINFO and PTRACE_SETSIGINFO from x86_64's sys32_ptrace. The generic compat_ptrace_request code handles these. Signed-off-by: Roland McGrath <roland@redhat.com> --- arch/x86/kernel/ptrace.c | 30 +----------------------------- 1 files changed, 1 insertions(+), 29 deletions(-) diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c index 1edbb13..b564116 100644 --- a/arch/x86/kernel/ptrace.c +++ b/arch/x86/kernel/ptrace.c ...
Apr 22, 3:20 pm 2008
Ingo Molnar Apr 22, 3:23 pm 2008
previous daytodaynext day
April 21, 2008April 22, 2008April 23, 2008