summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add support for packages.imp2010-07-1310-24/+325
| | | | | PR: 148584 Submitted by: John Hixon
* For the experimental NFSv4 client, make sure that attributes thatrmacklem2010-07-131-0/+14
| | | | | | | | predate the issue of a delegation are not cached once the delegation is held. This is necessary, since cached attributes remain valid while the delegation is held. MFC after: 2 weeks
* Remove obsolete code that sets SHMMAXPGS to a tiny value by defaultnwhitehorn2010-07-131-7/+0
| | | | on PowerPC.
* For the experimental NFSv4 client, do not use cached attributesrmacklem2010-07-131-1/+1
| | | | | | that were invalidated, even when a delegation for the file is held. MFC after: 2 weeks
* Fix a bogus comment that mentions lru lists that don't exist.rmacklem2010-07-131-1/+1
| | | | | Reported by: zack.kirsch at isilon.com MFC after: 2 weeks
* union cpuprid is also unused nowimp2010-07-131-22/+0
|
* Add INFO config register from mips32/64 landimp2010-07-131-0/+2
|
* Remove redunant machine/cpuregs.h include.imp2010-07-131-4/+3
| | | | Also, spell things like in machine/cpuregs.h instead of machine/cpu.h.
* Temp hack to N32 kernel: turn off debugger since n32 is too weird for ddbimp2010-07-131-4/+4
|
* Add GENERIC kernel config for powerpc64.nwhitehorn2010-07-131-0/+182
|
* Connect powerpc64 to the build. It is not presently part of make universe,nwhitehorn2010-07-133-25/+52
| | | | | | which will be added soon. Reviewed by: imp
* Add a 4 and 7 port USB hub from NEC.remko2010-07-131-0/+2
| | | | | PR: 148189 MFC after: 1 week
* Initialize a variable before its use.jkim2010-07-131-1/+1
|
* Preallocate buffers for palette and state. Do not save DAC registers asjkim2010-07-131-83/+58
| | | | we reset DAC mode and restore palette data while we are resuming always.
* Prefer PCIR_BAR macro over BGE_PCI_BAR0.yongari2010-07-131-2/+2
|
* Fix error message for jumbo buffer allocation failure.yongari2010-07-131-1/+1
|
* style.yongari2010-07-131-7/+9
|
* Fix a panic brought about by writing an MSR without a proper mask.gnn2010-07-132-13/+86
| | | | | | | | | All of the necessary wrmsr calls are now preceded by a rdmsr and we leave the reserved bits alone. Document the bits in the relevant registers for future reference. Tested by: mdf MFC after: 1 week
* Make bge_stop_fw() static.yongari2010-07-131-13/+9
| | | | While I'm here use ANSI function definitions.
* Fix build on architectures where PAGE_SIZE is a long (sparc64, powerpc).nwhitehorn2010-07-131-4/+3
|
* Define break value for ddb.imp2010-07-131-15/+16
| | | | | | | Use int32/intptr casts for exception vector names. Define MIPS_SR_INT_MASK again Change MIPS_XKPHYS_CCA_* to MIPS_CCA_* since we can use them in many contexts Minor gratuitous whitespace churn
* Use the cpuregs.h spellings for these registers rather than the cpu.himp2010-07-131-5/+5
| | | | spelling.
* Define SMP unconditionally for amd64 and remove opt_global.h from SRCS.jkim2010-07-131-1/+4
| | | | | | | Note it is done just for correctness sake because we do not build, ship, or support acpi.ko on amd64. Prodded by: bde
* Bump document for content change in r210002.simon2010-07-131-1/+1
|
* Make SMP code path conditional at run-time.jkim2010-07-131-12/+10
|
* In the example for how to create a VLAN, also include an example ofsimon2010-07-131-1/+2
| | | | | | | | setting the IP address. While it is documented earlier in rc.conf(5) that the '.' in the VLAN name becomes a '_' in rc.conf, this may not be easy to find when just using rc.conf(5) as reference documentation. MFC after: 1 week
* o Correct path to include file.maxim2010-07-131-2/+2
| | | | | | PR: docs/148545 Submitted by: Anton Shterenlikht MFC after: 1 week
* cpu_id and fpu_id are unused, except to be set early in the boot code.imp2010-07-134-34/+4
| | | | | | | | | The problem with setting it there is that the last CPU to come up wins, it seems. This also removes one more ifdef in locore.S, a noble goal too. Since they are unused, and pollute cpu.h, remove them. Submitted by: bde.h (cpu.h pollution) Approved in theory by: jmallet@
* Remove obsolete undef of COPY_SIGCODE. It appears to have not beenimp2010-07-132-12/+0
| | | | | | used in FreeBSD in quite some time (maybe since before 4.4-lite :) Submitted by: bde
* Remove obsolete define "COPY_SIGCODE". This is unused in FreeBSD.imp2010-07-131-6/+0
| | | | Submitted by: bde@
* Convert several instances of MACHINE_ARCH to MACHINE_CPUARCH and use thenwhitehorn2010-07-134-13/+13
| | | | correct compiler flags on 64-bit PowerPC.
* Install arch-specific manpages by MACHINE_CPUARCH, not MACHINE_ARCH.nwhitehorn2010-07-131-2/+2
|
* Make kernel modules build correctly on 64-bit PowerPC.nwhitehorn2010-07-134-5/+5
|
* Rise knowledge about curthread->td_intr_frame by one step. Make timermav2010-07-135-17/+9
| | | | | callback argument really opaque. Not repeat interrupt handler's problem in case somebody will ever need to have both argument and frame.
* UT_NAMESIZE is no more.ed2010-07-131-1/+0
|
* - The sum variable used in DPCPU_SUM needs to be of the same type as thelstewart2010-07-131-3/+2
| | | | | | | | | | | | DPCPU variable, rather than a pointer to the type. - Zero # bytes equivalent to sizeof(object), not sizeof(ptr_to_object). - Remove an unnecessary __typeof. Sponsored by: FreeBSD Foundation Submitted by: jmallet MFC after: 3 days
* The SIFTR DPCPU statistics struct was not being zeroed between enable/disablelstewart2010-07-131-0/+2
| | | | | | cycles so the values would accumulate rather than reset for each cycle. Sponsored by: FreeBSD Foundation
* Macro to simplify zeroing DPCPU variables.lstewart2010-07-131-0/+9
| | | | | Sponsored by: FreeBSD Foundation MFC after: 3 days
* Catch up with the rename of DPCPU_SUM to DPCPU_VARSUM in r209978.lstewart2010-07-131-10/+10
| | | | Sponsored by: FreeBSD Foundation
* Unify pc98 event timer code with the rest of x86.mav2010-07-134-564/+103
| | | | Reviewed by: nyan@
* - Rename DPCPU_SUM to DPCPU_VARSUM to better reflect the fact it operates onlstewart2010-07-131-1/+13
| | | | | | | | | member variables of a DPCPU struct. - Add DPCPU_SUM which sums a DPCPU variable. Sponsored by: FreeBSD Foundation MFC after: 3 days
* Disable multi-sector PIO transfers if ATA_SET_MULTI command failed.mav2010-07-131-0/+2
| | | | Submitted by: Mikolaj Golub on fs@
* Add powerpc64 kernel ldscript.nwhitehorn2010-07-131-0/+144
|
* MFppc64:nwhitehorn2010-07-1375-1035/+5540
| | | | | | | Kernel sources for 64-bit PowerPC, along with build-system changes to keep 32-bit kernels compiling (build system changes for 64-bit kernels are coming later). Existing 32-bit PowerPC kernel configurations must be updated after this change to specify their architecture.
* Remove detect-vmware.sh, recently removed.imp2010-07-131-0/+2
|
* o Restore missed flag in the synopsis.maxim2010-07-131-1/+1
| | | | | | PR: docs/148534 Submitted by: Warren Block MFC after: 1 week
* o Add -q flag to usage().maxim2010-07-131-1/+1
| | | | MFC after: 1 week
* o Add -q flag to the synopsis.maxim2010-07-131-1/+2
| | | | | | PR: docs/148535 Submitted by: Warren Block MFC after: 1 week
* Enhance config to handle MACHINEs with multiple architectures:nwhitehorn2010-07-134-10/+38
| | | | | | | | | | | | | - Passing -m to config will now print the MACHINE and MACHINE_ARCH given in the passed kernel configuration file and then exit. - If an option is defined in options.MACHINE with the same name as the architecture of the kernel being configured, that option will be considered set. This allows conditional compilation based on CPU architecture. Config version is now 600010. Reviewed by: imp
* Fix comment.takawata2010-07-131-1/+1
| | | | Pointed out by: hrs
OpenPOWER on IntegriCloud