| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
Notes:
svn path=/head/; revision=128787
|
|
|
|
|
|
|
|
|
| |
Put @includes in a better spot. Fix many cases of 2 space indents and spaces
between a function name and the parens. Use KASSERT instead of a home-rolled
ASSERT. Remove some undeeded caddr casts.
Notes:
svn path=/head/; revision=128786
|
|
|
|
|
|
|
|
| |
__inline where appropriate and gets nuked elsewhere, IN/OUT/INOUT go away.
Reformat code affected by this.
Notes:
svn path=/head/; revision=128784
|
|
|
|
|
|
|
| |
Beer or equivalent to? njl
Notes:
svn path=/head/; revision=128544
|
|
|
|
| |
Notes:
svn path=/head/; revision=128536
|
|
|
|
| |
Notes:
svn path=/head/; revision=128535
|
|
|
|
|
|
|
| |
years.
Notes:
svn path=/head/; revision=128532
|
|
|
|
| |
Notes:
svn path=/head/; revision=128531
|
|
|
|
|
|
|
| |
3.x shims.
Notes:
svn path=/head/; revision=128512
|
|
|
|
|
|
|
| |
bogus casts of NULL. It also distracts me while I procrastinate on useful work.
Notes:
svn path=/head/; revision=128511
|
|
|
|
|
|
|
|
| |
Submitted by: Mark Santcroos <marks@ripe.net>
Reviewed by: imp, dfr, bde
Notes:
svn path=/head/; revision=127135
|
|
|
|
|
|
|
|
|
|
|
| |
Introduce d_version field in struct cdevsw, this must always be
initialized to D_VERSION.
Flip sense of D_NOGIANT flag to D_NEEDGIANT, this involves removing
four D_NOGIANT flags and adding 145 D_NEEDGIANT flags.
Notes:
svn path=/head/; revision=126080
|
|
|
|
|
|
|
| |
Ok'ed by: scottl
Notes:
svn path=/head/; revision=120478
|
|
|
|
|
|
|
|
| |
Glanced over by: imp, gibbs
Tested by: i386 LINT
Notes:
svn path=/head/; revision=119690
|
|
|
|
|
|
|
| |
Also some minor style cleanups.
Notes:
svn path=/head/; revision=119418
|
|
|
|
|
|
|
|
| |
tree for two or more years now), except in a few places where there's
code to be compatible with older versions of FreeBSD.
Notes:
svn path=/head/; revision=119277
|
|
|
|
| |
Notes:
svn path=/head/; revision=113580
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
branches:
Initialize struct cdevsw using C99 sparse initializtion and remove
all initializations to default values.
This patch is automatically generated and has been tested by compiling
LINT with all the fields in struct cdevsw in reverse order on alpha,
sparc64 and i386.
Approved by: re(scottl)
Notes:
svn path=/head/; revision=111815
|
|
|
|
| |
Notes:
svn path=/head/; revision=111748
|
|
|
|
|
|
|
| |
platform case it (or use alternate spellings).
Notes:
svn path=/head/; revision=111419
|
|
|
|
|
|
|
| |
Approved by: trb
Notes:
svn path=/head/; revision=111119
|
|
|
|
|
|
|
| |
Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT.
Notes:
svn path=/head/; revision=109623
|
|
|
|
|
|
|
| |
especially in troff files.
Notes:
svn path=/head/; revision=108533
|
|
|
|
|
|
|
|
|
|
|
|
| |
with make_dev(). Use OPERATOR instead of implicit WHEEL to match
other storage devices. Use a mode of 0640 to be consistent
with other storage devices.
Submitted by: kris
Reviewed by: scottl
Notes:
svn path=/head/; revision=108328
|
|
|
|
|
|
|
|
|
|
|
|
| |
from being MI in any fashion. It currently "assumes" that it can get
a kernel virtual address for a phyiscal address by adding KERNBASE to the
physical address. It also tries to read values out of a the PC BIOS on
all archs. It also uses "manual" inb() and outb()'s to talk to the mcclock
device which just happens to be at that location on both i386 and alpha.
This driver should likely be i386-only.
Notes:
svn path=/head/; revision=106515
|
|
|
|
| |
Notes:
svn path=/head/; revision=102291
|
|
|
|
| |
Notes:
svn path=/head/; revision=96615
|
|
|
|
| |
Notes:
svn path=/head/; revision=96614
|
|
|
|
| |
Notes:
svn path=/head/; revision=96554
|
|
|
|
| |
Notes:
svn path=/head/; revision=96551
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
general cleanup of the API. The entire API now consists of two functions
similar to the pre-KSE API. The suser() function takes a thread pointer
as its only argument. The td_ucred member of this thread must be valid
so the only valid thread pointers are curthread and a few kernel threads
such as thread0. The suser_cred() function takes a pointer to a struct
ucred as its first argument and an integer flag as its second argument.
The flag is currently only used for the PRISON_ROOT flag.
Discussed on: smp@
Notes:
svn path=/head/; revision=93593
|
|
|
|
|
|
|
|
|
| |
but this makes the driver not panic my -current box.
Approved by: scottl
Notes:
svn path=/head/; revision=93506
|
|
|
|
| |
Notes:
svn path=/head/; revision=92739
|
|
|
|
|
|
|
| |
go ahead and ifdef out the function too.
Notes:
svn path=/head/; revision=91277
|
|
|
|
|
|
|
|
| |
Clean up C comments just a tad.
Fix ID's.
Notes:
svn path=/head/; revision=87826
|
|
|
|
|
|
|
| |
panics until the author comes up with a real fix.
Notes:
svn path=/head/; revision=85751
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Note ALL MODULES MUST BE RECOMPILED
make the kernel aware that there are smaller units of scheduling than the
process. (but only allow one thread per process at this time).
This is functionally equivalent to teh previousl -current except
that there is a thread associated with each process.
Sorry john! (your next MFC will be a doosie!)
Reviewed by: peter@freebsd.org, dillon@freebsd.org
X-MFC after: ha ha ha ha
Notes:
svn path=/head/; revision=83366
|
|
|
|
|
|
|
|
|
|
| |
support for a new class of controllers. Also adjust MAINTAINER at the
approval of msmith.
Obtained from: mark_salyzyn@adaptec.com
Notes:
svn path=/head/; revision=82092
|
|
|
|
|
|
|
| |
attach.
Notes:
svn path=/head/; revision=75102
|
|
|
|
|
|
|
|
| |
specific bogons. Compile with -O0, as anything higher gives the compiler
a fit. No idea if this driver will actually work on Alpha, though.
Notes:
svn path=/head/; revision=75062
|
|
|
|
|
|
|
| |
the bit-bucket.
Notes:
svn path=/head/; revision=74810
|
|
|
|
|
|
|
|
|
|
| |
I could find. I have no doubt missed a couple.
Interrupt entropy harvesting is still conditional on the
kern.random.sys.harvest_interrupt sysctl.
Notes:
svn path=/head/; revision=73280
|
|
|
|
|
|
|
| |
There are some others in contributed/external code I haven't touched.
Notes:
svn path=/head/; revision=72760
|
|
|
|
|
|
|
|
|
|
| |
fondling implementation details.
Created with: sed(1)
Reviewed by: md5(1)
Notes:
svn path=/head/; revision=71999
|
|
|
|
|
|
|
|
|
| |
Submitted by: josh@zipperup.org
Submitted by: Robert Drehmel <robd@gmx.net>
Approved by: mark_salyzyn@adaptec.com
Notes:
svn path=/head/; revision=69548
|
|
|
|
|
|
|
|
|
|
|
|
| |
<sys/proc.h> to <sys/systm.h>.
Correctly document the #includes needed in the manpage.
Add one now needed #include of <sys/systm.h>.
Remove the consequent 48 unused #includes of <sys/proc.h>.
Notes:
svn path=/head/; revision=67893
|
|
|
|
| |
Notes:
svn path=/head/; revision=67164
|
|
|
|
|
|
|
|
|
| |
the ccb queue without masking interrupts.
Submitted by: Petr Lampa <lampa@fee.vutbr.cz>
Notes:
svn path=/head/; revision=66190
|
|
|
|
| |
Notes:
svn path=/head/; revision=65343
|
|
This provides support for the Adaptec SCSI RAID controller family,
as well as the DPT SmartRAID V and VI families.
The driver will be maintained by Mark and Adaptec, and any changes
should be referred to the MAINTAINER.
Notes:
svn path=/head/; revision=65312
|