The NetBSD Project

CVS log for src/sys/arch/hppa/include/param.h

[BACK] Up to [cvs.NetBSD.org] / src / sys / arch / hppa / include

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.30 / (download) - annotate - [select for diffs], Tue Mar 22 18:32:51 2022 UTC (2 years ago) by macallan
Branch: MAIN
CVS Tags: thorpej-ifq-base, thorpej-ifq, thorpej-altq-separation-base, thorpej-altq-separation, netbsd-10-base, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, bouyer-sunxi-drm-base, bouyer-sunxi-drm, HEAD
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored) to selected 1.26 (colored)

bump MSGBUFSIZE

Revision 1.27.6.2 / (download) - annotate - [select for diffs], Thu Jun 17 04:46:20 2021 UTC (2 years, 9 months ago) by thorpej
Branch: thorpej-i2c-spi-conf
Changes since 1.27.6.1: +4 -1 lines
Diff to previous 1.27.6.1 (colored) to branchpoint 1.27 (colored) next main 1.28 (colored) to selected 1.26 (colored)

Sync w/ HEAD.

Revision 1.29 / (download) - annotate - [select for diffs], Mon May 31 14:38:55 2021 UTC (2 years, 10 months ago) by simonb
Branch: MAIN
CVS Tags: thorpej-i2c-spi-conf2-base, thorpej-i2c-spi-conf2, thorpej-i2c-spi-conf-base, thorpej-futex2-base, thorpej-futex2, thorpej-cfargs2-base, thorpej-cfargs2, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x
Changes since 1.28: +4 -1 lines
Diff to previous 1.28 (colored) to selected 1.26 (colored)

Include "opt_param.h" (ifdef _KERNEL_OPT) everywhere that MSGBUFSIZE is
referenced since some sources include <machine/param.h>.

Revision 1.27.6.1 / (download) - annotate - [select for diffs], Thu May 13 00:47:25 2021 UTC (2 years, 11 months ago) by thorpej
Branch: thorpej-i2c-spi-conf
Changes since 1.27: +4 -4 lines
Diff to previous 1.27 (colored) to selected 1.26 (colored)

Sync with HEAD.

Revision 1.28 / (download) - annotate - [select for diffs], Sat May 8 13:10:29 2021 UTC (2 years, 11 months ago) by skrll
Branch: MAIN
CVS Tags: cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.27: +4 -4 lines
Diff to previous 1.27 (colored) to selected 1.26 (colored)

KNF

Revision 1.23.4.1 / (download) - annotate - [select for diffs], Mon May 18 18:12:25 2020 UTC (3 years, 10 months ago) by martin
Branch: netbsd-9
CVS Tags: netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE
Changes since 1.23: +6 -1 lines
Diff to previous 1.23 (colored) next main 1.24 (colored) to selected 1.26 (colored)

Pull up following revision(s) (requested by isaki in ticket #911):

	sys/dev/audio/audiodef.h: revision 1.13
	sys/dev/audio/audiodef.h: revision 1.14
	sys/arch/sparc/include/param.h: revision 1.74
	sys/arch/evbarm/conf/GENERIC64: revision 1.148
	sys/arch/sh3/include/param.h: revision 1.25
	sys/arch/evbarm/conf/GENERIC: revision 1.75
	sys/arch/m68k/include/param.h: revision 1.23
	sys/arch/amd64/conf/GENERIC: revision 1.564
	sys/arch/hppa/include/param.h: revision 1.27
	sys/dev/audio/audio.c: revision 1.68
	sys/arch/vax/include/param.h: revision 1.63
	sys/dev/audio/audio.c: revision 1.69

Reduce default AUDIO_BLK_MS from 40msec to 10msec on all platform except m68k
(m68k uses 40msec default as before).  And remove the option from GENERIC.

- It's not good idea to set such parameter in individual GENERICs.
- 4msec is (probably no problem for most modern real hardware but)
  too aggressive to be default.
- 10msec is too severe for antique machines but it's hard to draw a line.

Set AUDIO_BLK_MS 40 msec on other old(slow) architectures not only m68k.

Thanks tsutsui@ for comment about architecture choice.
And move it from audiodef.h to audio.c as suggested by joerg@.


Move machine dependent AUDIO_BLK_MS default value to <machine/param.h>.
If the port has __AUDIO_BLK_MS in <machine/param.h>, it will be used.

Otherwise the default value (currently 10 msec) defined in audio.c will
be used.  This mechanism is for very old ports which cannot satisfactorily
handle 10 msec block.  Currently hppa, m68k, sh3, sparc(!64) and vax are.

For port maintainers, if general models in your port cannot satisfactorily
handle 10 msec block, please consider to define your suitable longer period
(40 msec would be a good first choice).

But please don't be eager to make the default value shorter.
<machine/param.h> was discussed in source-changes-d.  It's better than
ifdef storm, or adding 60+ new header files in every arch/*/include/
directories for this.  Thanks mrg@, ad@, and everyone.
http://mail-index.netbsd.org/source-changes-d/2020/05/01/msg012572.html

Revision 1.27 / (download) - annotate - [select for diffs], Fri May 1 08:21:27 2020 UTC (3 years, 11 months ago) by isaki
Branch: MAIN
CVS Tags: thorpej-futex-base, thorpej-futex, thorpej-cfargs-base, thorpej-cfargs
Branch point for: thorpej-i2c-spi-conf
Changes since 1.26: +6 -1 lines
Diff to previous 1.26 (colored)

Move machine dependent AUDIO_BLK_MS default value to <machine/param.h>.
If the port has __AUDIO_BLK_MS in <machine/param.h>, it will be used.
Otherwise the default value (currently 10 msec) defined in audio.c will
be used.  This mechanism is for very old ports which cannot satisfactorily
handle 10 msec block.  Currently hppa, m68k, sh3, sparc(!64) and vax are.

For port maintainers, if general models in your port cannot satisfactorily
handle 10 msec block, please consider to define your suitable longer period
(40 msec would be a good first choice).
But please don't be eager to make the default value shorter.

<machine/param.h> was discussed in source-changes-d.  It's better than
ifdef storm, or adding 60+ new header files in every arch/*/include/
directories for this.  Thanks mrg@, ad@, and everyone.
http://mail-index.netbsd.org/source-changes-d/2020/05/01/msg012572.html

Revision 1.26 / (download) - annotate - [selected], Sat Mar 21 17:00:47 2020 UTC (4 years ago) by riastradh
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, bouyer-xenpvh-base2, bouyer-xenpvh-base1, bouyer-xenpvh-base, bouyer-xenpvh
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored)

Revert another historic $Hdr$ collapse.

Revision 1.25 / (download) - annotate - [select for diffs], Thu Mar 5 15:18:54 2020 UTC (4 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.24: +1 -5 lines
Diff to previous 1.24 (colored) to selected 1.26 (colored)

Revert "Include opt_diagnostic.h for DIAGNOSTIC."

This did not do what I thought it did.  opt_diagnostic.h is only for
the unused _DIAGNOSTIC, which seems like an abortive attempt to
incrementally convert DIAGNOSTIC to an opt_*.h option rather than a
command-line option.

Revision 1.24 / (download) - annotate - [select for diffs], Thu Mar 5 08:08:32 2020 UTC (4 years, 1 month ago) by riastradh
Branch: MAIN
Changes since 1.23: +6 -2 lines
Diff to previous 1.23 (colored) to selected 1.26 (colored)

Include opt_diagnostic.h for DIAGNOSTIC.

...at least, in header files, which may not have already included
libkern.h.

Revision 1.21.18.1 / (download) - annotate - [select for diffs], Mon Jun 10 22:06:19 2019 UTC (4 years, 10 months ago) by christos
Branch: phil-wifi
Changes since 1.21: +3 -8 lines
Diff to previous 1.21 (colored) next main 1.22 (colored) to selected 1.26 (colored)

Sync with HEAD

Revision 1.23 / (download) - annotate - [select for diffs], Tue Apr 16 12:25:17 2019 UTC (5 years ago) by skrll
Branch: MAIN
CVS Tags: phil-wifi-20191119, phil-wifi-20190609, netbsd-9-base, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, isaki-audio2-base, isaki-audio2, is-mlppp-base, is-mlppp, ad-namecache-base3, ad-namecache-base2, ad-namecache-base1, ad-namecache-base, ad-namecache
Branch point for: netbsd-9
Changes since 1.22: +3 -3 lines
Diff to previous 1.22 (colored) to selected 1.26 (colored)

Trailing whitespace

Revision 1.21.16.1 / (download) - annotate - [select for diffs], Fri Jan 18 08:50:17 2019 UTC (5 years, 2 months ago) by pgoyette
Branch: pgoyette-compat
CVS Tags: pgoyette-compat-merge-20190127
Changes since 1.21: +1 -6 lines
Diff to previous 1.21 (colored) next main 1.22 (colored) to selected 1.26 (colored)

Synch with HEAD

Revision 1.22 / (download) - annotate - [select for diffs], Mon Jan 7 22:00:31 2019 UTC (5 years, 3 months ago) by jdolecek
Branch: MAIN
CVS Tags: pgoyette-compat-20190127, pgoyette-compat-20190118
Changes since 1.21: +1 -6 lines
Diff to previous 1.21 (colored) to selected 1.26 (colored)

move DEV_BSIZE, DEV_BSHIFT out of MD param.h, they are same on all ports

also move BLKDEV_IOSIZE, MAXPHYS, but allow override since some ports
have different value (powerpc uses NBPG for BLKDEV_IOSIZE, sun2/sun3
have lower MAXPHYS)

Revision 1.19.6.2 / (download) - annotate - [select for diffs], Sun Dec 3 11:36:16 2017 UTC (6 years, 4 months ago) by jdolecek
Branch: tls-maxphys
Changes since 1.19.6.1: +1 -1 lines
Diff to previous 1.19.6.1 (colored) to branchpoint 1.19 (colored) next main 1.20 (colored) to selected 1.26 (colored)

update from HEAD

Revision 1.20.6.1 / (download) - annotate - [select for diffs], Sun Dec 27 12:09:36 2015 UTC (8 years, 3 months ago) by skrll
Branch: nick-nhusb
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored) next main 1.21 (colored) to selected 1.26 (colored)

Sync with HEAD (as of 26th Dec)

Revision 1.21 / (download) - annotate - [select for diffs], Tue Oct 27 22:28:56 2015 UTC (8 years, 5 months ago) by mrg
Branch: MAIN
CVS Tags: tls-maxphys-base-20171202, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, pgoyette-compat-base, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, 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, 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, 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, localcount-20160914, jdolecek-ncq-base, jdolecek-ncq, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: phil-wifi, pgoyette-compat
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored) to selected 1.26 (colored)

make sure MSGBUFSIZE can't expand strangely by using parens.

Revision 1.19.6.1 / (download) - annotate - [select for diffs], Wed Aug 20 00:03:05 2014 UTC (9 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.19: +3 -1 lines
Diff to previous 1.19 (colored) to selected 1.26 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.15.10.2 / (download) - annotate - [select for diffs], Thu May 22 11:39:50 2014 UTC (9 years, 10 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.15.10.1: +3 -1 lines
Diff to previous 1.15.10.1 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored) to selected 1.26 (colored)

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.19.10.1 / (download) - annotate - [select for diffs], Sun May 18 17:45:11 2014 UTC (9 years, 11 months ago) by rmind
Branch: rmind-smpnet
Changes since 1.19: +3 -1 lines
Diff to previous 1.19 (colored) next main 1.20 (colored) to selected 1.26 (colored)

sync with head

Revision 1.20 / (download) - annotate - [select for diffs], Mon Feb 24 07:23:43 2014 UTC (10 years, 1 month ago) by skrll
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, rmind-smpnet-nbase, rmind-smpnet-base, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, nick-nhusb-base-20150921, nick-nhusb-base-20150606, 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
Branch point for: nick-nhusb
Changes since 1.19: +3 -1 lines
Diff to previous 1.19 (colored) to selected 1.26 (colored)

Rename NetBSD/hp700 to NetBSD/hppa.

Unfortunately our VCS isn't very helpful here.

Revision 1.15.10.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:06:26 2012 UTC (12 years ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.15: +2 -11 lines
Diff to previous 1.15 (colored) to selected 1.26 (colored)

sync with head

Revision 1.15.14.1 / (download) - annotate - [select for diffs], Sat Feb 18 07:32:15 2012 UTC (12 years, 2 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.15: +2 -11 lines
Diff to previous 1.15 (colored) next main 1.16 (colored) to selected 1.26 (colored)

merge to -current.

Revision 1.19 / (download) - annotate - [select for diffs], Fri Feb 10 17:35:49 2012 UTC (12 years, 2 months ago) by para
Branch: MAIN
CVS Tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, 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, khorben-n900, 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, agc-symver-base, agc-symver
Branch point for: tls-maxphys, rmind-smpnet
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored) to selected 1.26 (colored)

proper sizing of kmem_arena on different ports

PR port-i386/45946: Kernel locks up in VMEM system

Revision 1.18 / (download) - annotate - [select for diffs], Sat Feb 4 17:56:16 2012 UTC (12 years, 2 months ago) by para
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored) to selected 1.26 (colored)

improve sizing of kmem_arena now that more allocations are made from it
don't enforce limits if not required

ok: riz@

Revision 1.17 / (download) - annotate - [select for diffs], Tue Jan 24 20:03:36 2012 UTC (12 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.16: +1 -10 lines
Diff to previous 1.16 (colored) to selected 1.26 (colored)

Use and define ALIGN() ALIGN_POINTER() and STACK_ALIGN() consistently,
and avoid definining them in 10 different places if not needed.

Revision 1.16 / (download) - annotate - [select for diffs], Fri Jan 20 14:08:05 2012 UTC (12 years, 2 months ago) by joerg
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.26 (colored)

Change CMSG_SPACE and CMSG_LEN to provide Integer Constant Expressions
again. This was changed in sys/socket.h r1.51 to work around fallout
from the IPv6 aux data migration. It broke the historic ABI on some
platforms. This commit restores compatibility for netbsd32 code on such
platforms and provides a template for future changes to the CMSG_*
alignment. Revert PCC/Clang workarounds in postfix and tmux.

Revision 1.14.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:39:27 2010 UTC (13 years, 11 months ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.14: +1 -4 lines
Diff to previous 1.14 (colored) next main 1.15 (colored) to selected 1.26 (colored)

Sync with HEAD.

Revision 1.12.10.2 / (download) - annotate - [select for diffs], Thu Mar 11 15:02:27 2010 UTC (14 years, 1 month ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.12.10.1: +2 -7 lines
Diff to previous 1.12.10.1 (colored) to branchpoint 1.12 (colored) next main 1.13 (colored) to selected 1.26 (colored)

sync with head

Revision 1.15 / (download) - annotate - [select for diffs], Mon Feb 8 19:02:29 2010 UTC (14 years, 2 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, yamt-nfs-mp-base9, yamt-nfs-mp-base11, yamt-nfs-mp-base10, uebayasi-xip-base7, uebayasi-xip-base6, uebayasi-xip-base5, uebayasi-xip-base4, uebayasi-xip-base3, uebayasi-xip-base2, uebayasi-xip-base1, rmind-uvmplock-nbase, rmind-uvmplock-base, rmind-uvmplock, matt-mips64-premerge-20101231, jym-xensuspend-nbase, jym-xensuspend-base, jruoho-x86intr-base, jruoho-x86intr, jmcneill-usbmp-pre-base2, jmcneill-usbmp-base, jmcneill-audiomp3-base, jmcneill-audiomp3, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Branch point for: yamt-pagecache, jmcneill-usbmp
Changes since 1.14: +1 -4 lines
Diff to previous 1.14 (colored) to selected 1.26 (colored)

Remove separate mb_map. The nmbclusters is computed at boot time based
on the amount of physical memory and limited by NMBCLUSTERS if present.
Architectures without direct mapping also limit it based on the kmem_map
size, which is used as backing store. On i386 and ARM, the maximum KVA
used for mbuf clusters is limited to 64MB by default.

The old default limits and limits based on GATEWAY have been removed.
key_registered_sb_max is hard-wired to a value derived from 2048
clusters.

Revision 1.14 / (download) - annotate - [select for diffs], Sun Jan 17 08:24:06 2010 UTC (14 years, 3 months ago) by skrll
Branch: MAIN
CVS Tags: uebayasi-xip-base
Branch point for: uebayasi-xip
Changes since 1.13: +2 -4 lines
Diff to previous 1.13 (colored) to selected 1.26 (colored)

Simplify.

Revision 1.12.24.1 / (download) - annotate - [select for diffs], Wed May 13 17:17:48 2009 UTC (14 years, 11 months ago) by jym
Branch: jym-xensuspend
Changes since 1.12: +6 -3 lines
Diff to previous 1.12 (colored) next main 1.13 (colored) to selected 1.26 (colored)

Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.

Revision 1.12.10.1 / (download) - annotate - [select for diffs], Mon May 4 08:11:14 2009 UTC (14 years, 11 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.12: +6 -3 lines
Diff to previous 1.12 (colored) to selected 1.26 (colored)

sync with head.

Revision 1.13 / (download) - annotate - [select for diffs], Thu Apr 30 07:01:27 2009 UTC (14 years, 11 months ago) by skrll
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8, yamt-nfs-mp-base7, yamt-nfs-mp-base6, yamt-nfs-mp-base5, yamt-nfs-mp-base4, yamt-nfs-mp-base3, matt-premerge-20091211, jymxensuspend-base
Changes since 1.12: +6 -3 lines
Diff to previous 1.12 (colored) to selected 1.26 (colored)

Merge nick-hppapmap.

This is a port of the OpenBSD pmap and trap handling code to get us

        - Performance boost on some/all machines.
        - Well on the way to PA2.0 (in 32bit mode) support. Several
          machines probe hardware, but fail sometime after interrupts
          are enabled.

Other things changed / fixed on the branch are

        - update autoconf to use the OpenBSD code.
        - com @ dino is very close to being supported.
        - HPPA_REDZONE has been replaced with a working redzone which
          is enabled with DIAGNOSTIC.
        - UPAGES has been halved in size.
        - power(4) from OpenBSD to fix a few bugs.
        - updated list of modules from OpenBSD.
	- initial ports of uturn(4), astro(4) and elroy(4).
	- update some copyrights (remove advertising clause, etc.)

Thanks to mjf for some of the above, testing and listening.

Revision 1.12.18.1 / (download) - annotate - [select for diffs], Thu Feb 19 18:23:35 2009 UTC (15 years, 1 month ago) by skrll
Branch: nick-hppapmap
Changes since 1.12: +6 -3 lines
Diff to previous 1.12 (colored) next main 1.13 (colored) to selected 1.26 (colored)

Fixup redzone stuff and enable it if DIAGNOSTIC.

Revision 1.9.20.2 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:05 2008 UTC (16 years ago) by matt
Branch: matt-armv6
Changes since 1.9.20.1: +2 -2 lines
Diff to previous 1.9.20.1 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored) to selected 1.26 (colored)

sync with HEAD

Revision 1.9.26.1 / (download) - annotate - [select for diffs], Mon Feb 18 21:04:36 2008 UTC (16 years, 2 months ago) by mjf
Branch: mjf-devfs
Changes since 1.9: +2 -18 lines
Diff to previous 1.9 (colored) next main 1.10 (colored) to selected 1.26 (colored)

Sync with HEAD.

Revision 1.6.12.3 / (download) - annotate - [select for diffs], Mon Jan 21 09:36:46 2008 UTC (16 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.6.12.2: +2 -18 lines
Diff to previous 1.6.12.2 (colored) to branchpoint 1.6 (colored) next main 1.7 (colored) to selected 1.26 (colored)

sync with head

Revision 1.9.32.3 / (download) - annotate - [select for diffs], Fri Jan 11 19:19:09 2008 UTC (16 years, 3 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.9.32.2: +1 -1 lines
Diff to previous 1.9.32.2 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored) to selected 1.26 (colored)

Sync with HEAD

Revision 1.12 / (download) - annotate - [select for diffs], Thu Jan 10 21:08:41 2008 UTC (16 years, 3 months ago) by skrll
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, wrstuden-revivesa-base-4, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, simonb-wapbl-nbase, simonb-wapbl-base, simonb-wapbl, nick-net80211-sync-base, nick-net80211-sync, nick-hppapmap-base4, nick-hppapmap-base3, nick-hppapmap-base2, nick-hppapmap-base, 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, mjf-devfs2-base, mjf-devfs2, mjf-devfs-base, 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, matt-armv6-nbase, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-nbase, hpcarm-cleanup-base, haad-nbase2, haad-dm-base2, haad-dm-base1, haad-dm-base, haad-dm, bouyer-xeni386-nbase, bouyer-xeni386-base, ad-socklock-base1, ad-audiomp2-base, ad-audiomp2
Branch point for: yamt-nfs-mp, nick-hppapmap, jym-xensuspend
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored) to selected 1.26 (colored)

Various improvements to the hppa kernel for gdb.

	- add the useful space and control registers to struct reg
	- update process_{read,write}_regs accordingly
	- use MID_HPPA in core dumps.
	- dump the fp regs into cores.
	- add single stepping support from OpenBSD.

Revision 1.9.20.1 / (download) - annotate - [select for diffs], Wed Jan 9 01:46:24 2008 UTC (16 years, 3 months ago) by matt
Branch: matt-armv6
Changes since 1.9: +1 -17 lines
Diff to previous 1.9 (colored) to selected 1.26 (colored)

sync with HEAD

Revision 1.9.32.2 / (download) - annotate - [select for diffs], Tue Jan 8 22:09:51 2008 UTC (16 years, 3 months ago) by bouyer
Branch: bouyer-xeni386
Changes since 1.9.32.1: +0 -2 lines
Diff to previous 1.9.32.1 (colored) to branchpoint 1.9 (colored) to selected 1.26 (colored)

Sync with HEAD

Revision 1.9.32.1 / (download) - annotate - [select for diffs], Wed Jan 2 21:48:06 2008 UTC (16 years, 3 months ago) by bouyer
Branch: bouyer-xeni386
Changes since 1.9: +1 -15 lines
Diff to previous 1.9 (colored) to selected 1.26 (colored)

Sync with HEAD

Revision 1.11 / (download) - annotate - [select for diffs], Wed Jan 2 21:00:34 2008 UTC (16 years, 3 months ago) by he
Branch: MAIN
CVS Tags: matt-armv6-base
Changes since 1.10: +1 -3 lines
Diff to previous 1.10 (colored) to selected 1.26 (colored)

Remove the #endif corresponding to the #ifdef _KERNEL removed in previous.

Revision 1.10 / (download) - annotate - [select for diffs], Mon Dec 31 13:38:50 2007 UTC (16 years, 3 months ago) by ad
Branch: MAIN
Changes since 1.9: +1 -15 lines
Diff to previous 1.9 (colored) to selected 1.26 (colored)

Remove COMPAT_HPUX.

Revision 1.6.12.2 / (download) - annotate - [select for diffs], Mon Sep 3 14:26:26 2007 UTC (16 years, 7 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.6.12.1: +1 -3 lines
Diff to previous 1.6.12.1 (colored) to branchpoint 1.6 (colored) to selected 1.26 (colored)

sync with head.

Revision 1.8.8.1 / (download) - annotate - [select for diffs], Mon Mar 12 05:48:18 2007 UTC (17 years, 1 month ago) by rmind
Branch: yamt-idlelwp
Changes since 1.8: +1 -3 lines
Diff to previous 1.8 (colored) next main 1.9 (colored) to selected 1.26 (colored)

Sync with HEAD.

Revision 1.9 / (download) - annotate - [select for diffs], Sat Mar 3 14:37:54 2007 UTC (17 years, 1 month ago) by skrll
Branch: MAIN
CVS Tags: yamt-x86pmap-base4, yamt-x86pmap-base3, yamt-x86pmap-base2, yamt-x86pmap-base, yamt-x86pmap, yamt-kmem-base3, yamt-kmem-base2, yamt-kmem-base, yamt-kmem, yamt-idlelwp-base8, vmlocking2-base3, vmlocking2-base2, vmlocking2-base1, vmlocking2, vmlocking-nbase, vmlocking-base, vmlocking, thorpej-atomic-base, thorpej-atomic, reinoud-bufcleanup-nbase, reinoud-bufcleanup-base, reinoud-bufcleanup, ppcoea-renovation-base, ppcoea-renovation, nick-csl-alignment-base5, nick-csl-alignment-base, nick-csl-alignment, mjf-ufs-trans-base, mjf-ufs-trans, matt-mips64-base, matt-mips64, matt-armv6-prevmlocking, jmcneill-pm-base, jmcneill-pm, jmcneill-base, hpcarm-cleanup, cube-autoconf-base, cube-autoconf, bouyer-xenamd64-base2, bouyer-xenamd64-base, bouyer-xenamd64
Branch point for: mjf-devfs, matt-armv6, bouyer-xeni386
Changes since 1.8: +1 -3 lines
Diff to previous 1.8 (colored) to selected 1.26 (colored)

Remove hppa_{round,trunc}_page.

Revision 1.6.12.1 / (download) - annotate - [select for diffs], Sat Dec 30 20:46:04 2006 UTC (17 years, 3 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.6: +1 -20 lines
Diff to previous 1.6 (colored) to selected 1.26 (colored)

sync with head.

Revision 1.7.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:39:52 2006 UTC (17 years, 7 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.7: +1 -20 lines
Diff to previous 1.7 (colored) next main 1.8 (colored) to selected 1.26 (colored)

sync with head

Revision 1.7.8.1 / (download) - annotate - [select for diffs], Sun Sep 3 15:22:58 2006 UTC (17 years, 7 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.7: +1 -20 lines
Diff to previous 1.7 (colored) next main 1.8 (colored) to selected 1.26 (colored)

sync with head.

Revision 1.8 / (download) - annotate - [select for diffs], Mon Aug 28 13:43:35 2006 UTC (17 years, 7 months ago) by yamt
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-pdpolicy-base8, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, rpaulo-netinet-merge-pcb-base, 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, matt-nb4-arm-base, matt-nb4-arm, ad-audiomp-base, ad-audiomp
Branch point for: yamt-idlelwp
Changes since 1.7: +1 -20 lines
Diff to previous 1.7 (colored) to selected 1.26 (colored)

- remove unused bdbtofsb.
- move the following macros from MD headers to sys/param.h.
	ctod
	dtoc
	ctob
	btoc
	dbtob
	btodb

Revision 1.7 / (download) - annotate - [select for diffs], Sun Dec 11 12:17:37 2005 UTC (18 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5, yamt-uio_vmspace, 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, 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.6: +1 -1 lines
Diff to previous 1.6 (colored) to selected 1.26 (colored)

merge ktrace-lwp.

Revision 1.4.2.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:35:37 2004 UTC (19 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.4: +3 -2 lines
Diff to previous 1.4 (colored) next main 1.5 (colored) to selected 1.26 (colored)

Sync with HEAD

Revision 1.6 / (download) - annotate - [select for diffs], Sun Jul 18 23:21:35 2004 UTC (19 years, 9 months ago) by chs
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, yamt-km-base2, yamt-km-base, yamt-km, 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, ktrace-lwp-base, kent-audio2-base, kent-audio2, kent-audio1-beforemerge, kent-audio1-base, kent-audio1
Branch point for: yamt-lazymbuf
Changes since 1.5: +1 -2 lines
Diff to previous 1.5 (colored) to selected 1.26 (colored)

add hppa support for RAS, context stuff, siginfo and scheduler activations:
 - add a RAS hook in cpu_switch().
 - fill in the definition of struct mcontext.
 - implement cpu_upcall(), cpu_getmcontext(), cpu_getmcontext() and
   cpu_switchto().
 - for now, force the right priviledge bits and space regs in setcontext().
 - use correct values for __SIMPLELOCK_*.
 - move the user stack to start at a multiple of the pthread stack size
   so that libpthread can use the sp-masking trick.

Revision 1.5 / (download) - annotate - [select for diffs], Sat Sep 20 22:28:19 2003 UTC (20 years, 7 months ago) by matt
Branch: MAIN
CVS Tags: 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
Changes since 1.4: +3 -1 lines
Diff to previous 1.4 (colored) to selected 1.26 (colored)

Use #ifdef _KERNEL_OPT around #include "opt_XXX.h"

Revision 1.4 / (download) - annotate - [select for diffs], Mon Jun 23 11:01:17 2003 UTC (20 years, 9 months ago) by martin
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.3: +2 -1 lines
Diff to previous 1.3 (colored) to selected 1.26 (colored)

Make sure to include opt_foo.h if a defflag option FOO is used.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Apr 28 23:16:19 2003 UTC (20 years, 11 months ago) by bjh21
Branch: MAIN
Changes since 1.2: +4 -2 lines
Diff to previous 1.2 (colored) to selected 1.26 (colored)

Add a new feature-test macro, _NETBSD_SOURCE.  If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.

This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
  can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
  various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
  !defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.

I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them.  In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.

Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.

Revision 1.2 / (download) - annotate - [select for diffs], Tue Apr 1 20:47:25 2003 UTC (21 years ago) by thorpej
Branch: MAIN
Changes since 1.1: +3 -7 lines
Diff to previous 1.1 (colored) to selected 1.26 (colored)

* Define PAGE_SHIFT, PAGE_SIZE, and PAGE_MASK in <hppa/vmparam.h>,
  not in <hppa/param.h>.
* Define NBPG in terms of PGSHIFT.

Revision 1.1.4.2 / (download) - annotate - [select for diffs], Sun Jul 14 17:47:28 2002 UTC (21 years, 9 months ago) by gehenna
Branch: gehenna-devsw
Changes since 1.1.4.1: +141 -0 lines
Diff to previous 1.1.4.1 (colored) to branchpoint 1.1 (colored) next main 1.2 (colored) to selected 1.26 (colored)

catch up with -current.

Revision 1.1.2.2 / (download) - annotate - [select for diffs], Sun Jun 23 17:37:09 2002 UTC (21 years, 9 months ago) by jdolecek
Branch: kqueue
Changes since 1.1.2.1: +141 -0 lines
Diff to previous 1.1.2.1 (colored) to branchpoint 1.1 (colored) next main 1.2 (colored) to selected 1.26 (colored)

catch up with -current on kqueue branch

Revision 1.1.4.1, Wed Jun 5 01:04:22 2002 UTC (21 years, 10 months ago) by gehenna
Branch: gehenna-devsw
Changes since 1.1: +0 -141 lines
FILE REMOVED

file param.h was added on branch gehenna-devsw on 2002-07-14 17:47:28 +0000

Revision 1.1.2.1, Wed Jun 5 01:04:22 2002 UTC (21 years, 10 months ago) by jdolecek
Branch: kqueue
Changes since 1.1: +0 -141 lines
FILE REMOVED

file param.h was added on branch kqueue on 2002-06-23 17:37:09 +0000

Revision 1.1 / (download) - annotate - [select for diffs], Wed Jun 5 01:04:22 2002 UTC (21 years, 10 months ago) by fredette
Branch: MAIN
CVS Tags: nathanw_sa_before_merge, kqueue-beforemerge, kqueue-base, kqueue-aftermerge, gmcgarry_ucred_base, gmcgarry_ucred, gmcgarry_ctxsw_base, gmcgarry_ctxsw, gehenna-devsw-base, fvdl_fs64_base
Branch point for: kqueue, gehenna-devsw
Diff to selected 1.26 (colored)

Added files to support generic HP PA-RISC based machines.  hp700-specific
files to follow.

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>