dragonfly.git
19 years agostyle(9) cleanup.
Eirik Nygaard [Sat, 24 Jul 2004 19:45:10 +0000 (19:45 +0000)]
style(9) cleanup.

Submitted by: Douwe Kiela <virtus@wanadoo.nl>
Small fixups by: me

19 years agoLast commit changed a NTOHL to ntohs, correct this.
Joerg Sonnenberger [Sat, 24 Jul 2004 13:00:09 +0000 (13:00 +0000)]
Last commit changed a NTOHL to ntohs, correct this.

Noticed-by: dillon
19 years agostyle(9) cleanup:
Eirik Nygaard [Sat, 24 Jul 2004 11:45:44 +0000 (11:45 +0000)]
style(9) cleanup:
Convert functions to ANSI C.

Submitted by: Douwe Kiela <virtus@wanadoo.nl> with some small changes by me.

19 years agoRemove a not needed main() definition.
Eirik Nygaard [Sat, 24 Jul 2004 10:47:10 +0000 (10:47 +0000)]
Remove a not needed main() definition.

19 years agoBump version number for the 1.1-CURRENT tree.
Jeroen Ruigrok/asmodai [Sat, 24 Jul 2004 09:51:18 +0000 (09:51 +0000)]
Bump version number for the 1.1-CURRENT tree.

19 years agoThe return-path is optional in a headline, therefore don't skip a message
Hiten Pandya [Sat, 24 Jul 2004 06:25:29 +0000 (06:25 +0000)]
The return-path is optional in a headline, therefore don't skip a message
if it is missing return-path.

Obtained from FreeBSD via Peter Avalos <pavalos@theshell.com>.

19 years agoEmulate __FreeBSD__ till 3rd party applications later add in DragonFly
David Rhodus [Fri, 23 Jul 2004 18:15:08 +0000 (18:15 +0000)]
Emulate __FreeBSD__ till 3rd party applications later add in DragonFly
tags or switch from GNU style builds.

19 years agoHook c99 up to the build for usr.bin.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 17:10:10 +0000 (17:10 +0000)]
Hook c99 up to the build for usr.bin.

19 years agoAdd the C99 utility, now that we have a decent C99 compiler in base, i.e.
Hiten Pandya [Fri, 23 Jul 2004 16:32:58 +0000 (16:32 +0000)]
Add the C99 utility, now that we have a decent C99 compiler in base, i.e.
GCC-3.4.

Obtained from FreeBSD via Liam J. Foy <liamfoy@kerneled.org>

19 years agoRemove usage of NTOHS / NTOHL / HTONS / HTONL.
Joerg Sonnenberger [Fri, 23 Jul 2004 14:14:30 +0000 (14:14 +0000)]
Remove usage of NTOHS / NTOHL / HTONS / HTONL.

Discussed-with: hmp

19 years agoComment out extra token at end of #endif.
Joerg Sonnenberger [Fri, 23 Jul 2004 14:09:31 +0000 (14:09 +0000)]
Comment out extra token at end of #endif.

19 years agoInstead of casting the function, cast the argument to the (correct) type.
Joerg Sonnenberger [Fri, 23 Jul 2004 14:07:46 +0000 (14:07 +0000)]
Instead of casting the function, cast the argument to the (correct) type.

19 years agoIt is 'estcpu', not 'setcpu'.
Hiten Pandya [Fri, 23 Jul 2004 13:19:42 +0000 (13:19 +0000)]
It is 'estcpu', not 'setcpu'.

19 years agoFix build with gcc34.
Eirik Nygaard [Fri, 23 Jul 2004 13:03:20 +0000 (13:03 +0000)]
Fix build with gcc34.

Reported by: Simon 'corecode' Schubert <corecode@fs.ei.tum.de>

19 years agoAdd RC4 to the crypto module / device. This will be used by the generic
Joerg Sonnenberger [Fri, 23 Jul 2004 11:54:14 +0000 (11:54 +0000)]
Add RC4 to the crypto module / device. This will be used by the generic
802.11 layer.

19 years agoRegenerate.
Joerg Sonnenberger [Fri, 23 Jul 2004 11:46:50 +0000 (11:46 +0000)]
Regenerate.

19 years agoSync with FreeBSD 5-CURRENT.
Joerg Sonnenberger [Fri, 23 Jul 2004 11:46:09 +0000 (11:46 +0000)]
Sync with FreeBSD 5-CURRENT.

19 years agoAdd WARNS and set to level 3.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 09:26:08 +0000 (09:26 +0000)]
Add WARNS and set to level 3.

19 years agoInitialise to NULL to silence gcc.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 09:24:00 +0000 (09:24 +0000)]
Initialise to NULL to silence gcc.

19 years agoMake the second argument of interval() const, since it is not changed
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:57:48 +0000 (07:57 +0000)]
Make the second argument of interval() const, since it is not changed
at all in its use.

19 years agoFix two sign comparison mistakes.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:43:26 +0000 (07:43 +0000)]
Fix two sign comparison mistakes.

Synchronises with: FreeBSD v1.15 with the notable exception of making
i an unsigned integer since it need not be negative
and casting nhosts (a size_t and thus unsigned) to
it is just the other way around and throws away half
of the type.  Granted, the chance that you have more
than 2147483647 hosts (if assuming 32 bit) is a bit
much, nonetheless, this is the right way to do it in
my opinion.

19 years agoUse proper ANSI function definitions.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:24:35 +0000 (07:24 +0000)]
Use proper ANSI function definitions.

Synchronises with: FreeBSD v1.15
Submitted by: Douwe Kiela <virtus@wanadoo.nl> (in principle)

19 years agoUnify the input handling of the low-level network stack by introducing
Joerg Sonnenberger [Fri, 23 Jul 2004 07:16:31 +0000 (07:16 +0000)]
Unify the input handling of the low-level network stack by introducing
a new field if_input in struct ifnet.

Initialize if_input and if_output in the low-level _ifattach routines.

Make the _output and _input routines static, they are now called via
(*ifp->if_input) and (*ifp->if_output) accordingly. The exception is
ether_input which is still used with the second argument, the pointer
to the Ethernet header instead of always taking it from the mbuf.

Move the if_attach and bpfattach from the devices into fddi_ifattach,
atm_ifattach.

Remove the first argument to VLAN_INPUT_TAG, the pointer to the
Ethernet header. Expect it at the beginning of the mbuf.

Adjust the network for the changed API. Exceptions are wl(4), le(4),
ie(4), el(4), ed(4) and de(4), because they use a on-stack Ethernet
header. Another exception is the ATM stack, which uses a fourth argument
to atm_input.

Inspired-by: NetBSd net/if.h, rev 1.36
19 years agoMove a perror() to warn().
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:12:28 +0000 (07:12 +0000)]
Move a perror() to warn().

Synchronises with: FreeBSD v1.29 (partially)
Submitted by: Douwe Kiela <virtus@wanadoo.nl>

19 years agoUse err() instead of a perror()/exit() combination.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 07:11:03 +0000 (07:11 +0000)]
Use err() instead of a perror()/exit() combination.

Synchronises with: FreeBSD v1.52 (partially)
Submitted by: Douwe Kiela <virtus@wanadoo.nl>

19 years agoAssorted spelling fixes from Christian Brueffer <brueffer@freebsd.org>.
Hiten Pandya [Fri, 23 Jul 2004 06:43:05 +0000 (06:43 +0000)]
Assorted spelling fixes from Christian Brueffer <brueffer@freebsd.org>.

19 years agoCorrect usage of the cvsup command.
Jeroen Ruigrok/asmodai [Fri, 23 Jul 2004 06:36:47 +0000 (06:36 +0000)]
Correct usage of the cvsup command.

Submitted by: Douwe Kiela <virtus@wanadoo.nl>

19 years agoAdd new options to select different registries, basically synch'ing us
Hiten Pandya [Fri, 23 Jul 2004 06:29:27 +0000 (06:29 +0000)]
Add new options to select different registries, basically synch'ing us
with FreeBSD.

Document the newly added options in the manual page.

Obtained from FreeBSD via Liam J. Foy <liamfoy@kerneled.org>.

19 years agoRespect locale settings from the environment.
Hiten Pandya [Fri, 23 Jul 2004 06:24:27 +0000 (06:24 +0000)]
Respect locale settings from the environment.

Obtained from FreeBSD via Liam J. Foy <liamfoy@kerneled.org>.

19 years agoMechanically kill hard sentence breaks.
Hiten Pandya [Fri, 23 Jul 2004 06:23:06 +0000 (06:23 +0000)]
Mechanically kill hard sentence breaks.

Obtained from FreeBSD, via Liam J. Foy <liamfoy@kerneled.org>.

19 years agoForced commit to note that this fixes was submitted by: "Liam J. Foy"
Eirik Nygaard [Thu, 22 Jul 2004 14:50:19 +0000 (14:50 +0000)]
Forced commit to note that this fixes was submitted by: "Liam J. Foy"
<liamfoy@sepulcrum.org>

19 years ago * Remove one of the two err.h include statements.
Eirik Nygaard [Thu, 22 Jul 2004 14:49:15 +0000 (14:49 +0000)]
 * Remove one of the two err.h include statements.
 * errx() adds it's own newline, remove the one in the string.

19 years agoFix compiler warnings; include <sys/types.h> and <netinet/in.h> to satisfy
Hiten Pandya [Thu, 22 Jul 2004 14:30:07 +0000 (14:30 +0000)]
Fix compiler warnings; include <sys/types.h> and <netinet/in.h> to satisfy
<arpa/inet.h> header file.

19 years agoInclude <sys/types.h> and <netinet/in.h>, so that parse.y gets the correct
Hiten Pandya [Thu, 22 Jul 2004 14:05:07 +0000 (14:05 +0000)]
Include <sys/types.h> and <netinet/in.h>, so that parse.y gets the correct
definitions; also fix compiler warnings.

19 years agoRaise WARNS to level 6.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:42:24 +0000 (13:42 +0000)]
Raise WARNS to level 6.

19 years agoMake usage() static.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:42:06 +0000 (13:42 +0000)]
Make usage() static.

Found by: cscout

19 years agoRework the WARNS levels per FreeBSD's CURRENT source.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:41:25 +0000 (13:41 +0000)]
Rework the WARNS levels per FreeBSD's CURRENT source.
This introduces WARNS level 2, 3, and 5.
Tested with: GCC 2.95.4

19 years agoActually mark the function itself static as well.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:19:26 +0000 (13:19 +0000)]
Actually mark the function itself static as well.

19 years agoMark filescope functions static.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 13:09:02 +0000 (13:09 +0000)]
Mark filescope functions static.

Found by: cscout

19 years agoMark the variables defined at file scope static.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 12:56:58 +0000 (12:56 +0000)]
Mark the variables defined at file scope static.

19 years agoGarbage collect two unused variables (SaveFs, CountCopiedBytes).
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 12:35:11 +0000 (12:35 +0000)]
Garbage collect two unused variables (SaveFs, CountCopiedBytes).

Found by: cscout

19 years agoMake setthetime() static per the prototype.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 12:23:54 +0000 (12:23 +0000)]
Make setthetime() static per the prototype.

Found by: cscout

19 years agoAlso mark the function itself static, not just the prototype.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 12:23:05 +0000 (12:23 +0000)]
Also mark the function itself static, not just the prototype.

19 years agoMake scanfiles() static since it is limited to the file scope.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 12:20:25 +0000 (12:20 +0000)]
Make scanfiles() static since it is limited to the file scope.

Found by: cscout

19 years agoMake f_stream static.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 11:52:33 +0000 (11:52 +0000)]
Make f_stream static.

Found by: cscout

19 years agoUse static on file scoped function prototypes and variables.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 11:49:38 +0000 (11:49 +0000)]
Use static on file scoped function prototypes and variables.

Found by: cscout

19 years agoGarbage collect RETAINBITS, not used anywhere.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 11:41:56 +0000 (11:41 +0000)]
Garbage collect RETAINBITS, not used anywhere.

Found by: cscout

19 years agoMake unit_adjust() static as per its prototype.
Jeroen Ruigrok/asmodai [Thu, 22 Jul 2004 11:39:02 +0000 (11:39 +0000)]
Make unit_adjust() static as per its prototype.

Found by: cscout

19 years agoDragonFly MP support, not fbsd anymore.
David Rhodus [Wed, 21 Jul 2004 17:19:35 +0000 (17:19 +0000)]
DragonFly MP support, not fbsd anymore.

19 years agoCleanout __FreeBSD__ defines which are not needed.
David Rhodus [Wed, 21 Jul 2004 16:13:43 +0000 (16:13 +0000)]
Cleanout __FreeBSD__ defines which are not needed.

19 years agoCleanout __FreeBSD__ defines which we don't need.
David Rhodus [Wed, 21 Jul 2004 15:28:16 +0000 (15:28 +0000)]
Cleanout __FreeBSD__ defines which we don't need.

19 years agoRemove __FreeBSD__ defines which were not needed and caused compile
David Rhodus [Wed, 21 Jul 2004 15:26:20 +0000 (15:26 +0000)]
Remove __FreeBSD__ defines which were not needed and caused compile
time warnings.

19 years agoRemove unused variable _PATCHES.
Joerg Sonnenberger [Wed, 21 Jul 2004 13:34:27 +0000 (13:34 +0000)]
Remove unused variable _PATCHES.

19 years agoAesthatical change, move 'All rights reserved' to the same line as
Hiten Pandya [Wed, 21 Jul 2004 12:44:25 +0000 (12:44 +0000)]
Aesthatical change, move 'All rights reserved' to the same line as
the Copyright.

19 years agoAdd handling of patches to the module framework.
Joerg Sonnenberger [Wed, 21 Jul 2004 10:45:21 +0000 (10:45 +0000)]
Add handling of patches to the module framework.

19 years agoDocument PCIY_xxx.
Jeroen Ruigrok/asmodai [Wed, 21 Jul 2004 07:21:01 +0000 (07:21 +0000)]
Document PCIY_xxx.
Synchs with FreeBSD v1.34.

19 years agoInspired by rev 1.33 of FreeBSD, but which was not documented:
Jeroen Ruigrok/asmodai [Wed, 21 Jul 2004 07:15:37 +0000 (07:15 +0000)]
Inspired by rev 1.33 of FreeBSD, but which was not documented:

remove unused definitions (thanks to glimpse for verification)

19 years agoAdd identifiers for Serial Attached SCSI per dicussion with the PCI SIG
Jeroen Ruigrok/asmodai [Wed, 21 Jul 2004 06:56:48 +0000 (06:56 +0000)]
Add identifiers for Serial Attached SCSI per dicussion with the PCI SIG
chairman (includes vendor specific and serial storage bus codes).

19 years agoReplace the perl man filter with a sed man filter, fixing manual page
Matthew Dillon [Wed, 21 Jul 2004 02:07:23 +0000 (02:07 +0000)]
Replace the perl man filter with a sed man filter, fixing manual page
generation for dhclient during a buildworld.

Patch-by: YONETANI Tomokazu <qhwt+dragonfly-bugs@les.ath.cx>
Reported-by: "M. Schatzl" <lists@neuronenwerk.de>
19 years agoFix a device pager leak for the case where the page already exists in the
Matthew Dillon [Wed, 21 Jul 2004 01:25:18 +0000 (01:25 +0000)]
Fix a device pager leak for the case where the page already exists in the
VM object (typical case: multiple mappings of the device?).  If the page
already exists we simply update its physical address.  It is unclear whether
the physical address would ever actually be different, however.

This is an untested patch.

Original-patch-written-by: Christian Zander @ NVIDIA
Workaround-suggested-by: Tor Egge <tegge@freebsd.org>
Submitted-by: Emiel Kollof <coolvibe@hackerheaven.org>
19 years agoAdd a dire warning about PCI_ENABLE_IO_MODES.
Matthew Dillon [Tue, 20 Jul 2004 18:48:02 +0000 (18:48 +0000)]
Add a dire warning about PCI_ENABLE_IO_MODES.

19 years agoata-raid associates raw ata disk devices to record the raid setup and checks
Matthew Dillon [Tue, 20 Jul 2004 17:55:33 +0000 (17:55 +0000)]
ata-raid associates raw ata disk devices to record the raid setup and checks
for the existance of an associated si_disk structure to determine whether
the associations remain valid.  In DragonFly the abstracted 'disk' layer
is now above the raw drive device rather then integrated with the raw drive
device and thus the raw device does not have an si_disk association.  Change
the conditionals to simply check for the existance of the device.

The prior check was resulting in drives being marked damaged in the raid
when they weren't, making the raid unusable and requiring a complete rebuild.
Though it is possible to rebuild and regenerate the labels (e.g. using
scan_ffs) without losing data, it is painfull to have to do it.

Reported-painfully-by: Andrew Atrens <atrens@nortelnetworks.com>
19 years agoAdd llc_snap shortcut.
Joerg Sonnenberger [Tue, 20 Jul 2004 14:43:34 +0000 (14:43 +0000)]
Add llc_snap shortcut.

Obtained-from: FreeBSD

19 years agoUnconditionally print startup 8254 and TSC calibrations.
Matthew Dillon [Tue, 20 Jul 2004 04:12:08 +0000 (04:12 +0000)]
Unconditionally print startup 8254 and TSC calibrations.

Add the hw.i8254 sysctl node which returns systimer statistics.  In
particular, hw.i8254.timestamp generates both an 8254 and a TSC timestamp
and can be used to check whether the 8254 timer 2 has gone whacko or not.

19 years agoDisplay proper information when the verbose flag (-v) is passed to
Hiten Pandya [Tue, 20 Jul 2004 03:35:27 +0000 (03:35 +0000)]
Display proper information when the verbose flag (-v) is passed to
vnconfig(8).

It was showing '0 bytes on...' when a size flag (-S) was not given,
for example when you want to mount an ISO.

19 years agoSCSI CD devices require 'cd0c' to be specified instead of 'cd0a', while
Matthew Dillon [Tue, 20 Jul 2004 03:08:23 +0000 (03:08 +0000)]
SCSI CD devices require 'cd0c' to be specified instead of 'cd0a', while
ATA devices allow either 'acd0c' or 'acd0a'.  Change the CD root automount
sequence to use 'c' instead of 'a' in order to properly mount both SCSI
and ATA CDRom drives.

19 years agoMinor KNF/style cleanups. No operational changes.
Hiten Pandya [Tue, 20 Jul 2004 02:59:18 +0000 (02:59 +0000)]
Minor KNF/style cleanups.  No operational changes.

19 years agoMAJOR BOOT CODE REVAMP / 30 hour+ hacking session (50 if you include the
Matthew Dillon [Mon, 19 Jul 2004 23:30:38 +0000 (23:30 +0000)]
MAJOR BOOT CODE REVAMP / 30 hour+ hacking session (50 if you include the
attempt I made last month).

* Document the code wherever possible.  The previous code had lots of
  basically useless comments.

* Consolidate constants and calculations into a single header file.  The
  previous code separately defined the constants, did not document the
  relationships (which is why it took 30+ hours to fix), and often used
  unrelated numerical optimizations to get from one constant def to another.

* Most address ORG values can now be modified in one place (bootasm.h) and
  the boot code will actually still work.  Note, however, that many ORG
  values must still be < 0x10000 due to the lack of segment register use in
  16 bit code.   This can be fixed with additional work, but not in this
  commit.

* Provide two alternative address ORG relocations for experimentation
  purposes.

* Fix what I believe to be a bug in boot2/boot2.c.  Boot2.c was accessing
  the drive/slice data stored by boot1 using the base-offset-0 linear address
  instead of the btx-client-user address.  Additionally, boot1 was storing
  the data at a location that the btx client could not access.
  (see MEM_BTX_USR_ARG)

* Fix a heap/stack collision in the loader.  The loader was setting the end
  of the heap to the end of BIOS memory without taking into account the
  fact that its stack was likely growing downward starting at the end of
  BIOS memory.

* Fix a heap calculation error in the loader.  The loader was using the
  physical address representation of the end of BIOS memory instead of the
  virtual address representatino, which can result in the loader pushing into
  BIOS memory.

19 years agoRemove my changes. PATH_PORTS is not checked for multiple entries as
Justin C. Sherrill [Mon, 19 Jul 2004 20:27:36 +0000 (20:27 +0000)]
Remove my changes.  PATH_PORTS is not checked for multiple entries as
PATH_SOURCES is, and adding /usr/dfports to PATH_SOURCES does not work,
as whereis will just print the first place it finds a match.  No sense in
leaving it broken while I figure this out.

19 years agoCorrect a bug in NXCCFLAGS generation.
Matthew Dillon [Mon, 19 Jul 2004 16:24:27 +0000 (16:24 +0000)]
Correct a bug in NXCCFLAGS generation.

19 years agoUpdate pciconf to print the recently added categories.
Jeroen Ruigrok/asmodai [Mon, 19 Jul 2004 13:56:34 +0000 (13:56 +0000)]
Update pciconf to print the recently added categories.

19 years agoCorrect some PCIS to PCIC and PCIP prefixes.
Jeroen Ruigrok/asmodai [Mon, 19 Jul 2004 13:47:12 +0000 (13:47 +0000)]
Correct some PCIS to PCIC and PCIP prefixes.

19 years agoAdd PCIS_ definitions per PCI specification 3.0.
Jeroen Ruigrok/asmodai [Mon, 19 Jul 2004 10:36:09 +0000 (10:36 +0000)]
Add PCIS_ definitions per PCI specification 3.0.

19 years agoUpdate the PCIS_ definitions per the PCI 2.3 specification.
Jeroen Ruigrok/asmodai [Mon, 19 Jul 2004 10:31:04 +0000 (10:31 +0000)]
Update the PCIS_ definitions per the PCI 2.3 specification.

19 years agoAdd rndcontrol.
Jeroen Ruigrok/asmodai [Mon, 19 Jul 2004 10:24:03 +0000 (10:24 +0000)]
Add rndcontrol.

Submitted by: Peter Avalos <pavalos@theshell.com>

19 years agoUpdate comment to point to the right file (src/sys/bus/pci/pcireg.h).
Jeroen Ruigrok/asmodai [Mon, 19 Jul 2004 09:28:17 +0000 (09:28 +0000)]
Update comment to point to the right file (src/sys/bus/pci/pcireg.h).

19 years agoAdd struct ucred * argument to ng_fec_ioctl
Joerg Sonnenberger [Mon, 19 Jul 2004 09:23:23 +0000 (09:23 +0000)]
Add struct ucred * argument to ng_fec_ioctl

19 years agoConsolidate most constant memory addresses in bootasm.h part2/2:
Matthew Dillon [Mon, 19 Jul 2004 01:25:02 +0000 (01:25 +0000)]
Consolidate most constant memory addresses in bootasm.h part2/2:
Convert btx/lib and do additional cleanups.  Again no operational changes.

19 years agoConsolidate most constant memory addresses in bootasm.h part1/2. Convert
Matthew Dillon [Sun, 18 Jul 2004 23:40:09 +0000 (23:40 +0000)]
Consolidate most constant memory addresses in bootasm.h part1/2.  Convert
all .s files into .S files and replace any remaining M4 use with standard
preprocessor directives.

Files generated should be the same as before this commit.

19 years agoPerform some basic cleanups. Change some types over to C99 standard
David Rhodus [Sun, 18 Jul 2004 19:43:48 +0000 (19:43 +0000)]
Perform some basic cleanups. Change some types over to C99 standard
types. Correct some misspellings. Correct some type usages which could
possibly resulted in overflows in the filesystem code.

19 years agoSync bootn0 with recent boot0 fixes.
Matthew Dillon [Sun, 18 Jul 2004 18:42:08 +0000 (18:42 +0000)]
Sync bootn0 with recent boot0 fixes.

19 years agoImplement advisory locking support for the cd9660 filesystem.
David Rhodus [Sun, 18 Jul 2004 18:35:20 +0000 (18:35 +0000)]
Implement advisory locking support for the cd9660 filesystem.

19 years agoBrute force a register save/restore for int 0x13 (disk I/O) and 0x10 (putchar)
Matthew Dillon [Sun, 18 Jul 2004 18:26:33 +0000 (18:26 +0000)]
Brute force a register save/restore for int 0x13 (disk I/O) and 0x10 (putchar)
by using pusha/popa.  Don't trust the BIOS to properly save and restore
registers.

Note that the TICKS check for boot0 currently still depends on %di being
retained across two BIOS calls.  More code reorganization is required to
make a save/restore fit in the space available.

19 years agoBring the twiddle fix in from FreeBSD5:1.11. This rev also added a
Matthew Dillon [Sun, 18 Jul 2004 16:51:38 +0000 (16:51 +0000)]
Bring the twiddle fix in from FreeBSD5:1.11.  This rev also added a
save/restore pair for %cx around the read, but that is not necessarily
sufficient.  Instead of pussy-footing around, use pushal/popal to save ALL
registers around the two BIOS calls cdboot.s makes and get rid of random
saves and restores elsewhere in the code.

The pushal/popal fix allows bochs to boot past the loader into single-user,
though it still panics when we try to use the FP unit.

19 years agoFix two serious bugs in the IP demux code. First, if ip_mport() m_pullup()'s
Matthew Dillon [Sun, 18 Jul 2004 16:26:43 +0000 (16:26 +0000)]
Fix two serious bugs in the IP demux code.  First, if ip_mport() m_pullup()'s
an mbuf, the new/modified mbuf is not returned to the caller and the caller
may wind up using a stale/freed mbuf.  Second, ip_mport() was not consistently
freeding mbufs which could lead to both a memory leak and a double free.

Reported-by: YONETANI Tomokazu <qhwt+dragonfly-bugs@les.ath.cx> (panic: TCP header not in one mbuf).
19 years agoCorrect dumb copy/paste of existing line mistake to correct name.
Jeroen Ruigrok/asmodai [Sun, 18 Jul 2004 12:49:15 +0000 (12:49 +0000)]
Correct dumb copy/paste of existing line mistake to correct name.

19 years agoClarify the Sony strings.
Jeroen Ruigrok/asmodai [Sun, 18 Jul 2004 12:37:03 +0000 (12:37 +0000)]
Clarify the Sony strings.

19 years agoAdd the Sony CXD1947, which seems to be used in some Sony Vaios.
Jeroen Ruigrok/asmodai [Sun, 18 Jul 2004 12:29:19 +0000 (12:29 +0000)]
Add the Sony CXD1947, which seems to be used in some Sony Vaios.

19 years agoThe device in question is the Sony CXD3222, not the CX3022.
Jeroen Ruigrok/asmodai [Sun, 18 Jul 2004 12:27:36 +0000 (12:27 +0000)]
The device in question is the Sony CXD3222, not the CX3022.

19 years agoClarify VIA Fire II identifier string.
Jeroen Ruigrok/asmodai [Sun, 18 Jul 2004 12:24:29 +0000 (12:24 +0000)]
Clarify VIA Fire II identifier string.

19 years agoBump the rev to 1.1-CURRENT.
David Rhodus [Sun, 18 Jul 2004 03:11:15 +0000 (03:11 +0000)]
Bump the rev to 1.1-CURRENT.

19 years agoDon't let packets with DF set sneak by through the hardware-assisted
Matthew Dillon [Sun, 18 Jul 2004 00:34:18 +0000 (00:34 +0000)]
Don't let packets with DF set sneak by through the hardware-assisted
fragmentation path.

Reported-by: "Simon 'corecode' Schubert" <corecode@fs.ei.tum.de>
Taken-From: FreeBSD ip_output.c/1.199

19 years agoCompensate sockstat for the CPU column that netstat now adds.
Matthew Dillon [Sun, 18 Jul 2004 00:28:22 +0000 (00:28 +0000)]
Compensate sockstat for the CPU column that netstat now adds.

Submitted-by: Barry Pederson <bp@barryp.org>
19 years agoMerge revision 1.16 of src/usr.bin/rusers/rusers.c from FreeBSD.
Hiten Pandya [Sat, 17 Jul 2004 21:10:42 +0000 (21:10 +0000)]
Merge revision 1.16 of src/usr.bin/rusers/rusers.c from FreeBSD.

Submitted-by: Liam J. Foy <liamfoy@kerneled.org>
19 years agoEliminate hard sentence breaks.
Hiten Pandya [Sat, 17 Jul 2004 21:06:38 +0000 (21:06 +0000)]
Eliminate hard sentence breaks.

19 years agoReadability changes, mostly removing the option to not do NewReno,
Jeffrey Hsu [Sat, 17 Jul 2004 20:31:31 +0000 (20:31 +0000)]
Readability changes, mostly removing the option to not do NewReno,
re-indenting some code, and ansifying some function definitions.

19 years agoIn dumpon(8) usage, `off' is a literal keyword, not a parameter name.
Chris Pressey [Sat, 17 Jul 2004 18:21:18 +0000 (18:21 +0000)]
In dumpon(8) usage, `off' is a literal keyword, not a parameter name.

19 years agoMinor documentation update to clarify the effect of the vfs.usermount sysctl.
Matthew Dillon [Sat, 17 Jul 2004 17:43:35 +0000 (17:43 +0000)]
Minor documentation update to clarify the effect of the vfs.usermount sysctl.

Submitted-by: Einar Karttunen <ekarttun@cs.helsinki.fi>
Taken from: NetBSD

19 years agoBring definition of va_list and friends, so that ACPI module actually
Hiten Pandya [Sat, 17 Jul 2004 10:49:43 +0000 (10:49 +0000)]
Bring definition of va_list and friends, so that ACPI module actually
builds with GCC-2.5 and GCC-3.4.

Noticed-by: Joerg Sonnenberger <joerg@bec.de>
19 years agoAdd a prototype for isab_attach(), which is used by the ACPI-5 ISA
Hiten Pandya [Sat, 17 Jul 2004 10:47:27 +0000 (10:47 +0000)]
Add a prototype for isab_attach(), which is used by the ACPI-5 ISA
bridge code.