obrien
5923199859
Use __FBSDID().
2003-06-11 07:22:30 +00:00
obrien
9e9a8e4f69
There is no reason to be cute with ntohl(). Just call it directly rather
...
than use a macro that tries to do conversions in place.
Compile tested on: sparc64
2003-02-23 22:26:39 +00:00
imp
cf874b345d
Back out M_* changes, per decision of the TRB.
...
Approved by: trb
2003-02-19 05:47:46 +00:00
alfred
bf8e8a6e8f
Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.
...
Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT.
2003-01-21 08:56:16 +00:00
schweikh
d3367c5f5d
Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,
...
especially in troff files.
2003-01-01 18:49:04 +00:00
schweikh
86f7487fb6
Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/
...
Add FreeBSD Id tag where missing.
2002-12-30 21:18:15 +00:00
jhb
b72917b520
- Change the ATM stack functions to use intptr_t instead of int for opaque
...
arguments.
- Fix a few other places that assumed that sizeof(int) == sizeof(void *).
Reviewed by: mdodd
2002-11-08 18:27:30 +00:00
bde
372e8e5e08
Include <sys/systm.h> instead of depending on namespace pollution in
...
<net/if_var.h>. But depend on the standard pollution in <sys/param.h>.
Removed unused includes.
2002-09-29 12:01:36 +00:00
arr
1471410889
- Finish the uni part of the storage pool cleanup. There should now only
...
be a few bits left to clean from the HARP code in terms of what is using
the storage pools; once that's done, the memory management code can be
removed entirely.
This commit effectively changes the use of dynamic memory routines from
atm_allocate, atm_free, atm_release_pool to uma_zcreate, uma_zalloc,
uma_zfree, uma_zdestroy.
2002-06-13 14:32:51 +00:00
arr
ab6fdd245b
- Nuke some more not needed #ifdef cruft.
2002-04-21 01:41:05 +00:00
arr
122c24db48
- Change KM_ macro calls to the appropriate function call.
...
- Nuke KM_ macros from port.h
This is a leadin step towards cleaning up this code as I wait for some
ATM cards and a ATM switch to arrive.
2002-04-19 17:45:22 +00:00
alfred
c61e01af35
Remove __P.
2002-03-20 08:00:54 +00:00
kris
7d13aa56bf
Don't call log() without a format string.
...
MFC after: 2 weeks
2001-09-10 12:00:47 +00:00
pirzyk
1b460ef2a3
Commited patch for uni signaling fix.
...
PR: kern/28748
Submitted by: Richard Hodges <rh@matriplex.com>
MFC after: 2 weeks
2001-07-11 16:31:50 +00:00
asmodai
3065478332
Preceed/preceeding are not english words. Use precede and preceding.
2001-02-18 10:43:53 +00:00
phk
8ae10410a6
Add back some now needed #include <sys/systm.h>
...
Fix various warnings while here anyway.
2000-12-07 22:19:06 +00:00
phk
b839b1116f
Remove more unused #includes.
2000-10-30 07:42:06 +00:00
phk
beadbd4365
Remove unneeded #include <machine/clock.h>
2000-10-15 14:19:01 +00:00
phk
fe59073f8d
Remove the #include kitchensink <netatm/kern_include.h> and add
...
the #includes to the respective source files.
Also un-nest includes in <dev/hfa/fore_include.h>
I have run src/tools/tools/kerninclude to remove 1239 clearly
unneeded #includes reducing the total from 3524 includes to 2285.
2000-10-12 08:14:20 +00:00
phk
acecaa1fc2
More HARP polishina:
...
unifdef -UFORE_SBUS -DFORE_PCI
s/ATM_KERNEL/_KERNER/g
2000-10-12 07:42:34 +00:00
phk
4d5d6d69ca
Do some cleanups of the HARP atm codes interface into the system:
...
Define the NETISR just like all the other NETISRs.
unifdef -Usun -D__FreeBSD__ we will probably never support sun4c
and if we do we can't use the solaris code anyway and I doubt
anybody will be running Fore ATM cards in then in the first place.
2000-10-12 00:03:50 +00:00
mks
3f94f7df4e
Remove un-needed #include's.
...
Pointed out by: phk
2000-01-17 20:49:59 +00:00
mks
c7afe93038
Notice when an interface's ATM address changes when running a local arpserver.
2000-01-15 20:46:07 +00:00
peter
3b842d34e8
$Id$ -> $FreeBSD$
1999-08-28 01:08:13 +00:00
dillon
975fba8a24
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-28 00:57:57 +00:00
dillon
dbf5cd2b57
Fix warnings in preparation for adding -Wall -Wcast-qual to the
...
kernel compile
1999-01-27 22:42:27 +00:00
mks
299738cfe4
Prevent duplicate output lines from 'atm show arpserver' command on systems
...
with multiple ATM physical interfaces.
1999-01-19 23:16:11 +00:00
mks
1b34e45dc5
Prevent accessing freed signalling instance memory during detach processing.
1999-01-19 23:14:51 +00:00
phk
42c5874d2e
Set and propagate the correct cause code values.
...
Submitted by: Mike Spengler <mks@circe.networkcs.com>
1998-12-11 21:47:47 +00:00
archie
982e80577d
Examine all occurrences of sprintf(), strcat(), and str[n]cpy()
...
for possible buffer overflow problems. Replaced most sprintf()'s
with snprintf(); for others cases, added terminating NUL bytes where
appropriate, replaced constants like "16" with sizeof(), etc.
These changes include several bug fixes, but most changes are for
maintainability's sake. Any instance where it wasn't "immediately
obvious" that a buffer overflow could not occur was made safer.
Reviewed by: Bruce Evans <bde@zeta.org.au>
Reviewed by: Matthew Dillon <dillon@apollo.backplane.com>
Reviewed by: Mike Spengler <mks@networkcs.com>
1998-12-04 22:54:57 +00:00
phk
6da1544994
Unneeded file.
...
Submitted by: Mike Spengler <mks@networkcs.com>
1998-10-31 20:09:25 +00:00
phk
28cb0770f0
Set BLLI Layer 2 protocol field when using a 'User specified' protocol.
...
Submitted by: Mike Spengler <mks@networkcs.com>
1998-10-31 20:08:03 +00:00
phk
ef1becbf8e
Trivial stylish changes, mostly to silence gcc.
...
Reviewed by: Mike Spengler <mks@networkcs.com>
Submitted by: phk
1998-10-31 20:07:01 +00:00
phk
231bd37d3c
Two patches from the HARP people:
...
Various Makefile related fixes.
-Wformat fixes.
Submitted by: Mike Spengler <mks@networkcs.com>
1998-09-17 09:35:02 +00:00
phk
c3dd1fa899
Add new files for HARP3
...
Host ATM Research Platform (HARP), Network Computing Services, Inc.
This software was developed with the support of the Defense Advanced
Research Projects Agency (DARPA).
1998-09-15 08:23:17 +00:00