linux-kernel mailing list

FromSubjectsort iconDate
billing
Your Photos
Dear Customer, you ordered once, why not again? phentermine & other controlleds are available http://www.pharmaenergi.net/ __________________________ u gorilly bolshie nozdri potomu chto u nee bolshie palcy menyau proigryvatel na vyigryvatel molodye ludi stol zhe sklonny schitat sebya mudrymi skol pyanye - trezvymi ogurec solenyy - rastenie semeystva zakusochnyh upotreblyaetsya preimuschestvenno vovnutr cherez temnye ochki prosche vyrazhat svoi vzglyady - shtirlic vam i...
Jun 4, 12:28 am 2008
David Miller
[GIT]: Sparc
Please pull to get these sparc updates. Thanks! The following changes since commit 551dec47bb5964478db594385a896eb0d4ab2b0a: Adrian Bunk (1): sparc64: global_reg_snapshot is not for userspace are available in the git repository at: master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git master Alexey Dobriyan (1): sparc: switch /proc/led to seq_file Benjamin Herrenschmidt (1): sparc64: IO accessors fix arch/sparc/kernel/led.c | 34 ++++++++++++++...
Jun 4, 7:56 pm 2008
Daniel J Blueman
[2.6.26-rc4] mount.nfsv4/memory poisoning issues...
Having experienced 'mount.nfs4: internal error' when mounting nfsv4 in the past, I have a minimal test-case I sometimes run: $ while :; do mount -t nfs4 filer:/store /store; umount /store; done After ~100 iterations, I saw the 'mount.nfs4: internal error', followed by symptoms of memory corruption [1], a locking issue with the reporting [2] and another (related?) memory-corruption issue (off-by-1?) [3]. A little analysis shows memory being overwritten by (likely) a poison value, which gets compli...
Jun 4, 7:33 pm 2008
Chuck Lever
Re: [2.6.26-rc4] mount.nfsv4/memory poisoning issues...
Hi Daniel- On Wed, Jun 4, 2008 at 7:33 PM, Daniel J Blueman We have some other reports of late model kernels with memory corruption issues during NFS mount. The problem is that by the time these canaries start singing, the evidence of what did the corrupting If these crashes are more or less reliably reproduced, it would be helpful if you could do a 'git bisect' on the client to figure out at what point in the kernel revision history this problem was introduced. > # CONFI
Jun 4, 7:43 pm 2008
Neil Brown Jun 4, 7:29 pm 2008
Neil Brown
Re: 2.6.25 md oops during boot.
Hi Dave. Yes, Odd. It appear that sysfs_addrm_start is being called with parent_sd == NULL. That implies that sysfs_create_dir is being given a kobj where ->parent is non-NULL, and ->parent->sd is NULL. So kobject_add is being given a parent with a NULL ->sd. So in bind_rdev_to_array, mddev->kobj.sd is NULL. So in md_probe, either kobject_init_and_add is failing to set up ->sd properly (which should result in an error message "md: cannot register md0/md - name in...
Jun 4, 7:12 pm 2008
Sitsofe Wheeler
BUG: unable to handle kernel NULL pointer dereference (drm_g...
While flipping back and forth between the vts/Xorg and doing iperf test over the wifi connection the following error appeared in next-20080604. [ 4305.767435] BUG: unable to handle kernel NULL pointer dereference at 00000000 [ 4305.767452] IP: [<c02511d4>] drm_getunique+0xc/0x30 [ 4305.767466] *pde = 00000000 [ 4305.767474] Oops: 0000 [#1] SMP DEBUG_PAGEALLOC [ 4305.767483] last sysfs file: /sys/devices/system/cpu/cpu1/cache/index2/shared_cpu_map [ 4305.767492] Modules linked in: [ 4305.7674...
Jun 4, 7:03 pm 2008
Johannes Weiner Jun 4, 7:42 pm 2008
Bjorn Helgaas
[patch 18/18] PNP: convert resource options to single linked...
ISAPNP, PNPBIOS, and ACPI describe the "possible resource settings" of a device, i.e., the possibilities an OS bus driver has when it assigns I/O port, MMIO, and other resources to the device. PNP used to maintain this "possible resource setting" information in one independent option structure and a list of dependent option structures for each device. Each of these option structures had lists of I/O, memory, IRQ, and DMA resources, for example: dev independent options ind-io0 -&gt...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 12/18] PNP: centralize resource option allocations
This patch moves all the option allocations (pnp_mem, pnp_port, etc) into the pnp_register_{mem,port,irq,dma}_resource() functions. This will make it easier to rework the option data structures. The non-trivial part of this patch is the IRQ handling. The backends have to allocate a local pnp_irq_mask_t bitmap, populate it, and pass a pointer to pnp_register_irq_resource(). Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> --- driv...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 13/18] PNPACPI: ignore _PRS interrupt numbers larger ...
ACPI Extended Interrupt Descriptors can encode 32-bit interrupt numbers, so an interrupt number may exceed the size of the bitmap we use to track possible IRQ settings. To avoid corrupting memory, complain and ignore too-large interrupt numbers. There's similar code in pnpacpi_parse_irq_option(), but I didn't change that because the small IRQ descriptor can only encode IRQs 0-15, which do not exceed bitmap size. In the future, we could handle IRQ numbers greater than PNP_IRQ_NR by replacing t...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 17/18] ISAPNP: handle independent options following d...
The ISAPNP spec recommends that independent options precede dependent ones, but this is not actually required. The current ISAPNP code incorrectly puts such trailing independent options at the end of the last dependent option list. This patch fixes that bug by resetting the current option list to the independent list when we see an "End Dependent Functions" tag. PNPBIOS and PNPACPI handle this the same way. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/drivers/pnp/i...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 15/18] PNP: support optional IRQ resources
This patch adds an IORESOURCE_IRQ_OPTIONAL flag for use when assigning resources to a device. If the flag is set and we are unable to assign an IRQ to the device, we can leave the IRQ disabled but allow the overall resource allocation to succeed. Some devices request an IRQ, but can run without an IRQ (possibly with degraded performance). This flag lets us run the device without the IRQ instead of just leaving the device disabled. This is a reimplementation of this previous change by Rene Her...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 14/18] PNP: rename pnp_register_*_resource() local va...
No functional change; just rename "data" to something more descriptive. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> Index: work10/drivers/pnp/resource.c =================================================================== --- work10.orig/drivers/pnp/resource.c 2008-05-20 13:23:06.000000000 -0600 +++ work10/drivers/pnp/resource.c 2008-05-20 13:24:27.000000000 -0600 @@ -80,40 +80,40 @@ struct pnp_option *pnp_register_dependen int p...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 16/18] PNP: remove extra 0x100 bit from option priority
When building resource options, ISAPNP and PNPBIOS set the priority to something like "0x100 | PNP_RES_PRIORITY_ACCEPTABLE", but we immediately mask off the 0x100 again in pnp_build_option(), so that bit looks superfluous. Thanks to Rene Herman <rene.herman@gmail.com> for pointing this out. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/drivers/pnp/isapnp/core.c =================================================================== --- work10.orig/drivers/pnp/isapn...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 10/18] PNP: make resource assignment functions return...
This patch doesn't change any behavior; it just makes the return values more conventional. This changes pnp_assign_dma() from a void function to one that returns an int, just like the other assignment functions. For now, at least, pnp_assign_dma() always returns 0 (success), so it appears to never fail, just like before. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> Index: work10/drivers/pnp/manager.c ===========================...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 11/18] PNP: remove redundant pnp_can_configure() check
pnp_assign_resources() is static and the only caller checks pnp_can_configure() before calling it, so no need to do it again. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> Index: work10/drivers/pnp/manager.c =================================================================== --- work10.orig/drivers/pnp/manager.c 2008-05-13 13:29:57.000000000 -0600 +++ work10/drivers/pnp/manager.c 2008-05-13 13:30:21.000000000 -0600 @@ -231,9 +231,6...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 09/18] PNP: in debug resource dump, make empty list o...
If the resource list is empty, say that explicitly. Previously, it was confusing because often the heading was followed by zero resource lines, then some "add resource" lines from auto-assignment, so the "add" lines looked like current resources. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> Index: work10/drivers/pnp/support.c =================================================================== --- work10.orig/drivers/pnp/support.c ...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 07/18] PNP: increase I/O port & memory option add...
ACPI Address Space Descriptors can be up to 64 bits wide. We should keep track of the whole thing when parsing resource options, so this patch changes PNP port and mem option fields from "unsigned short" and "unsigned int" to "resource_size_t". Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> --- drivers/pnp/base.h | 16 ++++++++-------- drivers/pnp/interface.c | 17 +++++++++++------ drivers/pnp/resource.c | 14 ++++++++...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 08/18] PNP: improve resource assignment debug
When we fail to assign an I/O or MEM resource, include the min/max in the debug output to help match it with the options. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> Index: work10/drivers/pnp/manager.c =================================================================== --- work10.orig/drivers/pnp/manager.c 2008-05-13 12:01:17.000000000 -0600 +++ work10/drivers/pnp/manager.c 2008-05-13 12:50:57.000000000 -0600 @@ -47,7 +47,10 @@ st...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 06/18] PNP: introduce pnp_irq_mask_t typedef
This adds a typedef for the IRQ bitmap, which should cause no functional change, but will make it easier to pass a pointer to a bitmap to pnp_register_irq_resource(). Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> Index: work10/drivers/pnp/base.h =================================================================== --- work10.orig/drivers/pnp/base.h 2008-06-04 15:38:19.000000000 -0600 +++ work10/drivers/pnp/base.h 2008-06-04 15:38:25.0...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 05/18] PNP: make resource option structures private t...
Nothing outside the PNP subsystem should need access to a device's resource options, so this patch moves the option structure declarations to a private header file. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/drivers/pnp/base.h =================================================================== --- work10.orig/drivers/pnp/base.h 2008-05-16 16:10:32.000000000 -0600 +++ work10/drivers/pnp/base.h 2008-05-16 16:10:56.000000000 -0600 @@ -19,6 +19,54 @@ void pnp_remove_card...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 04/18] PNP: define PNP-specific IORESOURCE_IO_* flags...
PNP previously defined PNP_PORT_FLAG_16BITADDR and PNP_PORT_FLAG_FIXED in a private header file, but put those flags in struct resource.flags fields. Better to make them IORESOURCE_IO_* flags like the existing IRQ, DMA, and MEM flags. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> --- include/linux/ioport.h | 10 +++++++--- include/linux/pnp.h | 3 --- drivers/pnp/interface.c | 2 +- drivers/pnp/...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 03/18] PNP: IORESOURCE_* flags are PNP-specific, not ...
Change comments on the bus-specific IORESOURCE bit definitions to indicate the PNP ones are not ISA-specific. They are used by PNPBIOS and PNPACPI in addition to ISAPNP. Rene Herman <rene.herman@gmail.com> wrote this patch: http://marc.info/?l=linux-acpi&m=121200787202959&w=4. I picked it up to resolve conflicts with other patches. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Index: work10/include/linux/ioport.h ==================================================...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 01/18] PNP: add pnp_possible_config() -- can a device...
As part of a heuristic to identify modem devices, 8250_pnp.c checks to see whether a device can be configured at any of the legacy COM port addresses. This patch moves the code that traverses the PNP "possible resource options" from 8250_pnp.c to the PNP subsystem. This encapsulation is important because a future patch will change the implementation of those resource options. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> --- drivers/pnp/resource.c | 61 +++++++++++++++++++++...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 00/18] PNP: convert resource options to unified dynam...
This patch series converts the PNP resource option structures to a unified linked list. This preserves resource order, which is important for some devices. The bulk of the series is in the last patch, and it has more a more detailed changelog. Rene Herman did some testing of ISA devices and reviewed v1 of this series. I think I addressed all his comments. Any comments would be welcome. This depends on some patches that are in -mm, but not yet upstream. In mmotm, these would probably go after...
Jun 4, 6:09 pm 2008
Bjorn Helgaas
[patch 02/18] PNP: whitespace/coding style fixes
No functional change; just make a couple declarations consistent with the rest of the file. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by: Rene Herman <rene.herman@gmail.com> Index: work10/drivers/pnp/interface.c =================================================================== --- work10.orig/drivers/pnp/interface.c 2008-05-09 14:42:25.000000000 -0600 +++ work10/drivers/pnp/interface.c 2008-05-09 14:45:57.000000000 -0600 @@ -216,12 +216,12 @@ static ssize_t pnp_show...
Jun 4, 6:09 pm 2008
Larry Finger
Compiler warning in v2.6.26-rc4-213-ge97dcb0
With the version given in the subject, I get the following warning: CC drivers/serial/serial_core.o drivers/serial/serial_core.c:2300: warning: initialization from incompatible pointer type The problem arises in commit 64e9159f5d2c which has uart_set_ldisc as follows: static void uart_set_ldisc(struct tty_struct *tty, int ldisc) The set_ldisc routine has only one argument: void (*set_ldisc)(struct uart_port *); I think this additional patch fixes the problem: ...
Jun 4, 5:53 pm 2008
Sam Ravnborg
Simplify vmlinux link
Following two patches simplifies the foo used to link vmlinux to a level where it is maintainable again. The patches remove the KALLSYMS_EXTRA_PASS stuff and move the vmlinux link stuff to a small shell script. This need some testing as I have not even been able to boot test this as my dev box is down. So help and feedback is really appreciated. Full patch below - I will post sepearate patches as follow-up. Patches will be pushed out to kbuild-next only when I get some positive reponse that...
Jun 4, 5:45 pm 2008
Sam Ravnborg
Re: Simplify vmlinux link
This breaks um build btw. The 2/2 patch contains an attempt to fix it but I could not manage to tech ld how to find -lunit - despite that it worked with gcc. Sam --
Jun 4, 5:50 pm 2008
Sam Ravnborg
[PATCH 2/2] kbuild: simplify vmlinux link stage
From 68e9b79c8dad5245f28ab4f3527481b730dbdb61 Mon Sep 17 00:00:00 2001 From: Sam Ravnborg <sam@ravnborg.org> Date: Wed, 4 Jun 2008 23:38:15 +0200 Subject: [PATCH] kbuild: simplify vmlinux link stage Move link of vmlinux from Makefile to a script This makes the link process much more readable/maintainable. The process was entirely serialized before so there is not drawback doing so. With this move take advantage of the prelinked vmlinux.o file so we do not link all .o files more than onc...
Jun 4, 5:47 pm 2008
Sam Ravnborg
[PATCH 1/2] kbuild: drop support for KALLSYMS_EXTRA_PASS
From 636b71590757772f8a0af2155ae1e6fa0c1f0856 Mon Sep 17 00:00:00 2001 From: Sam Ravnborg <sam@ravnborg.org> Date: Wed, 4 Jun 2008 22:16:47 +0200 Subject: [PATCH] kbuild: drop support for KALLSYMS_EXTRA_PASS We have not seen any reports on inconsistent kallsysms data recently as in the last one or two years. At least I do not recall these and google had no hits in my searching. Removing this to simplify the final linking. When doing "make allyesconfig" build this extra linking takes consi...
Jun 4, 5:46 pm 2008
John W. Linville
pull request: wireless-2.6 2008-06-04
NOTE: This accounts for the net-2.6 rebase and drops the controversial wireless.h patch... Dave, A smattering of fixes for 2.6.26...nothing major... John --- Individual patches are available here: http://www.kernel.org/pub/linux/kernel/people/linville/wireless-2.6/ --- The following changes since commit 7dccf1f4e1696c79bff064c3770867cc53cbc71c: Jarek Poplawski (1): ax25: Fix NULL pointer dereference and lockup. are available in the git repository at: git://git.k...
Jun 4, 4:55 pm 2008
David Miller
Re: pull request: wireless-2.6 2008-06-04
From: "John W. Linville" <linville@tuxdriver.com> Pulled and pushed back out to net-2.6, thanks John. --
Jun 4, 6:04 pm 2008
Marco Cassinerio
PCI burst transfer mode
Hi, i'm writing a PCI Express driver. Currently it supports single address single data transfer mode. I'm wondering if there is a way to get burst transfer mode working, because I've Googled enough to get no satisfying results. Thanks Cpu86 --
Jun 4, 5:15 pm 2008
Kumar Gala
math-emu issue with fp divide
David, You seem to be the last person to touch the math-emu code in the kernel so I figured you might have some insights. I'm trying to move the powerpc math-emu code to use the include/math-emu bits. In doing so I've been using TestFloat to see how good or bad we are doing. For the most part the current math-emu code that PPC uses has a number of issues that the code in include/math-emu seems to solve (plus bugs we've had for ever that no one every realized). Anyways, I've come ac...
Jun 4, 4:38 pm 2008
Joseph S. Myers
Re: math-emu issue with fp divide
I'd like to remind people that the include/math-emu code is based on an old, buggy version of the soft-fp code in glibc. RTH previously noted <http://sourceware.org/ml/libc-alpha/2006-02/msg00075.html> that the fixes should go in the kernel, when approving a patch of mine fixing various bugs and speeding up soft-fp, and several more bugs have been fixed since then in the course of GCC work on soft-float for Power and __float128 support for x86_64. So it may be better than the old cod...
Jun 4, 5:42 pm 2008
David Miller
Re: math-emu issue with fp divide
From: "Joseph S. Myers" <joseph@codesourcery.com> Once the GCC folks started looking into using the soft-fp bits I knew this situation would develop. The kernel side would have some set of fixes and the glibc/gcc side would have yet another set. To be honest this doesn't surprise me... --
Jun 4, 5:49 pm 2008
David Miller
Re: math-emu issue with fp divide
From: Kumar Gala <galak@kernel.crashing.org> I'll try to look at this after I'm done with my current 3 week stint of travelling, but right now I really don't have time for stuff like this. I tried running TestFloat a couple weeks ago but I couldn't get the damn thing to even build properly after fighting with it for what seemed like hours :-/ I'll try again at some point. --
Jun 4, 5:37 pm 2008
Cliff Wickman
[PATCH 1/1] SGI UV: TLB shootdown using broadcast assist unit
From: Cliff Wickman <cpw@sgi.com> TLB shootdown for SGI UV. This patch provides the ability to flush TLB's in cpu's that are not on the local node. The hardware mechanism for distributing the flush messages is the UV's "broadcast assist unit". The hook to intercept TLB shootdown requests is a 2-line change to native_flush_tlb_others() (arch/x86/kernel/tlb_64.c). This code has been tested on a hardware simulator. The real hardware is not yet available. The shootdown statistics a...
Jun 4, 4:33 pm 2008
Cliff Wickman
[PATCH 1/1] x86 atomic operations: atomic_or_long atomic_inc...
From: Cliff Wickman <cpw@sgi.com> Provide atomic operations for increment of a 16-bit integer and logical OR into a 64-bit integer. [ This patch was split off of patch: SGI UV: TLB shootdown using broadcast assist unit and improved with advice from Jeremy Fitzhardinge <jeremy@goop.org> ] Diffed against 2.6.26-rc4 Signed-off-by: Cliff Wickman <cpw@sgi.com> --- include/asm-x86/atomic_64.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) In...
Jun 4, 4:33 pm 2008
Alex Chiang
[PATCH 0/4, v14] PCI, ACPI: Physical PCI slot objects
Hi Jesse, Ben, Kenji-san, This is v14 of the physical PCI slot series. This patchset has been kicking around -mm for the past few months, and they were getting clobbered on a continual basis, so let's say I'm quite motivated to get them into mainline. ;) This mail describes two things: - an update for handling pSeries - explanation of how I did not regress Kenji-san's latest changes Review comments are much appreciated. ----------------------- pSeries-related changes -----------...
Jun 4, 4:08 pm 2008
Alex Chiang
[PATCH] ACPI: PCI slot detection driver
Detect all physical PCI slots as described by ACPI, and create entries in /sys/bus/pci/slots/. Not all physical slots are hotpluggable, and the acpiphp module does not detect them. Now we know the physical PCI geography of our system, without caring about hotplug. [akpm@linux-foundation.org: build fix] [akpm@linux-foundation.org: fix build with CONFIG_DMI=n] Signed-off-by: Alex Chiang <achiang@hp.com> Cc: Greg KH <greg@kroah.com> Cc: Kristen Carlson Accardi <kristen.c.accardi@...
Jun 4, 4:18 pm 2008
Alex Chiang
[PATCH] PCI: Introduce pci_slot
Currently, /sys/bus/pci/slots/ only exposes hotplug attributes when a hotplug driver is loaded, but PCI slots have attributes such as address, speed, width, etc. that are not related to hotplug at all. Introduce pci_slot as the primary data structure and kobject model. Hotplug attributes described in hotplug_slot become a secondary structure associated with the pci_slot. This patch only creates the infrastructure that allows the separation of PCI slot attributes and hotplug attributes. In thi...
Jun 4, 4:16 pm 2008
Alex Chiang
[PATCH] kobject: Export kobject_rename for pci_hotplug_core
From: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> Export kobject_rename() to fix the following link error. This happens when pci_hotplug_core driver is compiled as a kernel module. ERROR: "kobject_rename" [drivers/pci/hotplug/pci_hotplug.ko] undefined! make[1]: *** [__modpost] Error 1 make: *** [modules] Error 2 make: *** Waiting for unfinished jobs.... Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> Acked-by: Alex Chiang <achiang@hp.com> Cc: Greg KH &l...
Jun 4, 4:16 pm 2008
Greg KH
Re: [PATCH] kobject: Export kobject_rename for pci_hotplug_c...
Acked-by: Greg Kroah-Hartman <gregkh@suse.de> --
Jun 4, 7:55 pm 2008
Alex Chiang
[PATCH] fakephp: Construct one fakephp slot per PCI slot
Register one slot per slot, rather than one slot per function. Change the name of the slot to fake%d instead of the pci address. Signed-off-by: Alex Chiang <achiang@hp.com> Signed-off-by: Matthew Wilcox <matthew@wil.cx> Cc: Greg KH <greg@kroah.com> Cc: Kristen Carlson Accardi <kristen.c.accardi@intel.com> Cc: Len Brown <lenb@kernel.org> Cc: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> --- dri...
Jun 4, 4:14 pm 2008
Steven Rostedt
2.6.25.4-rt5
We are pleased to announce the 2.6.25.4-rt5 tree, which can be downloaded from the location: http://rt.et.redhat.com/download/ Information on the RT patch can be found at: http://rt.wiki.kernel.org/index.php/Main_Page Changes since 2.6.25.4-rt4 - Compile fixes for event tracer (Carsten Emde) - RW lock priority leak fix (Steven Rostedt) - RW lock pi_list management fixes (Steven Rostedt) - Event trace hook in clocksource (Steven Rostedt) - rwlock torture test module ...
Jun 4, 3:56 pm 2008
Gregory Haskins
[PATCH 0/2] sched: hotplug and cpupri fixes (v2)
Hi Ingo, Steven, Thomas, et. al. The first patch is a refresh on the hotplug patch I sent last night: http://lkml.org/lkml/2008/6/3/490 I incorporated most of Peter's review comments. I skipped the update_sched_domains() suggestion for now since I think there might be some unrelated issues with that code that I didn't want to get into (yet, anyway). The second patch is something that Peter found while reviewing cpupri as part of this investigation. This series applies to 25.4-rt4, and as...
Jun 4, 3:03 pm 2008
Gregory Haskins
[PATCH 2/2] sched: fix cpupri priocount
A rounding error was pointed out by Peter Zijlstra which would result in the structure holding priorities to be off by one. Signed-off-by: Gregory Haskins <ghaskins@novell.com> CC: Peter Zijlstra <peterz@infradead.org> --- kernel/sched_cpupri.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/sched_cpupri.h b/kernel/sched_cpupri.h index 16d29b9..817c55c 100644 --- a/kernel/sched_cpupri.h +++ b/kernel/sched_cpupri.h @@ -4,7 +4,7 @@ #include <l...
Jun 4, 3:04 pm 2008
previous daytodaynext day
June 3, 2008June 4, 2008June 5, 2008