aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-02-27Bluetooth: Convert controller hdev->type to hdev->busMarcel Holtmann15-25/+25
The hdev->type is misnamed and should be actually hdev->bus instead. So convert it now. Signed-off-by: Marcel Holtmann <[email protected]>
2010-02-27Bluetooth: Add missing kfree() on error path in Atheros driverDan Carpenter1-0/+2
Add a couple kfree() calls on an error path. Signed-off-by: Dan Carpenter <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
2010-02-27Bluetooth: Make USB device id constantMárton Németh1-1/+1
The id_table field of the struct usb_device_id is constant in <linux/usb.h> so it is worth to make bcm203x_table also constant. The semantic match that finds this kind of pattern is as follows: (http://coccinelle.lip6.fr/) // <smpl> @r@ disable decl_init,const_decl_init; identifier I1, I2, x; @@ struct I1 { ... const struct I2 *x; ... }; @s@ identifier r.I1, y; identifier r.x, E; @@ struct I1 y = { .x = E, }; @c@ identifier r.I2; identifier s.E; @@ const struct I2 E[] = ... ; @depends on !c@ identifier r.I2; identifier s.E; @@ + const struct I2 E[] = ...; // </smpl> Signed-off-by: Márton Németh <[email protected]> Cc: Julia Lawall <[email protected]> Cc: [email protected] Signed-off-by: Marcel Holtmann <[email protected]>
2010-02-27Bluetooth: Add __init/__exit macros to Marvell SDIO driverPeter Huewe1-2/+2
Trivial patch which adds the __init/__exit macros to the module_init/ module_exit functions of btmrvl_sdio.c driver. Signed-off-by: Peter Huewe <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
2010-02-27MIPS: Alchemy: defconfig updatesManuel Lauss9-4283/+6340
Updated, leaner defconfig for the alchemy development boards. Signed-off-by: Manuel Lauss <[email protected]> To: Linux-MIPS <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/1005/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Alchemy: Fix Au1100 ethernet build failureManuel Lauss1-9/+10
Don't define platform info for second mac on au1100 (which only has a single mac). Signed-off-by: Manuel Lauss <[email protected]> To: Linux-MIPS <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/1004/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Alchemy: Repair db1500/bosporus buildsManuel Lauss1-24/+28
A few hunks somehow ended up outside their #ifdef/endif blocks, leading to -Werror-induces build failures. Signed-off-by: Manuel Lauss <[email protected]> To: Linux-MIPS <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/1003/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: ARC: Cleanup unused definitions from sgialib.hYoichi Yuasa1-45/+0
Signed-off-by: Yoichi Yuasa <[email protected]> Cc: linux-mips <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/979/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Cobalt: convert legacy port addresses to GT-64111 bus addressesBjorn Helgaas2-2/+61
The GT-64111 PCI host bridge has no address translation mechanism, so it can't generate legacy port accesses. This quirk fixes legacy device port resources to contain the bus addresses actually generated by the GT-64111. I think this is the approach Ben Herrenschmidt suggested long ago: http://marc.info/?l=linux-kernel&m=119733290624544&w=2 This allows us to remove the IORESOURCE_PCI_FIXED hack from pcibios_fixup_device_resources(), which converts bus addresses to CPU addresses. IORESOURCE_PCI_FIXED denotes resources that can't be moved; it has nothing to do with converting bus to CPU addresses. Signed-off-by: Bjorn Helgaas <[email protected]> Cc: Yoichi Yuasa <[email protected]> Cc: Thomas Bogendoerfer <[email protected]> Cc: Benjamin Herrenschmidt <[email protected]> Cc: [email protected] Tested-by: Yoichi Yuasa <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/998/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Alchemy: use 36bit addresses for PCMCIA resources.Manuel Lauss16-177/+123
On Alchemy the PCMCIA area lies at the end of the chips 36bit system bus area. Currently, addresses at the far end of the 32bit area are assumed to belong to the PCMCIA area and fixed up to the real 36bit address before being passed to ioremap(). A previous commit enabled 64 bit physical size for the resource datatype on Alchemy and this allows to use the correct 36bit addresses when registering the PCMCIA sockets. This patch removes the 32-to-36bit address fixup and registers the Alchemy demo board pcmcia socket with the correct 36bit physical addresses. Tested on DB1200, with a CF card (ide-cs driver) and a 3c589 PCMCIA ethernet card. Signed-off-by: Manuel Lauss <[email protected]> To: Linux-MIPS <[email protected]> Cc: Manuel Lauss <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/994/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Cobalt: Fix theoretical port aliasing issueRalf Baechle1-1/+1
Because the VIA SuperIO chip only decodes 24 bits of address space but port address space currently being configured as 32MB there is the theoretical possibility of aliases within the I/O port address range. The complicated solution is to reserve all address range that potencially could cause such aliases. But with the PCI spec limiting port allocations for devices to a maximum of 256 bytes 16MB of port address space already is way more than one would ever expect to be used so we just reduce the port space to 16MB. Signed-off-by: Ralf Baechle <[email protected]> To: Yoichi Yuasa <[email protected]> Cc: Bjorn Helgaas <[email protected]> Cc: [email protected] Cc: Benjamin Herrenschmidt <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/995/
2010-02-27MIPS: Use ALIGN(x, bytes) instead of __ALIGN_MASK(x, bytes - 1)Matt Turner1-3/+3
ALIGN(x, bytes) expands to __ALIGN_MASK(x, bytes - 1), so use the one that is most clear. Signed-off-by: Matt Turner <[email protected]> To: [email protected] Cc: David Daney <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/999/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Crazy spinlock speed test.David Daney3-0/+149
This is just a test program for raw_spinlocks. The main reason I wrote it is to validate my spinlock changes that I sent in a previous patch. To use it enable CONFIG_DEBUG_FS and CONFIG_SPINLOCK_TEST then at run time do: # mount -t debugfs none /sys/kernel/debug/ # cat /sys/kernel/debug/mips/spin_single # cat /sys/kernel/debug/mips/spin_multi On my 600MHz octeon cn5860 (16 CPUs) I get spin_single spin_multi base 106885 247941 spinlock_patch 75194 219465 This shows that for uncontended locks the spinlock patch gives 41% improvement and for contended locks 12% improvement (1/time). Signed-off-by: David Daney <[email protected]> To: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/969/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Optimize spinlocks.David Daney3-81/+67
The current locking mechanism uses a ll/sc sequence to release a spinlock. This is slower than a wmb() followed by a store to unlock. The branching forward to .subsection 2 on sc failure slows down the contended case. So we get rid of that part too. Since we are now working on naturally aligned u16 values, we can get rid of a masking operation as the LHU already does the right thing. The ANDI are reversed for better scheduling on multi-issue CPUs On a 12 CPU 750MHz Octeon cn5750 this patch improves ipv4 UDP packet forwarding rates from 3.58*10^6 PPS to 3.99*10^6 PPS, or about 11%. Signed-off-by: David Daney <[email protected]> To: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/937/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Alchemy: devboard PM needs to save CPLD registers.Manuel Lauss1-0/+32
Save/restore CPLD registers when doing suspend-to-ram; this fixes issues with harddisk and ethernet not working correctly when resuming on DB1200. Signed-off-by: Manuel Lauss <[email protected]> To: Linux-MIPS <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/986/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: PowerTV: Eliminate duplicate opcode definition macrosDavid VomLehn1-53/+49
Change to different macros for assembler macros since the old names in powertv_setup.c were co-opted for use in asm/asm.h. This broken the build for the powertv platform. This patch introduces new macros based on the new macros in asm.h to take the place of the old macro values. Signed-off-by: David VomLehn <[email protected]> Cc: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/985/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Lemote 2F: Move printks out of port_access_lock.Ralf Baechle1-2/+2
No point in protecting them and printks are sloow. Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: PNX833x: Convert IRQ controller locks to raw spinlocks.Ralf Baechle1-18/+18
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Octeon: Replace spinlock with raw_spinlocks in dma-octeon.c.David Daney1-5/+5
Signed-off-by: David Daney <[email protected]> Cc: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/973/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Octeon: Replace rwlocks in irq_chip handlers with raw_spinlocks.David Daney1-28/+14
Signed-off-by: David Daney <[email protected]> Cc: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/972/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Octeon: Convert octeon_irq_msi_lock to raw spinlock.Ralf Baechle1-5/+5
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Loongson: Remove pointless sample_lock from oprofile code.Ralf Baechle1-7/+0
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: SNI: Convert sni_rm200_i8259A_lock to raw spinlock.Ralf Baechle1-11/+11
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: i8259: Convert IRQ controller lock to raw spinlock.Ralf Baechle3-16/+16
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: IP27: Convert nmi_lock lock to arch spinlock;Ralf Baechle1-2/+2
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: IP27: Remove code obfuscation by enter_panic_mode().Ralf Baechle1-3/+2
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: GT641xx: Convert timer lock to raw spinlock.Ralf Baechle1-5/+5
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Alchemy: Simplify DMA channel allocation code.Ralf Baechle1-55/+56
Signed-off-by: Ralf Baechle <[email protected]> Cc: Manuel Lauss <[email protected]>
2010-02-27MIPS: Yosemite: Convert SMP startup lock to arch spinlock.Ralf Baechle1-4/+4
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Alchemy: Remove time_lock.Ralf Baechle1-7/+0
The sole user is au1xxx_calc_clock() which is only used in early bootup where the is no paralellism thus no race condition to protect against. Signed-off-by: Ralf Baechle <[email protected]> Cc: Manuel Lauss <[email protected]>
2010-02-27MIPS: DEC: Convert KN01 lock to raw spinlock.Ralf Baechle1-5/+5
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: BCM63xx: Convert timer locks to raw spinlocks.Ralf Baechle1-17/+17
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: PowerTV: Convert IRQ controller lock to raw spinlock.Ralf Baechle1-3/+3
Signed-off-by: Ralf Baechle <[email protected]> Cc: David VomLehn <[email protected]>
2010-02-27MIPS: Malta: Convert IRQ controller lock to raw spinlock.Ralf Baechle1-3/+3
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: SB1480: Convert IRQ controller lock to raw spinlock.Ralf Baechle1-7/+7
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: SB1250: Convert IRQ controller lock to raw spinlock.Ralf Baechle1-7/+7
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: GT641xx: Convert IRQ controller lock to raw spinlock.Ralf Baechle1-9/+9
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Jazz: Convert irq controller lock to raw spinlock.Ralf Baechle1-5/+5
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Make various locks static.Ralf Baechle9-9/+9
Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27Staging: Octeon: Remove /proc/octeon_ethernet_statsDavid Daney4-178/+0
This file shouldn't be in /proc, so we remove it. Signed-off-by: David Daney <[email protected]> To: [email protected] To: [email protected] To: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/970/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27Staging: Octeon: Reformat a bunch of comments.David Daney7-71/+44
Many of the comments didn't follow kerneldoc guidlines. Signed-off-by: David Daney <[email protected]> To: [email protected] To: [email protected] To: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/971/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27Staging: Octeon: Free transmit SKBs in a timely mannerDavid Daney6-63/+142
If we wait for the once-per-second cleanup to free transmit SKBs, sockets with small transmit buffer sizes might spend most of their time blocked waiting for the cleanup. Normally we do a cleanup for each transmitted packet. We add a watchdog type timer so that we also schedule a timeout for 150uS after a packet is transmitted. The watchdog is reset for each transmitted packet, so for high packet rates, it never expires. At these high rates, the cleanups are done for each packet so the extra watchdog initiated cleanups are neither needed nor triggered. Signed-off-by: David Daney <[email protected]> To: [email protected] To: [email protected] To: [email protected] Cc: Eric Dumazet <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/968/ Signed-off-by: Ralf Baechle <[email protected]> This version has spelling and comment changes based on feedback from Eric Dumazet.
2010-02-27MIPS: Octeon: Do proper acknowledgment of CIU timer interrupts.David Daney1-4/+63
Signed-off-by: David Daney <[email protected]> To: [email protected] To: [email protected] To: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/967/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27Staging: Octeon: Run phy bus accesses on a workqueue.David Daney3-63/+109
When directly accessing a phy, we must acquire the mdio bus lock. To do that we cannot be in interrupt context, so we need to move these operations to a workqueue. Signed-off-by: David Daney <[email protected]> To: [email protected] To: [email protected] To: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/965/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27Staging: octeon: remove unneeded includesDavid Daney6-6/+0
Signed-off-by: David Daney <[email protected]> To: [email protected] To: [email protected] To: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/964/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Use generic ucontext.hYoichi Yuasa1-21/+1
Signed-off-by: Yoichi Yuasa <[email protected]> Cc: linux-mips <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/959/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Use generic serial.hYoichi Yuasa1-22/+1
Signed-off-by: Yoichi Yuasa <[email protected]> Cc: linux-mips <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/960/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Use generic parport.hYoichi Yuasa1-15/+1
Signed-off-by: Yoichi Yuasa <[email protected]> Cc: linux-mips <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/958/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Use generic current.hYoichi Yuasa1-23/+1
Signed-off-by: Yoichi Yuasa <[email protected]> Cc: linux-mips <[email protected]> Patchwork: http://patchwork.linux-mips.org/patch/957/ Signed-off-by: Ralf Baechle <[email protected]>
2010-02-27MIPS: Enable Read Inhibit/eXecute Inhibit for Octeon+ CPUsDavid Daney1-0/+3
Signed-off-by: David Daney <[email protected]> To: [email protected] Patchwork: http://patchwork.linux-mips.org/patch/955/ Signed-off-by: Ralf Baechle <[email protected]>