The NetBSD Project

CVS log for src/sys/net/Attic/netisr.h

[BACK] Up to [cvs.NetBSD.org] / src / sys / net

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.47, Sat Sep 3 02:47:59 2022 UTC (19 months, 2 weeks ago) by thorpej
Branch: MAIN
CVS Tags: bouyer-sunxi-drm-base, bouyer-sunxi-drm, HEAD
Changes since 1.46: +1 -1 lines
FILE REMOVED

Garbage-collect the remaining vestiges of netisr.

Revision 1.45.10.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:09:45 2019 UTC (4 years, 10 months ago) by christos
Branch: phil-wifi
Changes since 1.45: +2 -6 lines
Diff to previous 1.45 (unified) next main 1.46 (unified)

Sync with HEAD

Revision 1.45.8.1 / (download) - annotate - [select for diffs], Sun Sep 30 01:45:56 2018 UTC (5 years, 6 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.45: +2 -6 lines
Diff to previous 1.45 (unified) next main 1.46 (unified)

Ssync with HEAD

Revision 1.46 / (download) - annotate - [select for diffs], Thu Sep 6 06:42:00 2018 UTC (5 years, 7 months ago) by maxv
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-i2c-spi-conf, thorpej-futex2-base, thorpej-futex2, thorpej-futex-base, thorpej-futex, thorpej-cfargs2-base, thorpej-cfargs2, thorpej-cfargs-base, thorpej-cfargs, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, isaki-audio2-base, isaki-audio2, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1, ad-namecache-base, ad-namecache
Changes since 1.45: +2 -6 lines
Diff to previous 1.45 (unified)

Remove the network ATM code.

Revision 1.41.18.2 / (download) - annotate - [select for diffs], Sun Dec 3 11:39:02 2017 UTC (6 years, 4 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.41.18.1: +6 -2 lines
Diff to previous 1.41.18.1 (unified) to branchpoint 1.41 (unified) next main 1.42 (unified)

update from HEAD

Revision 1.42.14.2 / (download) - annotate - [select for diffs], Mon Aug 28 17:53:11 2017 UTC (6 years, 7 months ago) by skrll
Branch: nick-nhusb
Changes since 1.42.14.1: +7 -1 lines
Diff to previous 1.42.14.1 (unified) to branchpoint 1.42 (unified) next main 1.43 (unified)

Sync with HEAD

Revision 1.45 / (download) - annotate - [select for diffs], Sat May 27 21:02:56 2017 UTC (6 years, 10 months ago) by bouyer
Branch: MAIN
CVS Tags: tls-maxphys-base-20171202, phil-wifi-base, pgoyette-compat-base, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, perseant-stdc-iso10646-base, perseant-stdc-iso10646, nick-nhusb-base-20170825, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek
Branch point for: phil-wifi, pgoyette-compat
Changes since 1.44: +7 -1 lines
Diff to previous 1.44 (unified)

merge the bouyer-socketcan branch to HEAD.

CAN stands for Controller Area Network, a broadcast network used
in automation and automotive fields. For example, the NMEA2000 standard
developped for marine devices uses a CAN network as the link layer.

This is an implementation of the linux socketcan API:
https://www.kernel.org/doc/Documentation/networking/can.txt
you can also see can(4).

This adds a new socket family (AF_CAN) and protocol (PF_CAN),
as well as the canconfig(8) utility, used to set timing parameter of
CAN hardware. Also inclued is a driver for the CAN controller
found in the allwinner A20 SoC (I tested it with an Olimex lime2 board,
connected with PIC18-based CAN devices).

There is also the canloop(4) pseudo-device, which allows to use
the socketcan API without CAN hardware.

At this time the CANFD part of the linux socketcan API is not implemented.
Error frames are not implemented either. But I could get the cansend and
canreceive utilities from the canutils package to build and run with minimal
changes. tcpudmp(8) can also be used to record frames, which can be
decoded with etherreal.

Revision 1.44.4.1 / (download) - annotate - [select for diffs], Sun Jan 15 20:27:33 2017 UTC (7 years, 3 months ago) by bouyer
Branch: bouyer-socketcan
Changes since 1.44: +7 -1 lines
Diff to previous 1.44 (unified) next main 1.45 (unified)

Initial commit of a CAN socket layer, compatible with linux SoccketCAN
(but incomplete). Based on work from Robert Swindells.

Revision 1.42.14.1 / (download) - annotate - [select for diffs], Sat Jun 6 14:40:25 2015 UTC (8 years, 10 months ago) by skrll
Branch: nick-nhusb
Changes since 1.42: +1 -3 lines
Diff to previous 1.42 (unified)

Sync with HEAD

Revision 1.44 / (download) - annotate - [select for diffs], Mon May 25 08:29:01 2015 UTC (8 years, 10 months ago) by ozaki-r
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, nick-nhusb-base-20170204, nick-nhusb-base-20161204, nick-nhusb-base-20161004, nick-nhusb-base-20160907, nick-nhusb-base-20160529, nick-nhusb-base-20160422, nick-nhusb-base-20160319, nick-nhusb-base-20151226, nick-nhusb-base-20150921, nick-nhusb-base-20150606, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base
Branch point for: bouyer-socketcan
Changes since 1.43: +1 -2 lines
Diff to previous 1.43 (unified)

Remove leftover IPX-related stuffs

No objection on tech-kern and tech-net.

Revision 1.43 / (download) - annotate - [select for diffs], Wed May 20 09:17:18 2015 UTC (8 years, 11 months ago) by ozaki-r
Branch: MAIN
Changes since 1.42: +1 -2 lines
Diff to previous 1.42 (unified)

Remove leftover use of AF_NS and NS option

Unnecessary NETISR_NS is also removed.

Revision 1.41.8.1 / (download) - annotate - [select for diffs], Thu May 22 11:41:09 2014 UTC (9 years, 11 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.41: +1 -7 lines
Diff to previous 1.41 (unified) next main 1.42 (unified)

sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.41.18.1 / (download) - annotate - [select for diffs], Sun Jun 23 06:20:25 2013 UTC (10 years, 9 months ago) by tls
Branch: tls-maxphys
Changes since 1.41: +1 -7 lines
Diff to previous 1.41 (unified)

resync from head

Revision 1.42 / (download) - annotate - [select for diffs], Fri Mar 1 18:25:57 2013 UTC (11 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, rmind-smpnet-nbase, rmind-smpnet-base, rmind-smpnet, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, nick-nhusb-base-20150406, nick-nhusb-base, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, khorben-n900, agc-symver-base, agc-symver
Branch point for: nick-nhusb
Changes since 1.41: +1 -7 lines
Diff to previous 1.41 (unified)

Retire OSI network stack. OK core@

Revision 1.39.6.1 / (download) - annotate - [select for diffs], Tue Aug 17 06:47:44 2010 UTC (13 years, 8 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.39: +6 -1 lines
Diff to previous 1.39 (unified) next main 1.40 (unified)

Sync with HEAD.

Revision 1.37.18.2 / (download) - annotate - [select for diffs], Wed Aug 11 22:54:55 2010 UTC (13 years, 8 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.37.18.1: +6 -1 lines
Diff to previous 1.37.18.1 (unified) to branchpoint 1.37 (unified) next main 1.38 (unified)

sync with head.

Revision 1.39.8.1 / (download) - annotate - [select for diffs], Sat Jul 3 01:19:59 2010 UTC (13 years, 9 months ago) by rmind
Branch: rmind-uvmplock
Changes since 1.39: +6 -1 lines
Diff to previous 1.39 (unified) next main 1.40 (unified)

sync with head

Revision 1.41 / (download) - annotate - [select for diffs], Sun Jun 27 06:48:40 2010 UTC (13 years, 9 months ago) by kefren
Branch: MAIN
CVS Tags: yamt-pagecache-tag8, yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2, rmind-uvmplock-nbase, rmind-uvmplock-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, matt-mips64-premerge-20101231, jruoho-x86intr-base, jruoho-x86intr, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base9, jmcneill-usbmp-base8, jmcneill-usbmp-base7, jmcneill-usbmp-base6, jmcneill-usbmp-base5, jmcneill-usbmp-base4, jmcneill-usbmp-base3, jmcneill-usbmp-base2, jmcneill-usbmp-base10, jmcneill-usbmp-base, jmcneill-usbmp, jmcneill-audiomp3-base, jmcneill-audiomp3, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Branch point for: yamt-pagecache, tls-maxphys
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (unified)

Style fix: Tab consistency with the lines around it

Revision 1.40 / (download) - annotate - [select for diffs], Sat Jun 26 14:24:28 2010 UTC (13 years, 9 months ago) by kefren
Branch: MAIN
Changes since 1.39: +6 -1 lines
Diff to previous 1.39 (unified)

Add MPLS support, proposed on tech-net@ a couple of days ago

Welcome to 5.99.33

Revision 1.37.18.1 / (download) - annotate - [select for diffs], Mon May 4 08:14:15 2009 UTC (14 years, 11 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.37: +4 -3 lines
Diff to previous 1.37 (unified)

sync with head.

Revision 1.38.2.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:20:12 2009 UTC (15 years, 3 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (unified) next main 1.39 (unified)

Sync with HEAD.

Revision 1.37.14.1 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:31 2009 UTC (15 years, 3 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.37: +4 -3 lines
Diff to previous 1.37 (unified) next main 1.38 (unified)

Sync with HEAD.

Revision 1.37.24.2 / (download) - annotate - [select for diffs], Sat Dec 13 01:15:26 2008 UTC (15 years, 4 months ago) by haad
Branch: haad-dm
Changes since 1.37.24.1: +3 -3 lines
Diff to previous 1.37.24.1 (unified) to branchpoint 1.37 (unified) next main 1.38 (unified)

Update haad-dm branch to haad-dm-base2.

Revision 1.39 / (download) - annotate - [select for diffs], Wed Nov 12 12:36:28 2008 UTC (15 years, 5 months ago) by ad
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9, yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, uebayasi-xip-base1, uebayasi-xip-base, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, mjf-devfs2-base, matt-premerge-20091211, jymxensuspend-base, jym-xensuspend-nbase, jym-xensuspend-base, jym-xensuspend, haad-nbase2, haad-dm-base2, haad-dm-base, ad-audiomp2-base, ad-audiomp2
Branch point for: uebayasi-xip, rmind-uvmplock
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (unified)

Remove LKMs and switch to the module framework, pass 1.

Proposed on tech-kern@.

Revision 1.37.24.1 / (download) - annotate - [select for diffs], Sun Oct 19 22:17:41 2008 UTC (15 years, 6 months ago) by haad
Branch: haad-dm
Changes since 1.37: +2 -1 lines
Diff to previous 1.37 (unified)

Sync with HEAD.

Revision 1.38 / (download) - annotate - [select for diffs], Tue Oct 14 17:15:20 2008 UTC (15 years, 6 months ago) by pooka
Branch: MAIN
CVS Tags: netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, haad-dm-base1
Branch point for: nick-hppapmap
Changes since 1.37: +2 -1 lines
Diff to previous 1.37 (unified)

Give maximum level of network softinterrupts a symbolic constant
(which happened to get bumbed from 32 to 33 (AF_MAX) now).

Revision 1.36.8.1 / (download) - annotate - [select for diffs], Wed Jan 9 01:57:15 2008 UTC (16 years, 3 months ago) by matt
Branch: matt-armv6
Changes since 1.36: +4 -9 lines
Diff to previous 1.36 (unified) next main 1.37 (unified)

sync with HEAD

Revision 1.36.6.1 / (download) - annotate - [select for diffs], Sun Dec 9 19:38:34 2007 UTC (16 years, 4 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.36: +4 -9 lines
Diff to previous 1.36 (unified) next main 1.37 (unified)

Sync with HEAD.

Revision 1.36.14.1 / (download) - annotate - [select for diffs], Sat Dec 8 18:21:07 2007 UTC (16 years, 4 months ago) by mjf
Branch: mjf-devfs
Changes since 1.36: +4 -9 lines
Diff to previous 1.36 (unified) next main 1.37 (unified)

Sync with HEAD.

Revision 1.33.4.4 / (download) - annotate - [select for diffs], Fri Dec 7 17:34:18 2007 UTC (16 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.33.4.3: +4 -9 lines
Diff to previous 1.33.4.3 (unified) to branchpoint 1.33 (unified) next main 1.34 (unified)

sync with head

Revision 1.37 / (download) - annotate - [select for diffs], Mon Dec 3 15:34:33 2007 UTC (16 years, 4 months ago) by ad
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, yamt-nfs-mp-base2, yamt-nfs-mp-base, yamt-lazymbuf-base15, yamt-lazymbuf-base14, yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, wrstuden-revivesa-base-4, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, nick-net80211-sync-base, nick-net80211-sync, mjf-devfs-base, matt-armv6-nbase, matt-armv6-base, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, jmcneill-pm-base, hpcarm-cleanup-nbase, hpcarm-cleanup-base, cube-autoconf-base, cube-autoconf, bouyer-xeni386-nbase, bouyer-xeni386-merge1, bouyer-xeni386-base, bouyer-xeni386, ad-socklock-base1
Branch point for: yamt-nfs-mp, mjf-devfs2, haad-dm
Changes since 1.36: +4 -9 lines
Diff to previous 1.36 (unified)

Interrupt handling changes, in discussion since February:

- Reduce available SPL levels for hardware devices to none, vm, sched, high.
- Acquire kernel_lock only for interrupts at IPL_VM.
- Implement threaded soft interrupts.

Revision 1.33.4.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:42:22 2007 UTC (16 years, 7 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.33.4.2: +1 -23 lines
Diff to previous 1.33.4.2 (unified) to branchpoint 1.33 (unified)

sync with head.

Revision 1.35.12.2 / (download) - annotate - [select for diffs], Sun Jul 15 13:27:55 2007 UTC (16 years, 9 months ago) by ad
Branch: vmlocking
Changes since 1.35.12.1: +1 -23 lines
Diff to previous 1.35.12.1 (unified) to branchpoint 1.35 (unified) next main 1.36 (unified)

Sync with head.

Revision 1.36 / (download) - annotate - [select for diffs], Sat Jul 14 21:02:42 2007 UTC (16 years, 9 months ago) by ad
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, vmlocking-base, nick-csl-alignment-base5, nick-csl-alignment-base, nick-csl-alignment, matt-mips64-base, matt-mips64, matt-armv6-prevmlocking, jmcneill-base, hpcarm-cleanup, bouyer-xenamd64-base2, bouyer-xenamd64-base, bouyer-xenamd64
Branch point for: mjf-devfs, matt-armv6, jmcneill-pm
Changes since 1.35: +1 -23 lines
Diff to previous 1.35 (unified)

Generic soft interrupts are mandatory.

Revision 1.35.12.1 / (download) - annotate - [select for diffs], Sun Jun 17 21:31:54 2007 UTC (16 years, 10 months ago) by ad
Branch: vmlocking
Changes since 1.35: +4 -9 lines
Diff to previous 1.35 (unified)

- Increase the number of thread priorities from 128 to 256. How the space
  is set up is to be revisited.
- Implement soft interrupts as kernel threads. A generic implementation
  is provided, with hooks for fast-path MD code that can run the interrupt
  threads over the top of other threads executing in the kernel.
- Split vnode::v_flag into three fields, depending on how the flag is
  locked (by the interlock, by the vnode lock, by the file system).
- Miscellaneous locking fixes and improvements.

Revision 1.33.4.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:50:20 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.33.4.1: +1 -9 lines
Diff to previous 1.33.4.1 (unified) to branchpoint 1.33 (unified)

sync with head.

Revision 1.34.8.1 / (download) - annotate - [select for diffs], Thu Sep 14 12:31:55 2006 UTC (17 years, 7 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.34: +1 -9 lines
Diff to previous 1.34 (unified) next main 1.35 (unified)

sync with head.

Revision 1.34.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:58:06 2006 UTC (17 years, 7 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.34: +1 -9 lines
Diff to previous 1.34 (unified) next main 1.35 (unified)

sync with head

Revision 1.35 / (download) - annotate - [select for diffs], Thu Sep 7 02:40:33 2006 UTC (17 years, 7 months ago) by dogcow
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5, yamt-splraiseipl-base4, yamt-splraiseipl-base3, yamt-splraiseipl-base2, yamt-splraiseipl-base, yamt-splraiseipl, yamt-pdpolicy-base9, yamt-idlelwp-base8, yamt-idlelwp, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, thorpej-atomic-base, thorpej-atomic, rpaulo-netinet-merge-pcb-base, reinoud-bufcleanup, post-newlock2-merge, newlock2-nbase, newlock2-base, newlock2, netbsd-4-base, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0, netbsd-4, mjf-ufs-trans-base, mjf-ufs-trans, matt-nb4-arm-base, matt-nb4-arm, ad-audiomp-base, ad-audiomp
Branch point for: vmlocking
Changes since 1.34: +1 -9 lines
Diff to previous 1.34 (unified)

remove more vestiges of CCITT, LLC, HDLC, NS, and NSIP.

Revision 1.33.4.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:10:27 2006 UTC (17 years, 10 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (unified)

sync with head.

Revision 1.31.2.5 / (download) - annotate - [select for diffs], Sun Dec 11 10:29:19 2005 UTC (18 years, 4 months ago) by christos
Branch: ktrace-lwp
Changes since 1.31.2.4: +2 -2 lines
Diff to previous 1.31.2.4 (unified) next main 1.32 (unified)

Sync with head.

Revision 1.34 / (download) - annotate - [select for diffs], Sat Dec 10 23:21:38 2005 UTC (18 years, 4 months ago) by elad
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, yamt-pdpolicy-base8, yamt-pdpolicy-base7, yamt-pdpolicy-base6, yamt-pdpolicy-base5, yamt-pdpolicy-base4, yamt-pdpolicy-base3, yamt-pdpolicy-base2, yamt-pdpolicy-base, simonb-timecounters-base, simonb-timecounters, simonb-timcounters-final, peter-altq-base, peter-altq, ktrace-lwp-base, gdamore-uart-base, gdamore-uart, elad-kernelauth-base, elad-kernelauth, chap-midi-nbase, chap-midi-base, chap-midi, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-pdpolicy, rpaulo-netinet-merge-pcb
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (unified)

Multiple inclusion protection, as suggested by christos@ on tech-kern@
few days ago.

Revision 1.32.8.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:32 2005 UTC (18 years, 11 months ago) by kent
Branch: kent-audio2
Changes since 1.32: +5 -5 lines
Diff to previous 1.32 (unified) next main 1.33 (unified)

sync with -current

Revision 1.32.10.1 / (download) - annotate - [select for diffs], Sat Mar 19 08:36:32 2005 UTC (19 years, 1 month ago) by yamt
Branch: yamt-km
Changes since 1.32: +5 -5 lines
Diff to previous 1.32 (unified) next main 1.33 (unified)

sync with head.  xen and whitespace.  xen part is not finished.

Revision 1.31.2.4 / (download) - annotate - [select for diffs], Fri Mar 4 16:52:59 2005 UTC (19 years, 1 month ago) by skrll
Branch: ktrace-lwp
Changes since 1.31.2.3: +5 -5 lines
Diff to previous 1.31.2.3 (unified)

Sync with HEAD.

Hi Perry!

Revision 1.33 / (download) - annotate - [select for diffs], Sat Feb 26 22:45:09 2005 UTC (19 years, 1 month ago) by perry
Branch: MAIN
CVS Tags: yamt-vop-base3, yamt-vop-base2, yamt-vop-base, yamt-vop, yamt-readahead-pervnode, yamt-readahead-perfile, yamt-readahead-base3, yamt-readahead-base2, yamt-readahead-base, yamt-readahead, yamt-km-base4, yamt-km-base3, thorpej-vnode-attr-base, thorpej-vnode-attr, netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0, netbsd-3, kent-audio2-base
Branch point for: yamt-lazymbuf
Changes since 1.32: +5 -5 lines
Diff to previous 1.32 (unified)

nuke trailing whitespace

Revision 1.31.2.3 / (download) - annotate - [select for diffs], Tue Sep 21 13:36:41 2004 UTC (19 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.31.2.2: +1 -1 lines
Diff to previous 1.31.2.2 (unified)

Fix the sync with head I botched.

Revision 1.31.2.2 / (download) - annotate - [select for diffs], Sat Sep 18 14:54:16 2004 UTC (19 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.31.2.1: +0 -0 lines
Diff to previous 1.31.2.1 (unified)

Sync with HEAD.

Revision 1.31.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:54:19 2004 UTC (19 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.31: +2 -6 lines
Diff to previous 1.31 (unified)

Sync with HEAD

Revision 1.32 / (download) - annotate - [select for diffs], Thu Aug 7 16:32:55 2003 UTC (20 years, 8 months ago) by agc
Branch: MAIN
CVS Tags: yamt-km-base2, yamt-km-base, netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: yamt-km, kent-audio2
Changes since 1.31: +2 -6 lines
Diff to previous 1.31 (unified)

Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22364, verified by myself.

Revision 1.31 / (download) - annotate - [select for diffs], Sat Mar 15 07:51:06 2003 UTC (21 years, 1 month ago) by matt
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.30: +3 -1 lines
Diff to previous 1.30 (unified)

Allow a machine-dependent definition of schednetisr.

Revision 1.28.2.2 / (download) - annotate - [select for diffs], Sun Jun 23 17:50:32 2002 UTC (21 years, 10 months ago) by jdolecek
Branch: kqueue
Changes since 1.28.2.1: +2 -2 lines
Diff to previous 1.28.2.1 (unified) to branchpoint 1.28 (unified) next main 1.29 (unified)

catch up with -current on kqueue branch

Revision 1.27.2.3 / (download) - annotate - [select for diffs], Thu Jun 20 03:48:19 2002 UTC (21 years, 10 months ago) by nathanw
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.27.2.2: +2 -2 lines
Diff to previous 1.27.2.2 (unified) next main 1.28 (unified)

Catch up to -current.

Revision 1.30 / (download) - annotate - [select for diffs], Sun May 12 20:40:12 2002 UTC (21 years, 11 months ago) by matt
Branch: MAIN
CVS Tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6, nathanw_sa_before_merge, nathanw_sa_base, kqueue-beforemerge, kqueue-base, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, gehenna-devsw-base, gehenna-devsw, fvdl_fs64_base
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (unified)

Eliminate more commons.

Revision 1.28.2.1 / (download) - annotate - [select for diffs], Thu Jan 10 20:02:18 2002 UTC (22 years, 3 months ago) by thorpej
Branch: kqueue
Changes since 1.28: +1 -8 lines
Diff to previous 1.28 (unified)

Sync kqueue branch with -current.

Revision 1.27.2.2 / (download) - annotate - [select for diffs], Mon Oct 22 20:41:54 2001 UTC (22 years, 6 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.27.2.1: +1 -8 lines
Diff to previous 1.27.2.1 (unified)

Catch up to -current.

Revision 1.28.4.1 / (download) - annotate - [select for diffs], Thu Oct 11 00:02:34 2001 UTC (22 years, 6 months ago) by fvdl
Branch: thorpej-devvp
Changes since 1.28: +1 -8 lines
Diff to previous 1.28 (unified) next main 1.29 (unified)

Catch up with -current. Fix some bogons in the sparc64 kbd/ms
attach code. cd18xx conversion provided by mrg.

Revision 1.29 / (download) - annotate - [select for diffs], Sat Oct 6 15:46:33 2001 UTC (22 years, 6 months ago) by thorpej
Branch: MAIN
CVS Tags: thorpej-mips-cache-base, thorpej-mips-cache, thorpej-devvp-base3, newlock-base, newlock, ifpoll-base, eeh-devprop-base, eeh-devprop
Changes since 1.28: +1 -8 lines
Diff to previous 1.28 (unified)

The bridge driver does all forwarding at interrupt level, and
does not use software interrupts; remove these bridge netisr
hooks left over from a previous incarnation of the bridge code.

Noted by Andrew Brown <atatat@atatdot.net>.

Revision 1.27.2.1 / (download) - annotate - [select for diffs], Thu Jun 21 20:08:18 2001 UTC (22 years, 10 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.27: +8 -1 lines
Diff to previous 1.27 (unified)

Catch up to -current.

Revision 1.18.2.3 / (download) - annotate - [select for diffs], Sat Apr 21 17:46:42 2001 UTC (23 years ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.2.2: +8 -1 lines
Diff to previous 1.18.2.2 (unified) to branchpoint 1.18 (unified) next main 1.19 (unified)

Sync with HEAD

Revision 1.28 / (download) - annotate - [select for diffs], Wed Apr 11 03:55:16 2001 UTC (23 years ago) by thorpej
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase, thorpej_scsipi_beforemerge, thorpej_scsipi_base, thorpej-devvp-base2, thorpej-devvp-base, pre-chs-ubcperf, post-chs-ubcperf
Branch point for: thorpej-devvp, kqueue
Changes since 1.27: +8 -1 lines
Diff to previous 1.27 (unified)

Add bridge netisr glue (only used if no __HAVE_GENERIC_SOFT_INTERRUPTS).

Revision 1.18.2.2 / (download) - annotate - [select for diffs], Thu Jan 18 09:23:54 2001 UTC (23 years, 3 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.2.1: +19 -3 lines
Diff to previous 1.18.2.1 (unified) to branchpoint 1.18 (unified)

Sync with head (for UBC+NFS fixes, mostly).

Revision 1.27 / (download) - annotate - [select for diffs], Mon Jan 15 16:33:32 2001 UTC (23 years, 3 months ago) by thorpej
Branch: MAIN
Branch point for: nathanw_sa
Changes since 1.26: +11 -5 lines
Diff to previous 1.26 (unified)

For SLIP/STRIP/PPP, use generic soft interrupts, if available.

Revision 1.26 / (download) - annotate - [select for diffs], Thu Jan 11 22:32:21 2001 UTC (23 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.25: +4 -1 lines
Diff to previous 1.25 (unified)

Process STRIP software interrupts.

Revision 1.25 / (download) - annotate - [select for diffs], Tue Jan 9 20:20:13 2001 UTC (23 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.24: +4 -1 lines
Diff to previous 1.24 (unified)

Fix oversight in slip softintr changes.

Revision 1.24 / (download) - annotate - [select for diffs], Tue Jan 9 05:03:10 2001 UTC (23 years, 3 months ago) by thorpej
Branch: MAIN
Changes since 1.23: +5 -1 lines
Diff to previous 1.23 (unified)

Add NETISRs for SLIP and STRIP.  (Geez, I wish we had the softintr
API everywhere...)

Revision 1.18.2.1 / (download) - annotate - [select for diffs], Mon Nov 20 18:10:09 2000 UTC (23 years, 5 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18: +75 -13 lines
Diff to previous 1.18 (unified)

Update thorpej_scsipi to -current as of a month ago

Revision 1.23 / (download) - annotate - [select for diffs], Mon Jul 3 02:16:07 2000 UTC (23 years, 9 months ago) by cgd
Branch: MAIN
Changes since 1.22: +3 -1 lines
Diff to previous 1.22 (unified)

don't include the config-generated headers if _LKM defined

Revision 1.22 / (download) - annotate - [select for diffs], Sun Jul 2 19:58:31 2000 UTC (23 years, 9 months ago) by cgd
Branch: MAIN
Changes since 1.21: +3 -3 lines
Diff to previous 1.21 (unified)

oops!  include arp.h and ppp.h even if _LOCORE defined

Revision 1.21 / (download) - annotate - [select for diffs], Sun Jul 2 17:40:18 2000 UTC (23 years, 9 months ago) by sommerfeld
Branch: MAIN
Changes since 1.20: +2 -4 lines
Diff to previous 1.20 (unified)

Reduce namespace pollution from netcciitt-land

Revision 1.20 / (download) - annotate - [select for diffs], Sun Jul 2 04:40:47 2000 UTC (23 years, 9 months ago) by cgd
Branch: MAIN
Changes since 1.19: +69 -6 lines
Diff to previous 1.19 (unified)

Kwality control:
* put #includes of opt headers and headers to get protos used by
  net/netisr_dispatch.h in net/netisr.h (if !defined(_LOCORE)) (rather than
  in netisr_dispatch.h itself, and potentially nowhere, respectively).
* require netisr.h to be included before netisr_dispatch.h.
* minor additional cleanup of both netisr.h and netisr_dispatch.h.
* clean up uses to remove now-unnecessary header file inclusions, and
  local prototypes of the fns.
* convert netisr dispatch implementations which didn't use
  netisr_dispatch.h (pc532) to use it.

Revision 1.19 / (download) - annotate - [select for diffs], Mon Feb 21 20:31:02 2000 UTC (24 years, 2 months ago) by erh
Branch: MAIN
CVS Tags: netbsd-1-5-base, netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2, netbsd-1-5, minoura-xpg4dl-base, minoura-xpg4dl
Changes since 1.18: +7 -8 lines
Diff to previous 1.18 (unified)

Remove NETISR_IMP.  Make NETISR_ARP == AF_ARP, renumber NETISR_PPP to allow this.

Revision 1.17.12.3 / (download) - annotate - [select for diffs], Tue Nov 30 13:35:12 1999 UTC (24 years, 4 months ago) by itojun
Branch: kame
CVS Tags: kame_141_19991130
Changes since 1.17.12.2: +1 -1 lines
Diff to previous 1.17.12.2 (unified) to branchpoint 1.17 (unified) next main 1.18 (unified)

bring in latest KAME (as of 19991130, KAME/NetBSD141) into kame branch
just for reference purposes.
This commit includes 1.4 -> 1.4.1 sync for kame branch.

The branch does not compile at all (due to the lack of ALTQ and some other
source code).  Please do not try to modify the branch, this is just for
referenre purposes.

synchronization to latest KAME will take place on HEAD branch soon.

Revision 1.17.12.2 / (download) - annotate - [select for diffs], Tue Jul 6 11:02:40 1999 UTC (24 years, 9 months ago) by itojun
Branch: kame
CVS Tags: kame_14_19990705
Changes since 1.17.12.1: +1 -30 lines
Diff to previous 1.17.12.1 (unified) to branchpoint 1.17 (unified)

KAME/NetBSD 1.4, SNAP kit 1999/07/05.
NOTE: this branch is just for reference purposes (i.e. for taking cvs diff).
do not touch anything on the branch.  actual work must be done on HEAD branch.

Revision 1.17.10.1 / (download) - annotate - [select for diffs], Thu Jul 1 23:45:20 1999 UTC (24 years, 9 months ago) by thorpej
Branch: chs-ubc2
Changes since 1.17: +2 -1 lines
Diff to previous 1.17 (unified) next main 1.18 (unified)

Sync w/ -current.

Revision 1.18 / (download) - annotate - [select for diffs], Thu Jul 1 08:12:48 1999 UTC (24 years, 9 months ago) by itojun
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, wrstuden-devbsize, fvdl-softdep-base, fvdl-softdep, comdex-fall-1999-base, comdex-fall-1999, chs-ubc2-newbase, chs-ubc2-base
Branch point for: thorpej_scsipi
Changes since 1.17: +2 -1 lines
Diff to previous 1.17 (unified)

IPv6 kernel code, based on KAME/NetBSD 1.4, SNAP kit 19990628.
(Sorry for a big commit, I can't separate this into several pieces...)
Pls check sys/netinet6/TODO and sys/netinet6/IMPLEMENTATION for details.

- sys/kern: do not assume single mbuf, accept chained mbuf on passing
  data from userland to kernel (or other way round).
- "midway" ATM card: ATM PVC pseudo device support, like those done in ALTQ
  package (ftp://ftp.csl.sony.co.jp/pub/kjc/).
- sys/netinet/tcp*: IPv4/v6 dual stack tcp support.
- sys/netinet/{ip6,icmp6}.h, sys/net/pfkeyv2.h: IETF document assumes those
  file to be there so we patch it up.
- sys/netinet: IPsec additions are here and there.
- sys/netinet6/*: most of IPv6 code sits here.
- sys/netkey: IPsec key management code
- dev/pci/pcidevs: regen

In my understanding no code here is subject to export control so it
should be safe.

Revision 1.17.12.1 / (download) - annotate - [select for diffs], Mon Jun 28 06:36:56 1999 UTC (24 years, 9 months ago) by itojun
Branch: kame
CVS Tags: kame_14_19990628
Changes since 1.17: +31 -1 lines
Diff to previous 1.17 (unified)

KAME/NetBSD 1.4 SNAP kit, dated 19990628.

NOTE: this branch (kame) is used just for refernce.  this may not compile
due to multiple reasons.

Revision 1.17 / (download) - annotate - [select for diffs], Mon May 4 12:54:23 1998 UTC (25 years, 11 months ago) by christos
Branch: MAIN
CVS Tags: netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH003, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001, netbsd-1-4, kenh-if-detach-base, kenh-if-detach, eeh-paddr_t-base, eeh-paddr_t, chs-ubc-base, chs-ubc
Branch point for: kame, chs-ubc2
Changes since 1.16: +2 -1 lines
Diff to previous 1.16 (unified)

Add IPX bits.

Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 1 02:10:08 1998 UTC (26 years, 1 month ago) by fvdl
Branch: WFJ-920714, CSRG
CVS Tags: lite-2, lite-1, date-03-may-96
Changes since 1.1.1.1: +4 -3 lines
Diff to previous 1.1.1.1 (unified)

Import 4.4BSD-Lite for reference

Revision 1.16 / (download) - annotate - [select for diffs], Mon Feb 9 17:43:54 1998 UTC (26 years, 2 months ago) by perry
Branch: MAIN
Changes since 1.15: +6 -1 lines
Diff to previous 1.15 (unified)

add multiple inclusion protection (and cleanup).

Revision 1.15 / (download) - annotate - [select for diffs], Wed Apr 2 21:23:29 1997 UTC (27 years ago) by christos
Branch: MAIN
CVS Tags: thorpej-signal-base, thorpej-signal, netbsd-1-3-base, netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001, netbsd-1-3-BETA, netbsd-1-3, marc-pcmcia-bp, marc-pcmcia-base, marc-pcmcia, bouyer-scsipi
Changes since 1.14: +2 -1 lines
Diff to previous 1.14 (unified)

Add netatalk stubs.

Revision 1.14 / (download) - annotate - [select for diffs], Thu Jul 4 03:16:13 1996 UTC (27 years, 9 months ago) by chuck
Branch: MAIN
CVS Tags: thorpej-setroot, mrg-vm-swap, is-newarp-before-merge, is-newarp-base, is-newarp
Changes since 1.13: +4 -2 lines
Diff to previous 1.13 (unified)

add native mode atm network interrupt

Revision 1.13 / (download) - annotate - [select for diffs], Thu Feb 1 22:33:44 1996 UTC (28 years, 2 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-2-base, netbsd-1-2-RELEASE, netbsd-1-2-PATCH001, netbsd-1-2-BETA, netbsd-1-2
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (unified)

LOCORE -> _LOCORE

Revision 1.12 / (download) - annotate - [select for diffs], Sat Aug 12 23:59:24 1995 UTC (28 years, 8 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-1-base, netbsd-1-1-RELEASE, netbsd-1-1-PATCH001, netbsd-1-1
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (unified)

splnet --> splsoftnet

Revision 1.11 / (download) - annotate - [select for diffs], Tue Jul 4 23:24:07 1995 UTC (28 years, 9 months ago) by paulus
Branch: MAIN
Changes since 1.10: +2 -1 lines
Diff to previous 1.10 (unified)

Add definition for NETISR_PPP.

Revision 1.10 / (download) - annotate - [select for diffs], Sun Mar 26 20:30:16 1995 UTC (29 years, 1 month ago) by jtc
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (unified)

KERNEL -> _KERNEL

Revision 1.8.2.1 / (download) - annotate - [select for diffs], Sun Aug 14 09:01:06 1994 UTC (29 years, 8 months ago) by mycroft
Branch: netbsd-1-0
CVS Tags: netbsd-1-0-RELEASE, netbsd-1-0-PATCH1, netbsd-1-0-PATCH06, netbsd-1-0-PATCH05, netbsd-1-0-PATCH04, netbsd-1-0-PATCH03, netbsd-1-0-PATCH02, netbsd-1-0-PATCH0
Changes since 1.8: +4 -4 lines
Diff to previous 1.8 (unified) next main 1.9 (unified)

update from trunk (to remove ancient vax stuff)

Revision 1.9 / (download) - annotate - [select for diffs], Tue Jul 26 18:57:02 1994 UTC (29 years, 9 months ago) by cgd
Branch: MAIN
Changes since 1.8: +4 -4 lines
Diff to previous 1.8 (unified)

kill vax code, at ragge's requeust.

Revision 1.8 / (download) - annotate - [select for diffs], Wed Jun 29 06:36:31 1994 UTC (29 years, 9 months ago) by cgd
Branch: MAIN
CVS Tags: netbsd-1-0-base
Branch point for: netbsd-1-0
Changes since 1.7: +3 -2 lines
Diff to previous 1.7 (unified)

New RCS ID's, take two.  they're more aesthecially pleasant, and use 'NetBSD'

Revision 1.7 / (download) - annotate - [select for diffs], Fri May 13 06:03:01 1994 UTC (29 years, 11 months ago) by mycroft
Branch: MAIN
Changes since 1.6: +4 -9 lines
Diff to previous 1.6 (unified)

Update to 4.4-Lite networking code, with a few local changes.

Revision 1.6 / (download) - annotate - [select for diffs], Mon Apr 18 23:31:41 1994 UTC (30 years ago) by mycroft
Branch: MAIN
Changes since 1.5: +1 -2 lines
Diff to previous 1.5 (unified)

NETISR_RAW is defunct.

Revision 1.5 / (download) - annotate - [select for diffs], Mon Apr 18 23:20:26 1994 UTC (30 years ago) by mycroft
Branch: MAIN
Changes since 1.4: +2 -1 lines
Diff to previous 1.4 (unified)

Add NETISR_ARP.

Revision 1.4 / (download) - annotate - [select for diffs], Fri Dec 17 00:12:14 1993 UTC (30 years, 4 months ago) by mycroft
Branch: MAIN
Changes since 1.3: +1 -20 lines
Diff to previous 1.3 (unified)

From magnum branch:
Remove Jolitz's netisr kluge.  Make sure cpl == 0 really means base priority.
Other minor cleanup.

Revision 1.3.4.2 / (download) - annotate - [select for diffs], Mon Oct 18 08:45:56 1993 UTC (30 years, 6 months ago) by mycroft
Branch: magnum
Changes since 1.3.4.1: +1 -7 lines
Diff to previous 1.3.4.1 (unified) to branchpoint 1.3 (unified) next main 1.4 (unified)

Remove #ifdef i386 kluge, may it rot in Hell.

Revision 1.3.4.1 / (download) - annotate - [select for diffs], Thu Oct 14 05:15:51 1993 UTC (30 years, 6 months ago) by mycroft
Branch: magnum
Changes since 1.3: +7 -20 lines
Diff to previous 1.3 (unified)

Remove part of the i386 kluge.  softem is not used anywhere.

Revision 1.3 / (download) - annotate - [select for diffs], Thu May 20 03:06:05 1993 UTC (30 years, 11 months ago) by cgd
Branch: MAIN
CVS Tags: netbsd-0-9-patch-001, netbsd-0-9-base, netbsd-0-9-RELEASE, netbsd-0-9-BETA, netbsd-0-9-ALPHA2, netbsd-0-9-ALPHA, netbsd-0-9, magnum-base
Branch point for: magnum
Changes since 1.2: +2 -1 lines
Diff to previous 1.2 (unified)

add rcs ids to everything, and clean up headers

Revision 1.2 / (download) - annotate - [select for diffs], Mon Apr 19 03:47:55 1993 UTC (31 years ago) by mycroft
Branch: MAIN
Changes since 1.1: +5 -0 lines
Diff to previous 1.1 (unified)

Add consistent multiple-inclusion protection.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 21 09:45:37 1993 UTC (31 years, 1 month ago) by cgd
Branch: WFJ-920714, CSRG
CVS Tags: patchkit-0-2-2, netbsd-alpha-1, netbsd-0-8, WFJ-386bsd-01
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (unified)

initial import of 386bsd-0.1 sources

Revision 1.1 / (download) - annotate - [select for diffs], Sun Mar 21 09:45:37 1993 UTC (31 years, 1 month ago) by cgd
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>