freebsd kernel with SKQ
Go to file
yar dbcb706f58 Work around the shortness of the size argument to
vnode_create_vobject() while preserving the binary ABI
to filesystem modules in RELENG_6: introduce a new function
vnode_create_vobject_off() that takes the size argument
as off_t; move all stock file systems to it; re-implement
the old vnode_create_vobject() using vnode_create_vobject_off()
so that old or binary-only FS modules can work w/o hitting the
bug.  The trick is to pass a size of 0 to vnode_create_vobject_off()
so that it will call VOP_GETATTR() and thus get the actual,
untruncated file size even if the calling module still uses
the old vnode_create_vobject().

PR:		kern/92243
Approved by:	re (scottl)
2006-02-20 00:53:15 +00:00
bin MFC rev. 1.70: deal with the overridden SIGCHLD handler. 2006-01-12 05:24:46 +00:00
contrib This commit was manufactured by cvs2svn to create branch 'RELENG_6'. 2006-02-03 01:35:37 +00:00
crypto Correct a man-in-the-middle SSL version rollback vulnerability. 2005-10-11 11:53:03 +00:00
etc MFC revision 1.49: 2006-02-19 18:36:20 +00:00
games MFC: 2006-01-24 07:50:08 +00:00
gnu Partially MFC revision 1.14: 2006-02-16 02:40:56 +00:00
include Unbreak building RELENG_6 on RELENG_5 by providing a __format_arg macro if 2006-02-01 12:24:39 +00:00
kerberos5 MFC: 1.6: Apply the .PHONY attribute to the ../make*/make* targets. 2005-11-16 07:53:16 +00:00
lib Merge memstat_uma.c:1.17 from HEAD to RELENG_6: 2006-02-14 03:38:31 +00:00
libexec MFC recent ftpd fixes related to handling the pidfile and unneeded 2006-01-29 13:21:05 +00:00
release MFC: produce a buildable 'bridge' image 2006-02-14 14:47:12 +00:00
rescue MFC: Install nextboot in /rescue as /rescue/nextboot rather than 2005-12-22 21:17:12 +00:00
sbin MFC 1.114: add missing args to mac:del and mac:kick 2006-02-19 00:20:39 +00:00
secure Upgrade to 4.2p1. 2005-09-11 16:50:37 +00:00
share MFC: rev. 1.29 2006-02-19 18:35:39 +00:00
sys Work around the shortness of the size argument to 2006-02-20 00:53:15 +00:00
tools MFC: reorg tools to simplify use with crunchgen and rename net80211 2006-01-31 20:48:21 +00:00
usr.bin MFC r1.33: 2006-02-17 22:25:02 +00:00
usr.sbin MFC: rev. 1.6 2006-02-19 15:44:51 +00:00
COPYRIGHT MFC: Bump copyright year. 2006-02-08 09:11:58 +00:00
LOCKS MFC: 1.3: RELENG_6_* commit constraints. 2006-02-06 16:39:06 +00:00
MAINTAINERS Since there's no emulation person, move the entry to upper section 2005-06-04 16:56:35 +00:00
Makefile MFC: 2006-01-07 19:40:08 +00:00
Makefile.inc1 MFC: 2006-01-07 19:40:08 +00:00
ObsoleteFiles.inc MFC: (1.27) s/bin/sbin/ for mount_nwfs, mount_portalfs and mount_smbfs. 2006-02-16 07:25:23 +00:00
README KerberosIV de-orbit burn continues. Disconnect from "make world". 2003-03-08 10:01:26 +00:00
UPDATING MFC: obey opt_inet6.h and opt_ipsec.h in kernel build directory. 2006-02-11 08:19:37 +00:00

This is the top level of the FreeBSD source directory.  This file
was last revised on:
$FreeBSD$

For copyright information, please see the file COPYRIGHT in this
directory (additional copyright information also exists for some
sources in this tree - please see the specific source directories for
more information).

The Makefile in this directory supports a number of targets for
building components (or all) of the FreeBSD source tree, the most
commonly used one being ``world'', which rebuilds and installs
everything in the FreeBSD system from the source tree except the
kernel, the kernel-modules and the contents of /etc.  The
``buildkernel'' and ``installkernel'' targets build and install
the kernel and the modules (see below).  Please see the top of
the Makefile in this directory for more information on the
standard build targets and compile-time flags.

Building a kernel is a somewhat more involved process, documentation
for which can be found at:
   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
And in the config(8) man page.
Note: If you want to build and install the kernel with the
``buildkernel'' and ``installkernel'' targets, you might need to build
world before.  More information is available in the handbook.

The sample kernel configuration files reside in the sys/<arch>/conf
sub-directory (assuming that you've installed the kernel sources), the
file named GENERIC being the one used to build your initial installation
kernel.  The file NOTES contains entries and documentation for all possible
devices, not just those commonly used.  It is the successor of the ancient
LINT file, but in contrast to LINT, it is not buildable as a kernel but a
pure reference and documentation file.


Source Roadmap:
---------------
bin		System/user commands.

contrib		Packages contributed by 3rd parties.

crypto		Cryptography stuff (see crypto/README).

etc		Template files for /etc.

games		Amusements.

gnu		Various commands and libraries under the GNU Public License.
		Please see gnu/COPYING* for more information.

include		System include files.

kerberos5	Kerberos5 (Heimdal) package.

lib		System libraries.

libexec		System daemons.

release		Release building Makefile & associated tools.

sbin		System commands.

secure		Cryptographic libraries and commands.

share		Shared resources.

sys		Kernel sources.

tools		Utilities for regression testing and miscellaneous tasks.

usr.bin		User commands.

usr.sbin	System administration commands.


For information on synchronizing your source tree with one or more of
the FreeBSD Project's development branches, please see:

  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html