| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |
|
|
|
|
|
|
|
|
| |
1. Remove comment stating the blatantly obvious.
2. Align in two columns.
3. Sort all but the default element alphabetically.
4. Remove XXX comments pointing out entries not needed.
Notes:
svn path=/head/; revision=30431
|
| |
|
|
|
|
|
|
|
|
|
| |
Distribute all but the most fundamental malloc types. This time I also
remembered the trick to making things static: Put "static" in front of
them.
A couple of finer points by: bde
Notes:
svn path=/head/; revision=30354
|
| |
|
|
|
|
|
|
|
|
| |
a trap.
PR: 3104
Reviewed by: phk
Submitted by: Dan Walters hannibal@cyberstation.net
Notes:
svn path=/head/; revision=29584
|
| |
|
|
| |
Notes:
svn path=/head/; revision=29179
|
| |
|
|
| |
Notes:
svn path=/head/; revision=28844
|
| |
|
|
| |
Notes:
svn path=/head/; revision=28832
|
| |
|
|
|
|
|
|
|
|
|
| |
socket addresses in mbufs. (Socket buffers are the one exception.) A number
of kernel APIs needed to get fixed in order to make this happen. Also,
fix three protocol families which kept PCBs in mbufs to not malloc them
instead. Delete some old compatibility cruft while we're at it, and add
some new routines in the in_cksum family.
Notes:
svn path=/head/; revision=28270
|
| |
|
|
| |
Notes:
svn path=/head/; revision=27845
|
| |
|
|
| |
Notes:
svn path=/head/; revision=26964
|
| |
|
|
| |
Notes:
svn path=/head/; revision=26963
|
| |
|
|
|
|
|
| |
umapfs uses one of nullfs's functions...
Notes:
svn path=/head/; revision=26111
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
# mount -t union (or null) dir1 dir2
# mount -t union (or null) dir2 dir1
The function namei in union_mount calls union_root. The upper vnode
has been already locked and vn_lock in union_root causes above panic.
Add printf's included in `#ifdef DIAGNOSTIC' for EDEADLK cases.
Notes:
svn path=/head/; revision=25016
|
| |
|
|
|
|
|
| |
directory pair.
Notes:
svn path=/head/; revision=24988
|
| |
|
|
| |
Notes:
svn path=/head/; revision=24987
|
| |
|
|
|
|
|
| |
ready for it yet.
Notes:
svn path=/head/; revision=22975
|
| |
|
|
|
|
|
| |
correctly casting the arguments to all of the null_bypass() calls.
Notes:
svn path=/head/; revision=22607
|
| |
|
|
|
|
|
| |
warnings again.
Notes:
svn path=/head/; revision=22605
|
| |
|
|
|
|
|
| |
Also add missing function prototypes.
Notes:
svn path=/head/; revision=22597
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
changes, so don't expect to be able to run the kernel as-is (very well)
without the appropriate Lite/2 userland changes.
The system boots and can mount UFS filesystems.
Untested: ext2fs, msdosfs, NFS
Known problems: Incorrect Berkeley ID strings in some files.
Mount_std mounts will not work until the getfsent
library routine is changed.
Reviewed by: various people
Submitted by: Jeffery Hsu <hsu@freebsd.org>
Notes:
svn path=/head/; revision=22521
|
| |
|
|
|
|
|
|
|
|
|
| |
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.
Notes:
svn path=/head/; revision=21673
|
| |
|
|
|
|
|
|
|
|
|
| |
process won't possibly block before filling in the fsnode pointer (v_data)
which might be dereferenced during a sync since the vnode is put on the
mnt_vnodelist by getnewvnode.
Pointed out by Matt Day <mday@artisoft.com>
Notes:
svn path=/head/; revision=16312
|
| |
|
|
| |
Notes:
svn path=/head/; revision=12769
|
| |
|
|
|
|
|
| |
Removed some unnecessary #includes.
Notes:
svn path=/head/; revision=12595
|
| |
|
|
|
|
|
| |
`struct mount *' arg. I don't know what the effects of this were.
Notes:
svn path=/head/; revision=12594
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
it 1138 times (:-() in casts and a few more times in declarations.
This change is null for the i386.
The type has to be `typedef int vop_t(void *)' and not `typedef
int vop_t()' because `gcc -Wstrict-prototypes' warns about the
latter. Since vnode op functions are called with args of different
(struct pointer) types, neither of these function types is any use
for type checking of the arg, so it would be preferable not to use
the complete function type, especially since using the complete
type requires adding 1138 casts to avoid compiler warnings and
another 40+ casts to reverse the function pointer conversions before
calling the functions.
Notes:
svn path=/head/; revision=12158
|
| |
|
|
| |
Notes:
svn path=/head/; revision=8876
|
| |
|
|
| |
Notes:
svn path=/head/; revision=7170
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
VFCF_NETWORK (this FS goes over the net)
VFCF_READONLY (read-write mounts do not make any sense)
VFCF_SYNTHETIC (data in this FS is not real)
VFCF_LOOPBACK (this FS aliases something else)
cd9660 is readonly; nullfs, umapfs, and union are loopback; NFS is netowkr;
procfs, kernfs, and fdesc are synthetic.
Notes:
svn path=/head/; revision=7095
|
| |
|
|
|
|
|
|
|
| |
(except in netccitt, netiso and netns) and most of the warnings from
`gcc -Wnested-externs'. Fix all the bugs found. There were no serious
ones.
Notes:
svn path=/head/; revision=7090
|
| |
|
|
| |
Notes:
svn path=/head/; revision=3496
|
| |
|
|
|
|
|
|
|
| |
Reviewed by:
Submitted by:
Obtained from:
Notes:
svn path=/head/; revision=3311
|
| |
|
|
|
|
|
|
|
|
|
| |
- Make a number of filesystems work again when they are statically compiled
(blush)
- FIFOs are no longer optional; ``options FIFO'' removed from distributed
config files.
Notes:
svn path=/head/; revision=2979
|
| |
|
|
|
|
|
|
|
|
| |
- set args->lkm_offset correctly so that VFS modules can be unloaded
- initialize _fs_vfsops.vfc_refcount correctly so that VFS modules can
be unloaded
- include kernel.h in a few placves to get the correct definition of DATA_SET
Notes:
svn path=/head/; revision=2960
|
| |
|
|
|
|
|
| |
loadable. (NFS is a notable exception.)
Notes:
svn path=/head/; revision=2946
|
| |
|
|
|
|
|
|
|
|
|
| |
use of timeout_t -> timeout_func_t in aha1542 and aha1742 drivers.
2) fix a bug in the portalfs that was uncovered by better prototyping -
specifically, the time must be converted from timeval to timespec
before storing in va_atime.
3) fixed/added some miscellaneous prototypes
Notes:
svn path=/head/; revision=2142
|
| |
|
|
| |
Notes:
svn path=/head/; revision=1817
|
| |
|
|
|
|
|
|
| |
Reviewed by: Rodney W. Grimes
Submitted by: John Dyson and David Greenman
Notes:
svn path=/head/; revision=1549
|
|
|
Notes:
svn path=/head/; revision=1541
|