1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-11 14:10:34 +00:00

Use __FBSDID().

This commit is contained in:
David E. O'Brien 2003-06-11 07:00:30 +00:00
parent 50b1faef38
commit 050ae80c6f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116197
16 changed files with 48 additions and 155 deletions

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* ATM AAL5 socket protocol processing
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/lock.h>
#include <sys/protosw.h>
@ -56,10 +54,6 @@
#include <netatm/atm_pcb.h>
#include <netatm/atm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Global variables

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* ATM Connection Manager
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
@ -56,11 +54,6 @@
#include <netatm/atm_pcb.h>
#include <netatm/atm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Global variables
*/

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* ATM device support functions
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
@ -56,11 +54,6 @@
#include <netatm/atm_pcb.h>
#include <netatm/atm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Private structures for managing allocated kernel memory resources
*

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* ATM interface management
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
@ -61,11 +59,6 @@
#include <netatm/atm_pcb.h>
#include <netatm/atm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Local functions
*/

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* ATM socket protocol family support definitions
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/domain.h>
@ -52,11 +50,6 @@
#include <netatm/atm_pcb.h>
#include <netatm/atm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
struct protosw atmsw[] = {
{ SOCK_DGRAM, /* ioctl()-only */
&atmdomain,

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* General ATM signalling management
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
@ -52,10 +50,6 @@
#include <netatm/atm_pcb.h>
#include <netatm/atm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Local variables

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* ATM common socket protocol processing
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
@ -54,10 +52,6 @@
#include <netatm/atm_pcb.h>
#include <netatm/atm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Local functions

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* Miscellaneous ATM subroutines
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
@ -57,11 +55,6 @@
#include <netatm/atm_var.h>
#include <vm/uma.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Global variables
*/

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -----------------
*
* ATM DGRAM socket protocol processing
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/sockio.h>
@ -54,10 +52,6 @@
#include <netatm/atm_pcb.h>
#include <netatm/atm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Local functions

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -------------------
*
* IP VCC event handler
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/types.h>
#include <sys/systm.h>
@ -59,11 +57,6 @@
#include <netatm/ipatm/ipatm_var.h>
#include <netatm/ipatm/ipatm_serv.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Process an IP VCC timeout
*

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -------------------
*
* Interface Manager
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/types.h>
#include <sys/systm.h>
@ -60,11 +58,6 @@
#include <netatm/ipatm/ipatm_var.h>
#include <netatm/ipatm/ipatm_serv.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Local functions
*/

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -------------------
*
* Process stack and data input
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/socket.h>
@ -56,11 +54,6 @@
#include <netatm/ipatm/ipatm_var.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Process VCC Input Data
*

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -------------------
*
* Support for running as a loadable kernel module
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef ATM_IP_MODULE
#include "opt_atm.h"
#endif
@ -67,11 +65,6 @@
#include <vm/uma.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Global variables
*/

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -------------------
*
* Output IP packets across an ATM VCC
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/types.h>
#include <sys/systm.h>
@ -59,11 +57,6 @@
#include <netatm/ipatm/ipatm_var.h>
#include <netatm/ipatm/ipatm_serv.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Output an IP Packet
*

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -------------------
*
* Process user requests
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/types.h>
@ -60,11 +58,6 @@
#include <netatm/ipatm/ipatm_var.h>
#include <netatm/ipatm/ipatm_serv.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
/*
* Process IP PF_ATM ioctls
*

View File

@ -1,5 +1,4 @@
/*
*
* ===================================
* HARP | Host ATM Research Platform
* ===================================
@ -22,9 +21,6 @@
*
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
* @(#) $FreeBSD$
*
*/
/*
@ -32,9 +28,11 @@
* -------------------
*
* Virtual Channel Manager
*
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/types.h>
#include <sys/systm.h>
@ -61,10 +59,6 @@
#include <netatm/ipatm/ipatm_var.h>
#include <netatm/ipatm/ipatm_serv.h>
#ifndef lint
__RCSID("@(#) $FreeBSD$");
#endif
Atm_attributes ipatm_aal5llc = {
NULL, /* nif */