ChangeSet@1.1110, 2003-03-06 21:29:33-08:00, torvalds@home.transmeta.com Fix a very theoretical race between the new RCU lookup and concurrent renames in another directory. I doubt this can be triggered in practice, and the fix is a bit heavy-handed, but let's see if numbers can show that the simple fix doesn't show any real lock contention. ChangeSet@1.1109, 2003-03-06 21:27:20-08:00, torvalds@home.transmeta.com Fix "con_init()" function type and stale (and incorrect) declaration ChangeSet@1.1108, 2003-03-06 21:12:44-08:00, anton@samba.org [PATCH] missing include list.h must now include stddef since it uses NULL. ChangeSet@1.1107, 2003-03-06 17:57:26-08:00, hpa@transmeta.com [PATCH] bootsect removal This is the "boot sector removal" patch for i386 updated for Linux 2.5.63-bk7. The only change against the 2.5.59 version is that the FDOPTS Makefile variable, which lets one create a floppy image with arbitrary kernel options, has been merged from the x86-64 version, and the comments have been updated. The patch removes the in-kernel boot sector, which these days rarely work correctly (it only supports up to 1 MB kernels, and only work on legacy floppies -- not on IDE or USB devices, nor on any kind of emulated devices like El Torito), replaces it with a placeholder stub, and sets up the Makefile targets to create floppies or floppy images using SYSLINUX. The FDOPTS Makefile variable can be used to set kernel command line options (thanks to a suggestion by Andi Kleen.) Note that the same change has already been applied to the x86-64 architecture. The last hunk of the patch corrects a comment in that architecture. ChangeSet@1.1106, 2003-03-06 17:49:37-08:00, rmk@arm.linux.org.uk [PATCH] Fix up pci_scan_bridge and friends Now we tackle pci_add_new_bus and pci_scan_bridge. The hotplug code currently uses this, but I'd like it to die off; pci_scan_bridge() should be used to scan behind bridges. This may mean hotplug needs some changes to pci_scan_bridge - if so, we need to find out what changes are required and fix it. pci_alloc_child_bus() does what pci_add_new_bus() did, except it doesn't attach the new bus to the parents list of child buses. The only way this bus can be reached from the parent bus is by scanning the parents devices list, and locating a device with a non-NULL subordinate bus. The only code which should be doing this is the PCI code. Since the new bus will have an empty list head for bus->node, we can detect unattached buses prety easily. (see pci-3.diff.) pci_scan_bridge() changes slightly - we use our new pci_scan_child_bus() function from pci-3.diff, which doesn't attach devices to the global tree. This means callers of pci_scan_child_bus() and pci_scan_bridge() (ie, hotplug) will need to call pci_bus_add_devices(). ChangeSet@1.1105, 2003-03-06 17:49:30-08:00, rmk@arm.linux.org.uk [PATCH] Convert setup-bus resource allocation to use bus->devices - Convert setup-bus.c resource allocation to scan bus->devices rather than bus->children. As noted previously, newly discovered child buses will not be on the parents list of children buses, so when we're trying to assign resources, we need to scan the bus for devices with subordinate buses rather than using the list of children buses. ChangeSet@1.1104, 2003-03-06 17:49:22-08:00, rmk@arm.linux.org.uk [PATCH] Only add devices to bus->devices while scanning... The pci_find* functions search using the following lists: bus->children (for subordinate buses) pci_root_buses (for all root buses) pci_devices (for devices) This leaves one list which we can add devices to without any drivers finding the new devices before we've finished with them. - initialise bus->node list head. - pci_scan_slot will scan the specified slot, and add the discovered devices to the bus->devices list only. These devices will not appear on the global device list, and do not show in sysfs, procfs. pci_scan_slot returns the number of functions found. If you want to find the devices, you have to scan bus->devices and look for devices where list_empty(&dev->global_list) is true. - new function "pci_bus_add_devices" adds newly discovered devices to the global device lists, and handles the sysfs and procfs stuff, making the devices available to drivers. All our buses which have an empty list head are treated as "new" (since they are not attached to the parent buses list of children) and are also added. Currently, no buses will be in this state when this function is called. - new function "pci_scan_child_bus" scans a complete bus, building a list of devices on bus->devices only, performing bus fixups via pcibios_fixup_bus() and scanning behind bridges. It does make devices externally visible. - pci_do_scan_bus retains its original behaviour - ie, it scans and makes devices available immediately. ChangeSet@1.1103, 2003-03-06 17:49:14-08:00, rmk@arm.linux.org.uk [PATCH] Eliminate stack allocation of struct pci_dev... - Eliminate the stack allocation of a struct pci_dev, and make pci_scan_slot() take a bus and a devfn argument. - Add "dev->multifunction" to indicate whether this is a multifunction device. - Run header fixups before inserting the new pci device into any device lists or announcing it to the drivers. - Convert some more stuff to use the list_for_each* macro(s). ChangeSet@1.1102, 2003-03-06 17:49:06-08:00, rmk@arm.linux.org.uk [PATCH] Separate out pci bus resource allocator - Separate out bus resource allocator (pci_bus_alloc_resource) - Provide pci_enable_bridges to setup command register for all pci bridges. ChangeSet@1.1101, 2003-03-06 17:44:51-08:00, torvalds@home.transmeta.com Merge home.transmeta.com:/home/torvalds/v2.5/alan into home.transmeta.com:/home/torvalds/v2.5/linux ChangeSet@1.1068.10.43, 2003-03-06 17:44:28-08:00, alan@lxorguk.ukuu.org.uk [PATCH] update via driver from 3.35-ac to 3.36 ChangeSet@1.1068.10.42, 2003-03-06 17:44:20-08:00, alan@lxorguk.ukuu.org.uk [PATCH] fix wrong type and statics in amd ide ChangeSet@1.1068.10.41, 2003-03-06 17:44:13-08:00, alan@lxorguk.ukuu.org.uk [PATCH] switch ide taskfile ioctls to ide_execute_command ChangeSet@1.1068.10.40, 2003-03-06 17:44:05-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove spare cast ChangeSet@1.1068.10.39, 2003-03-06 17:43:58-08:00, alan@lxorguk.ukuu.org.uk [PATCH] add sensible names to the ide iops The outbsync one has further changes to come in the next batch to sort out some platforms like PPC ChangeSet@1.1068.10.38, 2003-03-06 17:43:49-08:00, alan@lxorguk.ukuu.org.uk [PATCH] switch ide-io (core ioctls etc) to ide_execute_command Also fix the irq masking bug ChangeSet@1.1068.10.37, 2003-03-06 17:43:42-08:00, alan@lxorguk.ukuu.org.uk [PATCH] switch ide-floppy to ide_execute_command ChangeSet@1.1068.10.36, 2003-03-06 17:43:35-08:00, alan@lxorguk.ukuu.org.uk [PATCH] ide-dma This switches ide-dma to ide_execute_command and makes IDE DMA also happy when running shared IRQ ChangeSet@1.1068.10.35, 2003-03-06 17:43:28-08:00, alan@lxorguk.ukuu.org.uk [PATCH] bring ide-disk driver into line with 2.4.21pre This doesn't have the new -ac testing stuff from 2.4.21pre5-ac but it has the stuff I now trust in it. This fixes the cache flush stuff and also means ide-disk now should be safe shared IRQ ChangeSet@1.1068.10.34, 2003-03-06 17:43:18-08:00, alan@lxorguk.ukuu.org.uk [PATCH] clean up all the console inits using an initcall variant Dave Woodhouse did this a while ago and its been kicking around in my tree just fine. This gets rid of a lot of the init lists of functions still left in the kernel by having an __init type array built up for the consoles as well ChangeSet@1.1068.10.33, 2003-03-06 17:43:10-08:00, alan@lxorguk.ukuu.org.uk [PATCH] correct building of the old ide/hd.c driver ChangeSet@1.1068.10.32, 2003-03-06 17:43:02-08:00, alan@lxorguk.ukuu.org.uk [PATCH] correct irq logic for x86 We must not look for a PCI IRQ for a non native mode IDE device We must write PCI_INTERRUPT_LINE for VIA ChangeSet@1.1068.10.31, 2003-03-06 17:42:55-08:00, alan@lxorguk.ukuu.org.uk [PATCH] update PCI quirks ALi Magik requires workarounds for TV chips IDE controllers require proper handling in legacy mode PXB must be disabled on C0 450NX or the IDE will corrupt memory VIA northbridge devices require the interrupt line is written NEC_CBUS_2/3 require ISA DMA workarounds ChangeSet@1.1068.10.30, 2003-03-06 17:42:46-08:00, alan@lxorguk.ukuu.org.uk [PATCH] ALi it turns out has a 31bit audio device ChangeSet@1.1068.10.29, 2003-03-06 17:42:37-08:00, alan@lxorguk.ukuu.org.uk [PATCH] clean up 2.2 stuff in wanrouter code ChangeSet@1.1068.10.28, 2003-03-06 17:42:28-08:00, alan@lxorguk.ukuu.org.uk [PATCH] correct file names in comments in mm ChangeSet@1.1068.10.27, 2003-03-06 17:42:20-08:00, alan@lxorguk.ukuu.org.uk [PATCH] correct emu10k url ChangeSet@1.1068.10.26, 2003-03-06 17:42:12-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove 2.0/2.2 stuff from wanrouter ChangeSet@1.1068.10.25, 2003-03-06 17:42:06-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove 2.0/2.2 stuff ChangeSet@1.1068.10.24, 2003-03-06 17:41:57-08:00, alan@lxorguk.ukuu.org.uk [PATCH] add a new PCI quirk type for the ALi Magik series This chip needs latency and other setups to avoid a PCI/AGP deadlock with tv cards ChangeSet@1.1068.10.23, 2003-03-06 17:41:50-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove 2.0 and 2.2 stuff from netfilter ChangeSet@1.1068.10.22, 2003-03-06 17:41:42-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove 2.2 bits fromw anpipe ChangeSet@1.1068.10.21, 2003-03-06 17:41:33-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove 2.2 junk from efs ChangeSet@1.1068.10.20, 2003-03-06 17:41:25-08:00, alan@lxorguk.ukuu.org.uk [PATCH] Add ELF types for Hitach H8 series ChangeSet@1.1068.10.19, 2003-03-06 17:41:18-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove unused beep macro on sh ChangeSet@1.1068.10.18, 2003-03-06 17:41:09-08:00, alan@lxorguk.ukuu.org.uk [PATCH] correct BUG doc in parisc ChangeSet@1.1068.10.17, 2003-03-06 17:41:02-08:00, alan@lxorguk.ukuu.org.uk [PATCH] add serial port table for PC9800 ChangeSet@1.1068.10.16, 2003-03-06 17:40:53-08:00, alan@lxorguk.ukuu.org.uk [PATCH] kill long unused macro ChangeSet@1.1068.10.15, 2003-03-06 17:40:46-08:00, alan@lxorguk.ukuu.org.uk [PATCH] kill the now dead ide_ioreg_t ChangeSet@1.1068.10.14, 2003-03-06 17:40:38-08:00, alan@lxorguk.ukuu.org.uk [PATCH] correct BUG doc ChangeSet@1.1068.10.13, 2003-03-06 17:40:31-08:00, alan@lxorguk.ukuu.org.uk [PATCH] missed patch - static not extern inline in cia ChangeSet@1.1068.10.12, 2003-03-06 17:40:23-08:00, alan@lxorguk.ukuu.org.uk [PATCH] kill stdarg in intermezzo ChangeSet@1.1068.10.11, 2003-03-06 17:40:16-08:00, alan@lxorguk.ukuu.org.uk [PATCH] filter more 2.2 junk ChangeSet@1.1068.10.10, 2003-03-06 17:40:08-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove a pile of 2.0 and 2.2 support ChangeSet@1.1068.10.9, 2003-03-06 17:39:51-08:00, alan@lxorguk.ukuu.org.uk [PATCH] fix aic7xxx aicasm build The -ldb has to be at the end sometimes ChangeSet@1.1068.10.8, 2003-03-06 17:39:45-08:00, alan@lxorguk.ukuu.org.uk [PATCH] another typo that escaped ChangeSet@1.1068.10.7, 2003-03-06 17:39:38-08:00, alan@lxorguk.ukuu.org.uk [PATCH] more 2.0/2.2 bits ChangeSet@1.1068.10.6, 2003-03-06 17:39:29-08:00, alan@lxorguk.ukuu.org.uk [PATCH] more 2.0 crap ChangeSet@1.1068.10.5, 2003-03-06 17:39:22-08:00, alan@lxorguk.ukuu.org.uk [PATCH] look a typo 8) ChangeSet@1.1068.10.4, 2003-03-06 17:39:14-08:00, alan@lxorguk.ukuu.org.uk [PATCH] exterminate 2.2 gunk from video stuff ChangeSet@1.1068.10.3, 2003-03-06 17:39:06-08:00, alan@lxorguk.ukuu.org.uk [PATCH] remove 2.2 compatmac stuff from rio driver ChangeSet@1.1068.10.2, 2003-03-06 17:38:57-08:00, alan@lxorguk.ukuu.org.uk [PATCH] minor typo fix that got missed ChangeSet@1.1068.10.1, 2003-03-06 17:38:50-08:00, alan@lxorguk.ukuu.org.uk [PATCH] minor breakage fix from typo fixes ChangeSet@1.1100, 2003-03-06 17:25:00-08:00, linux@brodo.de [PATCH] pcmcia: it works again! platform_device_register may only be called after all class-specific device data is initialized, or else the class-type add_device call (which enables the pcmcia sockets) will fail. ChangeSet@1.1099, 2003-03-06 17:24:19-08:00, Andries.Brouwer@cwi.nl [PATCH] scsi_error fix imm.c: spelling scsi.h: remove old and now incorrect comment scsi_scan.c: remove superfluous final return scsi_error.c: apart from similar trivialities the only change: If a command fails (e.g. because it belongs to a newer SCSI version than the device), it is fed to scsi_decide_disposition(). That routine must return SUCCESS, unless the error handler should be invoked. In the situation where host_byte is DID_OK, and message_byte is COMMAND_COMPLETE, and status is CHECK_CONDITION, there is no reason at all to invoke aborts and resets. The situation is normal. I see here UNIT ATTENTION, Power on occurred and ILLEGAL REQUEST, Invalid field in cdb. The 2.5.64 code does not return SUCCESS, but it returns the return code of scsi_check_sense(), and that may be FAILED in case we do not have valid sense. ChangeSet@1.1098, 2003-03-06 17:15:02-08:00, akpm@digeo.com [PATCH] fix ioremap off by one bug Patch from Andreas Klein Fixes an off-by-one in ioremap() - local variable `last_addr' is *inclusive* - it is the last byte of the mapping, not the usual (last byte + 1). ChangeSet@1.1097, 2003-03-06 17:14:55-08:00, akpm@digeo.com [PATCH] ext3: fix error-path memory leak Fix an error-path memory leak in ext3_fill_super(). ChangeSet@1.1096, 2003-03-06 17:14:48-08:00, akpm@digeo.com [PATCH] uninlining in fs/binfmt_elf.c uninline some functions which have multiple callsites. A 5% reduction in text size. ChangeSet@1.1095, 2003-03-06 17:14:41-08:00, akpm@digeo.com [PATCH] reduce stack size: elf_core_dump() Patch from "Randy.Dunlap" This patch reduces stack size in elf_core_dump() from over 0x400 (0x4a4 e.g.) to less than 0x100 (0xb0 on a P4 with gcc 2.96). ChangeSet@1.1094, 2003-03-06 17:14:34-08:00, akpm@digeo.com [PATCH] missed unlock_kernel() in ext3+htree Patch from Alex Tomas There's a missing unlock_kernel(). ChangeSet@1.1093, 2003-03-06 17:14:27-08:00, akpm@digeo.com [PATCH] remove __pte_offset Patch from Dave Hansen ptes this time ChangeSet@1.1092, 2003-03-06 17:14:20-08:00, akpm@digeo.com [PATCH] remove __pmd_offset Patch from Dave Hansen Same thing as the __pgd_offset one, just for pmds this time to keep the naming consistent. ChangeSet@1.1091, 2003-03-06 17:14:13-08:00, akpm@digeo.com [PATCH] remove __pgd_offset Patch from Dave Hansen __pgd_offset() and pgd_offset() are completely different functions. __pgd_offset() is really just a helper to figure out which entry in a pgd an address would fall into. pgd_offset() does all the leg work and actually fetches the real pgd entry. pgd_index() is a much saner name for what __pgd_offset() does. In fact, we do this: #define __pgd_offset(address) pgd_index(address) The attached patch removes all instances of __pgd_offset and just replaces them with pgd_index. Compiles with and without PAE on x86. ChangeSet@1.1090, 2003-03-06 17:14:05-08:00, akpm@digeo.com [PATCH] fix inode reclaim imbalance Well I thought we were shooting down unused inodes a bit aggressively. With 30,000 inodes total and 1000 unused, the 1000 are getting reclaimed instantly. shrink_icache_memory() needs to return the number of reclaimable inodes to page reclaim, not the total number. ChangeSet@1.1089, 2003-03-06 17:13:58-08:00, akpm@digeo.com [PATCH] Reduced stack usage in random.c Patch from: Matthew Wilcox Reduces stack use in random.c by 350 (or maybe 700) bytes by sharing a local array between two functions. ChangeSet@1.1088, 2003-03-06 17:13:51-08:00, akpm@digeo.com [PATCH] export pfn_to_nid to modules Patch from Patricia Gaughen This function was recently uninlined for NUMAQ. But it used to be a macro, and modules need it. ChangeSet@1.1087, 2003-03-06 17:13:43-08:00, akpm@digeo.com [PATCH] cciss: fix initialization for PCI hotplug Patch from Stephen Cameron * Fix driver to wait for firmware to indicate that it is ready. (Needed for PCI hotplug case, but for normal warm/cold reboot, by the time driver inits, firmware will already be ready.) ChangeSet@1.1086, 2003-03-06 17:13:36-08:00, akpm@digeo.com [PATCH] sk98lin 64-bit divide fix This driver is doing a division on a 64 bit valus which is identical to "jiffies" and is asking for __udiv64. Cast the 64-bit value back to long. ChangeSet@1.1085, 2003-03-06 17:13:30-08:00, akpm@digeo.com [PATCH] rtc lock ranking fix Patch from: Zwane Mwaikambo Fix up a possible AB/BA deadlock identified by Dawson Engler's latest toy. ChangeSet@1.1084, 2003-03-06 17:13:22-08:00, akpm@digeo.com [PATCH] Fix nfs oops during mount Patch from Trond Myklebust This has been floating about for a while, and fixes the oops which people keep on reporting. ChangeSet@1.1083, 2003-03-06 17:13:15-08:00, akpm@digeo.com [PATCH] balance_irq lockup fix irqdesc_t.lock is taken from interrupts - it needs irq-safe locking from process context. Also timer_irq_works() needs to use an unsigned long to hold a jiffies value (Kai Bankett) ChangeSet@1.1082, 2003-03-06 17:13:08-08:00, akpm@digeo.com [PATCH] i386 IRQ balancing cleanup General coding cleanups in io_apic.c: - make pending_irq_balance_apicid[] static - reorder several functions so that forward decls are not needed and so that `inline' actually works. - 80 col fixes. ChangeSet@1.1068.9.7, 2003-03-06 18:27:31-06:00, kai@tp1.ruhr-uni-bochum.de do_mounts: Fix boot from ramdisk Russell King investigated a failure case I introduced: When booting with "load_ramdisk=1", we use the kernel root= parameter to determine from what device to get the contents to copy into a ramdisk and then mount that ramdisk as root. For the copy to work, /dev/root needs to point to the device to load the ramdisk from. ChangeSet@1.1075.2.1, 2003-03-06 16:17:07-08:00, davem@nuts.ninka.net [IPSEC]: Fix build when ipsec is disabled. ChangeSet@1.1068.1.28, 2003-03-07 00:16:38+00:00, rmk@flint.arm.linux.org.uk [ARM] Add generic SSP "PIO" mode driver Add SSP PIO driver - provides an interface for talking to microcontrollers and such like connected to the SA1110's SSP port. ChangeSet@1.1068.7.7, 2003-03-06 15:47:22-08:00, greg@kroah.com [PATCH] USB: unfortunatly, we can't call usb_unlink_urb() right now all of the time. The host controllers have to be fixed up before we can safely take out the check for dev->state. ChangeSet@1.1068.7.6, 2003-03-06 15:46:40-08:00, david-b@pacbell.net [PATCH] USB: track usb ch9 device state This patch merges the USB state definitions from the ARM Linux code (inside the sa1100 driver) and uses them to track what can be done with the device. That replaces the recently added "udev->present" flag with a more complete/standard state model. There are a few changes that might affect behavior if things start to go really haywire: - usb_set_address() and usb_set_configuration(), used while enumerating, handle some unlikely cases more correctly: don't allow setting address to zero (undefined behavior), and do allow un-configuring (config 0). (Adds a FIXME for an existing set-configuration bug too.) - usb_disconnect() flags the state change earlier (as soon as it's known). - usb_submit_urb() works in the states where messaging is allowed, and also enforces the "unless configured, only control traffic is legal" rule. - usb_unlink_urb() doesn't care any more about that state. (There seemed to be agreement that it must not matter.) This will help with some further cleanups in the complex of issues relating to driver removal, device removal, config changing (with driver unbind and rebind), reset, and so on. ChangeSet@1.1068.7.5, 2003-03-06 13:55:05-08:00, stern@rowland.harvard.edu [PATCH] USB: Patch for auto-sense cmd_len This patch fixes an oversight in usb-storage whereby the command length and command buffer for an automatically-generated REQUEST-SENSE command would not be initialized properly. ChangeSet@1.1077, 2003-03-06 13:14:03-08:00, torvalds@penguin.transmeta.com Merge ChangeSet@1.1075.1.1, 2003-03-06 13:08:47-08:00, mingo@elte.hu [PATCH] "interactivity changes", sched-2.5.64-A6 This includes the following items: - a new wakeup feature: SMART_WAKE_CHILD (now unconditional) [this is a reworked version of the wakeup changes from Andrea's tree.] - scheduler parameter tunings (CHILD_PENALTY, MAX_TIMESLICE, STARVATION_LIMIT, MAX_SLEEP_AVG) - activate_task() splitup to separate the interactivity-active variant from the task-queue variant => this fixes our statistics in some cases. - finer-grained preemption: if priority is equal then the task with the longer pending timeslice wins. - make it possible to disable sync-wakeups via SYNC_WAKEUPS (default:1) - a naming cleanup (sleep_timestamp => last_run) - fix up STARVATION_LIMIT usage so that a value of 0 is recognized as 'no starvation limit'. It also merges Linus' "priority boost backmerging" ChangeSet@1.1076, 2003-03-06 12:59:29-08:00, torvalds@home.transmeta.com Make the "interactive bonus" work both ways - both the process that is actually showing interactive behaviour (sleeping) and the process that wakes up the interative process get a bonus. This means that processes that help interactive processes (usually system daemons, and X11 in particular) will themselves get some bonus. The waker only gets whatever is left over from the "real" interactive user, to avoid any bad behaviour. ChangeSet@1.1068.1.27, 2003-03-06 20:34:37+00:00, rmk@flint.arm.linux.org.uk Merge flint.arm.linux.org.uk:/usr/src/linux-bk-2.5/linux-2.5 into flint.arm.linux.org.uk:/usr/src/linux-bk-2.5/linux-2.5-rmk ChangeSet@1.1060.3.18, 2003-03-06 20:26:33+00:00, rmk@flint.arm.linux.org.uk [CPUFREQ] Make sa11x0_ppcr_to_freq return in units of kHz, not 100kHz. ChangeSet@1.1060.3.17, 2003-03-06 19:27:52+00:00, rmk@flint.arm.linux.org.uk [ARM] CPUFREQ - allow ARM to work with userspace governor. Patch from Dominik Brodowski. This patch is necessary to update the ARM drivers so that they can live with the new cpufreq governor "userspace" (which I sent to Linus a moment ago). ChangeSet@1.1025.18.3, 2003-03-06 09:36:37-08:00, ink@jurassic.park.msu.ru [PATCH] alpha pcibios_claim_console_setup fix pcibios_claim_console_setup() doesn't look behind PCI-PCI bridges. Noticed by Anton Blanchard. Ivan. ChangeSet@1.1073, 2003-03-06 09:11:27-08:00, laforge@netfilter.org [NETFILTER]: Fix ipv6 build. ChangeSet@1.1072, 2003-03-06 09:08:59-08:00, jmorris@intercode.com.au [IPV4]: Fix multicast route lookups. ChangeSet@1.1060.3.16, 2003-03-06 16:49:18+00:00, rmk@flint.arm.linux.org.uk [CPUFREQ] Update ARM CPUFREQ drivers A 4 patch set from Dominik Brodowski, tested and fixed up by rmk for ARM. (1) - the system3.c cpufreq notifier couldn't possibly compile before because cpufreq_updateminmax has been undefined for ages. - clean up sa1100fb.c notifier to specify exactly what's left TBD. - double #include of cpufreq.c in drivers/pcmcia/sa1100_generic.c (2) Split up config symbols, add help text for CPU_FREQ_PROC_INTF (3) - update the Integrator CPUfreq driver so that it can get along with cpufreq policies. - modularize Integrator CPUfreq driver (all it did with !CONFIG_CPU_FREQ was to print out some debug information) (4) - update the SA11x0 CPUfreq drivers so that they can get along with cpufreq policies and governors. - update the cpufreq core so that cpufreq_get() returns something sensible during the first ->setpolicy or ->target call. ChangeSet@1.1060.3.15, 2003-03-06 16:27:13+00:00, rmk@flint.arm.linux.org.uk [ARM] Clean up ARM PCI support (bios32.c) Eliminate have_isa_bridge - use isa_bridge instead. Clean up PCI bus walking. Clean up detection of fast back to back capability. Ensure we set the bridge control register appropriately. Pin swizzle functions are never called with pin == 0. ChangeSet@1.1060.3.14, 2003-03-06 16:09:12+00:00, rmk@flint.arm.linux.org.uk [ARM] Add better PM support to SA1111 and SA11x0. This follows our existing PM interfaces. ChangeSet@1.1060.3.13, 2003-03-06 16:01:00+00:00, rmk@flint.arm.linux.org.uk [ARM] Power management updates This provides an element of core PM support to ARM, providing an APM like user space interface, and separating the core PM support from the SA1100 PM implementation. ChangeSet@1.1060.3.12, 2003-03-06 15:53:08+00:00, rmk@flint.arm.linux.org.uk [ARM] Ensure we preserve other CPSR bits when switching to SVC mode. ChangeSet@1.1060.3.11, 2003-03-06 14:58:36+00:00, rmk@flint.arm.linux.org.uk [ARM] Update mach-types to latest vesion. ChangeSet@1.1060.3.10, 2003-03-06 14:53:11+00:00, rmk@flint.arm.linux.org.uk [ARM] Make TLB instruction selection more fine-grained This eliminates some unnecessary branches and instructions in the TLB flush macros where configurations allow for this to occur. ChangeSet@1.1060.3.9, 2003-03-06 14:44:32+00:00, rmk@flint.arm.linux.org.uk [ARM] Fix ARM ide.h Kill ide_* resource handling. Add __ide_mm* macros to use our string based mmio. ChangeSet@1.1060.3.8, 2003-03-06 14:07:07+00:00, rmk@flint.arm.linux.org.uk [ARM] Kill old mkdep dependency hack. We include a header file in an indirect method, which mkdep didn't understand. Now that mkdep is gone, we don't need the hack to make mkdep do the right thing. ChangeSet@1.1060.3.7, 2003-03-06 14:03:09+00:00, rmk@flint.arm.linux.org.uk [ARM] Make ARM's pci_controller_num dev argument appear to be used. This cuts down on the number of warnings during the build. ChangeSet@1.1060.3.6, 2003-03-06 13:58:40+00:00, rmk@flint.arm.linux.org.uk [ARM] Add dummy set_pgd() implementation. ChangeSet@1.1060.3.5, 2003-03-06 13:54:01+00:00, rmk@flint.arm.linux.org.uk [ARM] Add new kernel typedefs for __kernel_{timer,clockid}_t. ChangeSet@1.1060.3.4, 2003-03-06 13:41:45+00:00, rmk@flint.arm.linux.org.uk [ARM] Always claim the timer IRQ using SA_INTERRUPT. ChangeSet@1.1060.3.3, 2003-03-06 13:18:58+00:00, rmk@flint.arm.linux.org.uk [ARM] Always call schedule_tail() after a fork() ChangeSet@1.1060.3.2, 2003-03-06 13:14:56+00:00, rmk@flint.arm.linux.org.uk [ARM] Convert ecard.c shutdown/reboot to use driver model ecard.c used to use the reboot notifier to ensure that the expansion cards are in the correct state for rebooting. Use the driver model shutdown method instead. ChangeSet@1.1060.3.1, 2003-03-06 13:01:35+00:00, rmk@flint.arm.linux.org.uk [ARM] Remove set_mac_address from acorn drivers. Acorn Ethernet drivers provided a duplicate set_mac_address implementation which reflects the generic ethernet version in drivers/net/net_init.c. Use the generic version instead. ChangeSet@1.1068.1.26, 2003-03-05 21:39:41-08:00, torvalds@home.transmeta.com Fix up some timeouts to use the proper types. (While "signed long" is the same in practice, it is technically incorrect, and the new anal type-checker complains). ChangeSet@1.1068.1.25, 2003-03-05 21:22:59-08:00, davem@nuts.ninka.net [JIFFIES]: Use typecheck in time_foo jiffies macros. ChangeSet@1.1068.1.24, 2003-03-05 21:22:16-08:00, davem@nuts.ninka.net [KERNEL]: Add typecheck macro for verifying types at compile time. ChangeSet@1.1068.9.6, 2003-03-05 20:09:49-06:00, sam@mars.ravnborg.org [PATCH] kbuild: touch-module after successfull creation only On Mon, Mar 03, 2003 at 05:11:10PM -0500, Bill Davidsen wrote: > scripts/Makefile.modinst:16: *** Uh-oh, you have stale module entries. You messed with SUBDIRS, do not complain if something goes wrong. This happens if you have encountered a compile error in a module. In this case you did not succeed the compilation of fs/binfmt_aout, and therefore no .o file can be located. kbuild assumes this is because you have messed with SUBDIRS, which is wrong. ChangeSet@1.1068.9.5, 2003-03-05 20:07:18-06:00, arnd@arndb.de [trivial] avoid a warning for each module on s390x s390x has a reference to _GLOBAL_OFFSET_TABLE_ in each module that is resolved by the module loader. This patch prevents modpost from emitting a warning about that symbol. ChangeSet@1.1068.9.4, 2003-03-05 20:05:54-06:00, sam@mars.ravnborg.org [PATCH] kbuild: Smart notation for non-verbose output Create a nice shorthand to enable the non-verbose output mode. make V=1 => Gives verbose output (default) make V=0 => Gives non-verbose output One of the reasons why people does not use KBUILD_VERBOSE=0 that much is simply the typing needed. This notation should make it acceptable to type it. The usage of "make V=0" is restricted to the command line. Anyone that wants to enable the non-verbose mode pr. default shall set KBUILD_VERBOSE in the shell. ChangeSet@1.1068.9.3, 2003-03-05 19:53:26-06:00, kai@tp1.ruhr-uni-bochum.de kbuild: Make per-cpu-check ignore __crc_ symbols. We warn when symbols end in __per_cpu, but aren't in the per-cpu section. However, checksum symbols gave false positives. ChangeSet@1.1068.9.2, 2003-03-05 19:51:34-06:00, kai@tp1.ruhr-uni-bochum.de kbuild: Add some missing FORCE Those were missing, not particularly harmful, but still needed for correctness. ChangeSet@1.1068.9.1, 2003-03-05 19:50:32-06:00, kai@tp1.ruhr-uni-bochum.de kbuild: Make build stop on vmlinux link error set -e is needed for each (continued) line. ChangeSet@1.1071, 2003-03-05 15:50:01-08:00, miyazawa@linux-ipv6.org [IPSEC]: Add full ipv6 support. Credits also to Mitsuru Kanda , YOSHIFUJI Hideaki , and Kunihiro Ishiguro. ChangeSet@1.1068.8.4, 2003-03-05 17:44:21-06:00, mochel@osdl.org cpufreq: fix compile error. Use ->dev instead of ->intf.dev in struct cpufreq_policy. Introduced whilst cleaning up part of the cpufreq code. ChangeSet@1.1068.8.3, 2003-03-05 17:38:05-06:00, mochel@osdl.org sysfs: don't complain when sysfs can't register. During startup, sysfs won't succeed in registering with itself, because it's not yet inititialized. This was causing an unnecessary error on boot. ChangeSet@1.1068.8.2, 2003-03-05 17:33:10-06:00, mochel@osdl.org driver model: fix platform_match() - Make it compare the name in struct platform_dev to the driver's name. From Dominik Brodowski ChangeSet@1.1068.8.1, 2003-03-05 17:27:00-06:00, mochel@osdl.org sysfs: Make sure root inode is executable and readable by everyone. ChangeSet@1.1068.1.22, 2003-03-05 14:25:25-08:00, levon@movementarian.org [PATCH] Fix oprofile on UP, small additional fix The below has been in -mm for a while, and has been tested on my UP and 2-way machines. OProfile was completely unsafe on UP - a spinlock is no protection against the NMI arriving and putting data into the buffer. Pretty stupid bug. This fixes it by implementing reader/writer windows in the buffer and removing the lock altogether. This patch was originally done by Will Cohen. It also fixes the oops Dave Hansen saw on 2.5.62 SMP ChangeSet@1.1068.7.4, 2003-03-05 12:06:48-08:00, greg@kroah.com [PATCH] USB: added support for radio shack device to pl2303 driver. Thanks to gene_heskett@iolinc.net for the info for this. ChangeSet@1.1068.1.21, 2003-03-05 11:57:07-08:00, andmike@us.ibm.com [PATCH] Fix SCSI error handler abort case I had my list empty checks reversed if aborting and bus device reset failed. The condition that causes the error handler to run is still unknown. ChangeSet@1.1068.7.3, 2003-03-05 11:44:45-08:00, andre.breiler@null-mx.org [PATCH] io_edgeport.c diff to fix endianess bugs attached a fix for the io_edgeport usb serial driver This diff fixes endianess issues which prevented the driver to work on bigendian machines (e.g. sparc). ChangeSet@1.1068.7.2, 2003-03-05 11:43:00-08:00, clemens@ladisch.de [PATCH] usb-midi.h: fixes for SC-8820/50 sync with Nagano's version: - protect vendors ids against multiple definitions - sort Roland device ids - fix SC-8850 cable bitmask - add quirk for the SC-8820 - add quirk for the MOTU Fastlane ChangeSet@1.1068.7.1, 2003-03-05 11:41:00-08:00, greg@kroah.com [PATCH] USB: add support for Treo devices to the visor driver. Finally... ChangeSet@1.1025.18.2, 2003-03-05 10:16:58-08:00, Jeff.Wiedemeier@hp.com [PATCH] enable setting of marvel/titan agp->type Now that the agpgart support is in, this can be enabled. /jeff ChangeSet@1.1068.1.20, 2003-03-05 08:23:08-08:00, davem@nuts.ninka.net [SPARC64]: Fix cpufreq config deps. ChangeSet@1.1068.1.18, 2003-03-05 07:36:20-08:00, davem@redhat.com [PATCH] Fix time comparison typing bugs. Many places use inappropriate types for comparing jiffies, int for example. Fix those places up. ChangeSet@1.1068.1.17, 2003-03-04 19:11:19-08:00, torvalds@home.transmeta.com Linux 2.5.64 TAG: v2.5.64