- 19 Jan, 2004 40 commits
-
-
Andrew Morton authored
From: Nick Piggin <piggin@cyberone.com.au>
-
Andrew Morton authored
From: Nick Piggin <piggin@cyberone.com.au> I have tested this on my disks and cdroms, but they don't represent what all drivers might do. I have asked Jarkko Lehti with his dvd writing problem to try it...
-
Andrew Morton authored
From: Nick Piggin <piggin@cyberone.com.au> Randy has just reported that this fixes up his regression. Its now as good as test5 in his tests with this patch. He is also seeing quite large increases (above test5) when IO scheduler barriers are disabled (this patch doesn't do that). Perhaps something is using them too liberally. Anyway, this reverts AS back to defaulting to not anticipate IO for a program that submits its first request (this really hurts find | xargs grep sort of things). I am working on something to fix this up properly. That can go in after 2.6.0 anyway.
-
Andrew Morton authored
Use daemonize() rather than open-coding half of it. (I don't know if this has been tested - it has been in -mm for three months).
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> vi fixup
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Gone are the days of initialising stuff we touch in prom_init just to keep it out of the BSS. There are a few things the hypervisor writes to in the iseries case, hard code them into the data segment and add a comment. Remove the -fno-zero-initialized-in-bss hack, it was required when gcc got smart and put zero initialised stuff into the BSS
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Fixed rtas_extended_busy_delay_time() to calculate correct value, from John Rose
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Xmon changes to make breakpoints and single-stepping work on pSeries LPARs. Also changed help text to reflect obsolete cmds.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Looks like glibc is using stat in some places, so we should modify it to copy the nanosecond fields. Also speed up stat by only checking the region once instead of each put_user call.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> correct epoll syscall names
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> setup_cpu was being called for the boot cpu after all other cpus had been spun up. The init thread can sleep during secondary cpu spinup (eg migration thread init) and sometimes the init thread would switch to another cpu at this time. The end result was setup_cpu was called twice on one cpu and never on the boot cpu. The original fix called setup_cpu on the boot cpu before all others but that wont work for G5, so we now use cpu affinity calls to enforce it.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> - Remove a bunch of unnecessary sections - Always declare section labels inside the section (bug found on ppc32) - Rearrange sections to waste less space
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> - remove old checks target, no longer used - add -mtraceback=none, we dont use traceback tables any more - add check for -mcpu=power4, older toolchains dont support this option
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Use an atomic_t instead of a volatile unsigned long, from Stephen Rothwell
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Fix a compile error and a warning in the iSeries code, from Stephen Rothwell
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Check range of PCI memory and I/O accesses on iSeries, from Stephen Rothwell
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> prom_panic(), from Todd Inglett
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Tidy up the mf_proc code, from Stephen Rothwell
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Rewrite __hash_page function in assembly in such a way we don't need the page table lock any more. We now rely on a BUSY bit in the linux PTE on which we spin on when doing an update of the PTE
-
Andrew Morton authored
[PATCH] ppc64: Fix {pte,pmd}_free vs. hash_page race by relaying actual deallocation with RCU, from Ben Herrenschmidt From: Anton Blanchard <anton@samba.org> Fix {pte,pmd}_free vs. hash_page race by relaying actual deallocation with RCU, from Ben Herrenschmidt
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> VMX (Altivec) support & signal32 rework, from Ben Herrenschmidt
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Binutils uses the recent mtcrf optimisation when compiling for a POWER4 target. Unfortunately this causes a program check on POWER3. We required compiling for POWER4 so the tlbiel instruction would be recognised. For the moment we hardwire the tlbiel instruction, longer term we can use the binutils -many flag.
-
Andrew Morton authored
[PATCH] ppc64: Update the surveillance boot parameter to allow all valid settings of the surveillance timeout, from Nathan Fontenot From: Anton Blanchard <anton@samba.org> Update the surveillance boot parameter to allow all valid settings of the surveillance timeout, from Nathan Fontenot
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> add/forward port of lparcfg, from Will Schmidt
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Get native PCI going on iSeries, from Paul Mackerras
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Add virtual I/O support. These routines provide the infrastructure needed by virtual SCSI, virtual ethernet, virtual serial on IBM pSeries servers
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> add hcall interface
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Small cleanups to iSeries virtual ethernet driver, from Dave Gibson
-
Andrew Morton authored
[PATCH] ppc64: Tidy up various bits of the iSeries code. No significant code changes, from Stephen Rothwell From: Anton Blanchard <anton@samba.org> Tidy up various bits of the iSeries code. No significant code changes, from Stephen Rothwell
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> fix a couple small OF device tree bugs which were overlooked, from Joel Schopp
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> iSeries fixes, from Stephen Rothwell
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Add additional hypervisor call constants, from Dave Boutcher
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Preliminary iSeries support. Still a bit hackish in parts but it does compile. The viodasd driver is almost completely untested so don't trust it with your data.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> This is a port of the nvram buffering/error logging code from 2.4 to 2.6. It includes moving /proc/rtas to /proc/ppc64/rtas and making /proc/rtas a symlink to /proc/ppc64/rtas. It also splits up the /dev/nvram device read/write functions from the basic nvram access functions, and adds ppc_md fields for the nvram access functions.
-
Andrew Morton authored
[PATCH] ppc64: one instruction fix for synchronization bug found during cpu DLPAR development, from Joel Schopp From: Anton Blanchard <anton@samba.org> one instruction fix for synchronization bug found during cpu DLPAR development, from Joel Schopp
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Add VMX registers to sigcontext, from Steve Munroe
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Minor fixes to make the UP case compile, export cpu_possible_map, fix up whitespace etc.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> And SMT processor support & move back to a logical cpu numbering in support of DLPAR work.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Initial round of code to add shared processor support into 2.6. This adds h_call interfaces, paca/VPA fields, and vpa register. Add adds new idle loop code.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> Added RTAS syscall. Reserved lowmem rtas_rmo_buf for userspace use. Created "rmo_buffer" proc file to export bounds of rtas_rmo_buf.
-