aboutsummaryrefslogtreecommitdiff
path: root/sys/netatm/sigpvc
Commit message (Collapse)AuthorAgeFilesLines
* Remove netatm from HEAD as it is not MPSAFE and relies on the now removedRobert Watson2008-05-253-1170/+0
| | | | | | | | | | | | | | | | | | | | | | NET_NEEDS_GIANT. netatm has been disconnected from the build for ten months in HEAD/RELENG_7. Specifics: - netatm include files - netatm command line management tools - libatm - ATM parts in rescue and sysinstall - sample configuration files and documents - kernel support as a module or in NOTES - netgraph wrapper nodes for netatm - ctags data for netatm. - netatm-specific device drivers. MFC after: 3 weeks Reviewed by: bz Discussed with: bms, bz, harti Notes: svn path=/head/; revision=179308
* In keeping with style(9)'s recommendations on macros, use a ';'Robert Watson2008-03-161-1/+1
| | | | | | | | | | | | after each SYSINIT() macro invocation. This makes a number of lightweight C parsers much happier with the FreeBSD kernel source, including cflow's prcc and lxr. MFC after: 1 month Discussed with: imp, rink Notes: svn path=/head/; revision=177253
* /* -> /*- for license, minor formatting changesWarner Losh2005-01-073-3/+3
| | | | Notes: svn path=/head/; revision=139823
* Make the ioctl() interface cleaner with regard to types: use size_tHartmut Brandt2003-07-291-5/+7
| | | | | | | | | instead of int where the variable has to hold buffer lengths, use u_int for things like number of network interfaces which in principle can never be negative. Notes: svn path=/head/; revision=118160
* Remove the zone limits for all the zones used in the ATM code.Hartmut Brandt2003-07-221-1/+2
| | | | | | | | | | | | | | These were a left over from when the private memory pools were converted to use uma zones. The limit of UMA zones, however, works differently. When a zone is limited to only one or two pages than, on multi-cpu systems, processes can get stuck on the zonelimit, because all remaining free items are in caches of other CPUs. Also add rudimentary error handling in some places (panic) when a zone cannot be created. Notes: svn path=/head/; revision=117886
* Use __FBSDID().David E. O'Brien2003-06-112-19/+6
| | | | Notes: svn path=/head/; revision=116198
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-1/+1
| | | | | | | Approved by: trb Notes: svn path=/head/; revision=111119
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-1/+1
| | | | | | | Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT. Notes: svn path=/head/; revision=109623
* Include <sys/systm.h> instead of depending on namespace pollution inBruce Evans2002-09-291-8/+1
| | | | | | | | <net/if_var.h>. But depend on the standard pollution in <sys/param.h>. Removed unused includes. Notes: svn path=/head/; revision=104139
* - Turn a couple of storage pools into UMA zones and their associated callsAndrew R. Reiter2002-05-242-10/+13
| | | | | | | to the appropriate UMA api calls. Notes: svn path=/head/; revision=97193
* - Change KM_ macro calls to the appropriate function call.Andrew R. Reiter2002-04-191-7/+5
| | | | | | | | | | - 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. Notes: svn path=/head/; revision=95063
* Remove __P.Alfred Perlstein2002-03-202-13/+13
| | | | Notes: svn path=/head/; revision=92766
* Remove more unused #includes.Poul-Henning Kamp2000-10-301-1/+0
| | | | Notes: svn path=/head/; revision=67930
* Remove unneeded #include <machine/clock.h>Poul-Henning Kamp2000-10-152-2/+0
| | | | Notes: svn path=/head/; revision=67164
* Forgot these files in my kerninclude limited run.Poul-Henning Kamp2000-10-122-34/+0
| | | | | | | (No core powers we abused during this commit) Notes: svn path=/head/; revision=67039
* Remove the #include kitchensink <netatm/kern_include.h> and addPoul-Henning Kamp2000-10-122-2/+80
| | | | | | | | | | | | 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. Notes: svn path=/head/; revision=67004
* More HARP polishina:Poul-Henning Kamp2000-10-121-6/+6
| | | | | | | | unifdef -UFORE_SBUS -DFORE_PCI s/ATM_KERNEL/_KERNER/g Notes: svn path=/head/; revision=67002
* Do some cleanups of the HARP atm codes interface into the system:Poul-Henning Kamp2000-10-121-84/+0
| | | | | | | | | | | 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. Notes: svn path=/head/; revision=66988
* Remove un-needed #include's.Mike Spengler2000-01-173-49/+0
| | | | | | | Pointed out by: phk Notes: svn path=/head/; revision=56202
* $Id$ -> $FreeBSD$Peter Wemm1999-08-284-6/+6
| | | | Notes: svn path=/head/; revision=50477
* Fix warnings in preparation for adding -Wall -Wcast-qual to theMatthew Dillon1999-01-271-3/+3
| | | | | | | kernel compile Notes: svn path=/head/; revision=43305
* Don't return errors for 'atm show arpserver' command on sigpvc and spansMike Spengler1999-01-191-3/+4
| | | | | | | interfaces. Notes: svn path=/head/; revision=42857
* Examine all occurrences of sprintf(), strcat(), and str[n]cpy()Archie Cobbs1998-12-041-3/+4
| | | | | | | | | | | | | | | | | 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> Notes: svn path=/head/; revision=41514
* Trivial stylish changes, mostly to silence gcc.Poul-Henning Kamp1998-10-312-10/+10
| | | | | | | | Reviewed by: Mike Spengler <mks@networkcs.com> Submitted by: phk Notes: svn path=/head/; revision=40799
* Add new files for HARP3Poul-Henning Kamp1998-09-154-0/+1276
Host ATM Research Platform (HARP), Network Computing Services, Inc. This software was developed with the support of the Defense Advanced Research Projects Agency (DARPA). Notes: svn path=/head/; revision=39232