summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit adds basic support for the UFS2 filesystem. The UFS2mckusick2002-06-2189-3369/+5199
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | filesystem expands the inode to 256 bytes to make space for 64-bit block pointers. It also adds a file-creation time field, an ability to use jumbo blocks per inode to allow extent like pointer density, and space for extended attributes (up to twice the filesystem block size worth of attributes, e.g., on a 16K filesystem, there is space for 32K of attributes). UFS2 fully supports and runs existing UFS1 filesystems. New filesystems built using newfs can be built in either UFS1 or UFS2 format using the -O option. In this commit UFS1 is the default format, so if you want to build UFS2 format filesystems, you must specify -O 2. This default will be changed to UFS2 when UFS2 proves itself to be stable. In this commit the boot code for reading UFS2 filesystems is not compiled (see /sys/boot/common/ufsread.c) as there is insufficient space in the boot block. Once the size of the boot block is increased, this code can be defined. Things to note: the definition of SBSIZE has changed to SBLOCKSIZE. The header file <ufs/ufs/dinode.h> must be included before <ufs/ffs/fs.h> so as to get the definitions of ufs2_daddr_t and ufs_lbn_t. Still TODO: Verify that the first level bootstraps work for all the architectures. Convert the utility ffsinfo to understand UFS2 and test growfs. Add support for the extended attribute storage. Update soft updates to ensure integrity of extended attribute storage. Switch the current extended attribute interfaces to use the extended attribute storage. Add the extent like functionality (framework is there, but is currently never used). Sponsored by: DARPA & NAI Labs. Reviewed by: Poul-Henning Kamp <phk@freebsd.org>
* o Remove GIANT_REQUIRED from vm_map_stack().alc2002-06-211-2/+0
|
* Update for libpcap 0.7.1fenner2002-06-211-14/+46
| | | | Originally-committed-to-wrong-repository by: fenner
* o Remove GIANT_REQUIRED from vm_pager_allocate() and vm_pager_deallocate().alc2002-06-211-3/+0
|
* New release notes: gifconfig(8) gone, prefix(8) gone.bmah2002-06-212-4/+20
| | | | Adjust one other item to match.
* Merge libpcap 0.7.1fenner2002-06-219-106/+1270
| | | | MFC after: 2 weeks
* This commit was generated by cvs2svn to compensate for changes in r98530,fenner2002-06-2132-840/+3224
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import libpcap 0.7.1, fromfenner2002-06-2142-949/+4511
| | | | | | | | http://www.tcpdump.org/release/libpcap-0.7.1.tar.gz
* | Update for libpcap 0.7.1fenner2002-06-211-6/+23
| |
* | Update for tcpdump 3.7.1fenner2002-06-212-47/+36
| |
* | Merge tcpdump 3.7.1fenner2002-06-2130-1474/+3144
| | | | | | | | MFC after: 2 weeks
* | This commit was generated by cvs2svn to compensate for changes in r98524,fenner2002-06-2186-4240/+10457
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import tcpdump 3.7.1, fromfenner2002-06-21116-5624/+13491
| | | | | | | | | | | | http://www.tcpdump.org/release/tcpdump-3.7.1.tar.gz
* | | Release note added: rc.d.bmah2002-06-202-12/+40
| | | | | | | | | | | | | | | MFCs noted: fold(1) -b/-s, pwd(1) -L, renice(8) -n, unexpand(1) -t, xargs(1) -I/-L.
* | | Modified release note: ncurses 5.2-20020615, added version number forbmah2002-06-202-18/+10
| | | | | | | | | | | | | | | | | | | | | | | | lukemftp. Deleted release note: gawk. MFC noted: lukemftpd.
* | | Add some #define's for mbuf annotations.luigi2002-06-201-0/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As the comment in the code says, eventually there will be a proper data structure (e.g NetBSD's struct m_tag) to store chains of annotations, and mbuf-handling procedures will handle these chains in the correct way. Right now, these chains do not exist, and we just use the constants defined here to implement simple ad-hoc solutions to remove some global variables used so far to pass around informations about packets being processed. Global variables are not only ugly and make the code unreadable, they also prevent from using parallelism in network stack processing. (the 3-days MFC only refers to this commit, i.e. the PACKET_TAG_* constants; the full mechanism will be committed and MFC'ed on a longer timescale). MFC after: 3 days
* | | Provide a way to keep out old ("historic") release notes from bloatingbmah2002-06-206-18/+102
| | | | | | | | | | | | | | | | | | the size of the rendered release notes. By default, any element with a role="historic" attribute won't get rendered in the output unless the INCLUDE_HISTORIC Makefile variable is defined.
* | | Add a few files which are needed to build "passwd" now thatluigi2002-06-206-35/+891
| | | | | | | | | | | | the standard version of these files have been PAMified (and axed).
* | | Remove GAWK. I removed it from the build 2 weeks ago and the worldobrien2002-06-20295-109135/+0
| | | | | | | | | | | | did not end. So finish the deed.
* | | {f,s}usword -> {f,s}uword16. Implement {f,s}uword32.jake2002-06-202-46/+94
| | | | | | | | | | | | Requested by: peter
* | | Change the way we internally store the mount options tomux2002-06-204-134/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a linked list. This is to allow the merging of the mount options in the MNT_UPDATE case, as the current data structure is unsuitable for this. There are no functional differences in this commit. Reviewed by: phk
* | | Fix a bug fixed by NetBSD in revision 1.42 of parse.c by christos which causedjmallett2002-06-201-0/+8
| | | | | | | | | | | | | | | | | | | | | an example Makefile I was showing someone just last night to report a variable as being recursive. Obtained from: NetBSD
* | | More unsigned char casts to isupper(3).jmallett2002-06-201-2/+2
| | | | | | | | | | | | Obtained from: NetBSD
* | | Merge ncurses 5.2-20020615 changes onto mainline.peter2002-06-201-3/+3
| | |
* | | Provide a heuristic for RCS conflicts.jmallett2002-06-201-2/+9
| | | | | | | | | | | | Obtained from: NetBSD
* | | This commit was generated by cvs2svn to compensate for changes in r98503,peter2002-06-2024-257/+640
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Import ncurses 5.2-20020615 to fix a first-column display bug.peter2002-06-2025-260/+643
| | | |
| * | | Removed in latest importpeter2002-05-211-158/+0
| | | |
* | | | Look for wildcards, and balanced meta-characters such as { and } like NetBSDjmallett2002-06-201-2/+18
| | | | | | | | | | | | | | | | | | | | | | | | does. Obtained from: NetBSD
* | | | Expand a buffer to reduce diffs to NetBSD.jmallett2002-06-201-2/+2
| | | | | | | | | | | | | | | | Obtained from: NetBSD
* | | | Diff reduction for great justice against NetBSD, cast to unsigned char whenjmallett2002-06-204-18/+18
| | | | | | | | | | | | | | | | passing an argument to isspace(3).
* | | | Implement SO_NOSIGPIPE option for sockets. This allows one to request thatalfred2002-06-204-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | an EPIPE error return not generate SIGPIPE on sockets. Submitted by: lioux Inspired by: Darwin
* | | | o Remove an incorrect cast from obreak(). This cast would,alc2002-06-201-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for example, break an sbrk(>=4GB) on 64-bit architectures even if the resource limit allowed it. o Correct an off-by-one error. o Correct a spelling error in a comment. o Reorder an && expression so that the commonly FALSE expression comes first. Submitted by: bde (bullets 1 and 2)
* | | | Don't leak resources if fdcheckstd() fails during exec.alfred2002-06-201-5/+10
| | | | | | | | | | | | | | | | Submitted by: Mike Makonnen <makonnen@pacbell.net>
* | | | Don't try to decode old-style options if the argv[1] begins with `-' and thesobomax2002-06-201-10/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | second character represents some option taking an argument. This fixes problem when ps(1) is invoked for examply as follows: $ ps -Ufoobar1234 the above example results in option string being interpreted as -U foobarp1234 - note extra `p'. Reported by: Vladimir Sotnikov <vovan@kyivstar.net> MFC after: 2 weeks
* | | | Display the mutex name in the ^T status line if the selected threadiedowse2002-06-201-2/+3
| | | | | | | | | | | | | | | | | | | | is blocked on a mutex. Prepend a '*' to distinguish this case as is done in top(1).
* | | | Whitespace fixes to line-up EOL escapes whose right-most extraints changed injmallett2002-06-201-15/+15
| | | | | | | | | | | | | | | | the previous revision due to the biggest line changing.
* | | | Cast sp to uintptr_t when doing a compare of it to STACKMAX which is a size_t.jmallett2002-06-202-5/+5
| | | | | | | | | | | | | | | | This messes up some indentation in mdef.h for some macros.
* | | | It seems the hard lock on m4(1) is viewed as superfluous. Okay. It's gone.jmallett2002-06-201-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | I'm sick of waiting on OpenBSD to make a number of changes anyway. If someone else wants to take over fixing m4(1), I'll be glad to make them aware of the existing issues.
* | | | Quick fix for the type of the bitmap in sigset_t. It was an array ofbde2002-06-201-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4 u_ints but needs to be an array of 4 uint32_t's to work, at least if unsigned ints have less than 32 bits. It should be a non-array of 1 uint128_t on 128-bit machines, especially if u_int has 128 bits. The headers that declare uint32_t (actually __uint32_t) are intentionally not included here since this header should only be included by other headers. Fixed some style bugs (space instead of tab after #ifndef and #endif).
* | | | Anonymize the "portmap" program to get better compatibility withdougb2002-06-203-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | rpcbind in -current. Submitted by: Alexander Kabaev <ak03@gte.com>
* | | | Update an 'XXX what is this?' type comment about suswintr and fuswintr.peter2002-06-203-6/+6
| | | | | | | | | | | | | | | | These are 16 bit short values used only by the profiling code.
* | | | Style: put static qualifier on definition of static functions.tjr2002-06-201-7/+7
| | | |
* | | | Use suword16/fuword16 instead of susword/fusword - this has two differentpeter2002-06-205-23/+23
| | | | | | | | | | | | | | | | | | | | definitions so far.. 16 bit on x86 and appears to be 32 bit on sparc64. Be explicit to avoid suprises.
* | | | Bogusness may have happened using a variable assignment here before, butjmallett2002-06-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | proper parens mean that fd is always set by open(2) [in any part of C], and so we can accurately check for it returning -1, without feeling like we need to initialise fd to -1 in its declaration. In other words, fix a stylistic/bogus nit.
* | | | Deorbit suibyte(). It was only used for split address space systemspeter2002-06-2011-72/+15
| | | | | | | | | | | | | | | | for supporting UIO_USERISPACE (ie: it wasn't used).
* | | | time(1) does not use the shell to execute the specified utility, removetjr2002-06-201-6/+2
| | | | | | | | | | | | | | | | sentence stating it did.
* | | | Remove references to UIO_USERISPACE which no longer exists.peter2002-06-202-6/+2
| | | |
* | | | Remove UIO_USERISPACE - we do not support any split instruction/datapeter2002-06-202-7/+0
| | | | | | | | | | | | | | | | | | | | address space machines (eg: pdp-11) and are not likely to ever do so. Nothing in our kernel sets this.
* | | | Make it obvious that command line arguments may be specified for the utilitytjr2002-06-202-10/+11
| | | | | | | | | | | | | | | | | | | | that is to be invoked on the command line. Use "utility" instead of "command" in manual page and usage message for consistency with POSIX.
OpenPOWER on IntegriCloud