Re: CVS commit: src/sys/arch/arm/include/arm32

2021-05-30 Thread Simon Burge
"Rin Okuyama" wrote: > Module Name: src > Committed By: rin > Date: Sun May 30 07:20:00 UTC 2021 > > Modified Files: > > src/sys/arch/arm/include/arm32: param.h > > Log Message: > > Include opt_param.h for MSGBUFSIZE ifdef _KERNEL_OPT. Thanks Rin! I thought I had checked all the w

Re: MAX_PAGE_SIZE for m68k (Re: CVS commit: src/sys/arch/arm/include/arm32)

2020-01-13 Thread Jason Thorpe
> On Jan 13, 2020, at 10:24 AM, Christos Zoulas wrote: > > Talking to myself: > > The arm PAGE_SIZE_{MIN,MAX} should go away after nick eliminates the > need for the 8K pages. This leaves us with m68k to deal with... > Do modules work on m68k? Should modules be shared between kernels with > di

Re: MAX_PAGE_SIZE for m68k (Re: CVS commit: src/sys/arch/arm/include/arm32)

2020-01-13 Thread Christos Zoulas
In article <20200113163830.e7a6317f...@rebar.astron.com>, Christos Zoulas wrote: >| >| Probably this is the same reason of recent arm build failures: >| https://releng.netbsd.org/builds/HEAD/202001130720Z/ >| https://releng.netbsd.org/builds/HEAD/202001130720Z/evbarm-earm.build.failed >| --- >|

Re: MAX_PAGE_SIZE for m68k (Re: CVS commit: src/sys/arch/arm/include/arm32)

2020-01-13 Thread Jason Thorpe
> On Jan 13, 2020, at 8:15 AM, Izumi Tsutsui wrote: > > christos@ wrote: > >>> Now I get the following erro during local tests of >>> "build.sh -U -m hp300 release" on NetBSD/i386 9.0_RC1 host: >>> >>> --- >>> #create compat_util/compat_exec.d > : >>> In file included from /s/cvs/src/sy

Re: MAX_PAGE_SIZE for m68k (Re: CVS commit: src/sys/arch/arm/include/arm32)

2020-01-13 Thread Christos Zoulas
On Jan 14, 1:15am, tsut...@ceres.dti.ne.jp (Izumi Tsutsui) wrote: -- Subject: Re: MAX_PAGE_SIZE for m68k (Re: CVS commit: src/sys/arch/arm/incl | christos@ wrote: | | > >Now I get the following erro during local tests of | > >"build.sh -U -m hp300 release" on NetBSD/i386 9.0_RC1 host: | > > | >

Re: MAX_PAGE_SIZE for m68k (Re: CVS commit: src/sys/arch/arm/include/arm32)

2020-01-13 Thread Izumi Tsutsui
christos@ wrote: > >Now I get the following erro during local tests of > >"build.sh -U -m hp300 release" on NetBSD/i386 9.0_RC1 host: > > > >--- > >#create compat_util/compat_exec.d : > >In file included from /s/cvs/src/sys/sys/param.h:149:0, > > from /s/cvs/src/sys/compat/co

Re: MAX_PAGE_SIZE for m68k (Re: CVS commit: src/sys/arch/arm/include/arm32)

2020-01-13 Thread Christos Zoulas
In article <200114002918.m0108...@mirage.ceres.dti.ne.jp>, Izumi Tsutsui wrote: >christos@ wrote: > >> LGTM too. > >> >> thorpej@ wrote: > : >> >> How about the attached diff? (untested, just for review) >> > >> > This looks good to me. > >Now I get the following erro during local tests of >"bui

MAX_PAGE_SIZE for m68k (Re: CVS commit: src/sys/arch/arm/include/arm32)

2020-01-13 Thread Izumi Tsutsui
christos@ wrote: > LGTM too. > >> thorpej@ wrote: : > >> How about the attached diff? (untested, just for review) > > > > This looks good to me. Now I get the following erro during local tests of "build.sh -U -m hp300 release" on NetBSD/i386 9.0_RC1 host: --- #create compat_util/compat_e

Re: CVS commit: src/sys/arch/arm/include/arm32

2020-01-12 Thread Christos Zoulas
LGTM too. christos > On Jan 12, 2020, at 10:09 AM, Jason Thorpe wrote: > > > >> On Jan 11, 2020, at 10:47 PM, Izumi Tsutsui wrote: >> >> thorpej@ wrote: >> PGSHIFT is defined in and PAGE_SHIFT and PAGE_SIZE is in , but there is no common . >>> >>> Make a common that all o

Re: CVS commit: src/sys/arch/arm/include/arm32

2020-01-12 Thread Jason Thorpe
> On Jan 11, 2020, at 10:47 PM, Izumi Tsutsui wrote: > > thorpej@ wrote: > >>> PGSHIFT is defined in and >>> PAGE_SHIFT and PAGE_SIZE is in , >>> but there is no common . >> >> Make a common that all of the platforms can #include, and >> just put these common definitions in it (for now)?

Re: CVS commit: src/sys/arch/arm/include/arm32

2020-01-11 Thread Izumi Tsutsui
thorpej@ wrote: > > PGSHIFT is defined in and > > PAGE_SHIFT and PAGE_SIZE is in , > > but there is no common . > > Make a common that all of the platforms can #include, and > just put these common definitions in it (for now)? How about the attached diff? (untested, just for review) - Only s

Re: CVS commit: src/sys/arch/arm/include/arm32

2020-01-11 Thread Jason Thorpe
> On Jan 11, 2020, at 8:32 PM, Izumi Tsutsui wrote: > > PGSHIFT is defined in and > PAGE_SHIFT and PAGE_SIZE is in , > but there is no common . Make a common that all of the platforms can #include, and just put these common definitions in it (for now)? -- thorpej

Re: CVS commit: src/sys/arch/arm/include/arm32

2020-01-11 Thread Izumi Tsutsui
> >m68k also needs this? (currently no common though) > > Good catch. Yup, looks like it: : > > #define MIN_PAGE_SHIFT 11 /* sun2 */ > #define MAX_PAGE_SHIFT 13 /* amiga,atari,sun3 */ > #define MIN_PAGE_SIZE (1 << MIN_PAGE_SHIFT) >

Re: CVS commit: src/sys/arch/arm/include/arm32

2020-01-11 Thread Christos Zoulas
In article <200112121414.m0101...@mirage.ceres.dti.ne.jp>, Izumi Tsutsui wrote: >> Module Name: src >> Committed By:christos >> Date:Sat Jan 11 19:06:35 UTC 2020 >> >> Modified Files: >> src/sys/arch/arm/include/arm32: vmparam.h >> >> Log Message: >> Define the min

Re: CVS commit: src/sys/arch/arm/include/arm32

2020-01-11 Thread Izumi Tsutsui
> Module Name: src > Committed By: christos > Date: Sat Jan 11 19:06:35 UTC 2020 > > Modified Files: > src/sys/arch/arm/include/arm32: vmparam.h > > Log Message: > Define the min and max page size supported for the benefit of jemalloc > > > To generate a diff of this commit: > cv

Re: CVS commit: src/sys/arch/arm/include

2018-07-15 Thread Christos Zoulas
In article <20180715143050.ga28...@britannica.bec.de>, Joerg Sonnenberger wrote: >On Sat, Jul 14, 2018 at 08:36:13PM -0400, Christos Zoulas wrote: >> Module Name: src >> Committed By:christos >> Date:Sun Jul 15 00:36:13 UTC 2018 >> >> Modified Files: >> src/sys/arch/

Re: CVS commit: src/sys/arch/arm/include

2018-07-15 Thread Joerg Sonnenberger
On Sat, Jul 14, 2018 at 08:36:13PM -0400, Christos Zoulas wrote: > Module Name: src > Committed By: christos > Date: Sun Jul 15 00:36:13 UTC 2018 > > Modified Files: > src/sys/arch/arm/include: int_fmtio.h > > Log Message: > Fix formats for gcc where int64 is long not long long (li

Re: CVS commit: src/sys/arch/arm/include/arm32

2017-05-25 Thread Jared McNeill
This breaks kernel builds: /home/jmcneill/netbsd/cvs-src/sys/uvm/pmap/pmap_tlb.c: In function 'pmap_tlb_update_addr': /home/jmcneill/netbsd/cvs-src/sys/uvm/pmap/pmap_tlb.c:739:13: error: implicit declaration of function 'pte_valid_p' [-Werror=implicit-function-declaration] KASSERTMSG(pte_vali

Re: CVS commit: src/sys/arch/arm/include

2014-11-28 Thread Nick Hudson
On 11/28/14 15:37, Nick Hudson wrote: Module Name:src Committed By: skrll Date: Fri Nov 28 15:37:02 UTC 2014 Modified Files: src/sys/arch/arm/include: profile.h Log Message: Fix __mconunt in the !(__ARM_EABI__) case by opoing the right number of registers on exit. The

Re: CVS commit: src/sys/arch/arm/include

2014-07-22 Thread Matt Thomas
On Jul 22, 2014, at 3:45 PM, Alexander Nasonov wrote: > Matt Thomas wrote: >> >> On Jul 22, 2014, at 1:16 PM, Alexander Nasonov wrote: >> >>> Module Name:src >>> Committed By: alnsn >>> Date: Tue Jul 22 20:16:39 UTC 2014 >>> >>> Modified Files: >>> src/sys/arc

Re: CVS commit: src/sys/arch/arm/include

2014-07-22 Thread Alexander Nasonov
Matt Thomas wrote: > > On Jul 22, 2014, at 1:16 PM, Alexander Nasonov wrote: > > > Module Name:src > > Committed By: alnsn > > Date: Tue Jul 22 20:16:39 UTC 2014 > > > > Modified Files: > > src/sys/arch/arm/include: sljitarch.h > > > > Log Message: > > Add paren

Re: CVS commit: src/sys/arch/arm/include

2014-07-22 Thread Matt Thomas
On Jul 22, 2014, at 1:16 PM, Alexander Nasonov wrote: > Module Name: src > Committed By: alnsn > Date: Tue Jul 22 20:16:39 UTC 2014 > > Modified Files: > src/sys/arch/arm/include: sljitarch.h > > Log Message: > Add parentheses around macro arguments. Please use sljit_machdep.h

Re: CVS commit: src/sys/arch/arm/include

2014-01-29 Thread Matt Thomas
On Jan 29, 2014, at 12:25 PM, Alan Barrett wrote: > On Wed, 29 Jan 2014, Matt Thomas wrote: >> Modified Files: >> src/sys/arch/arm/include: int_fmtio.h int_mwgwtypes.h >> >> Log Message: >> Make {,u}int{8,16,32} be of type int. > > I think you mean: > > Make {,u}int_fast{8,16,32} be of t

Re: CVS commit: src/sys/arch/arm/include

2014-01-29 Thread Alan Barrett
On Wed, 29 Jan 2014, Matt Thomas wrote: Modified Files: src/sys/arch/arm/include: int_fmtio.h int_mwgwtypes.h Log Message: Make {,u}int{8,16,32} be of type int. I think you mean: Make {,u}int_fast{8,16,32} be of type int. --apb (Alan Barrett)

Re: CVS commit: src/sys/arch/arm/include

2012-09-24 Thread Ryo Shimizu
>(2012/09/01 8:56), Matt Thomas wrote: >> Module Name: src >> Committed By:matt >> Date:Fri Aug 31 23:56:15 UTC 2012 >> >> Modified Files: >> src/sys/arch/arm/include: mutex.h >> >> Log Message: >> Move the __cpu_simple_lock to the last byte so it's easier to read in d

Re: CVS commit: src/sys/arch/arm/include

2012-09-24 Thread Masanobu SAITOH
(2012/09/01 8:56), Matt Thomas wrote: Module Name:src Committed By: matt Date: Fri Aug 31 23:56:15 UTC 2012 Modified Files: src/sys/arch/arm/include: mutex.h Log Message: Move the __cpu_simple_lock to the last byte so it's easier to read in dumps To generate a diff of

Re: CVS commit: src/sys/arch/arm/include

2012-08-29 Thread Jukka Ruohonen
On Wed, Aug 29, 2012 at 10:25:06PM +, Matt Thomas wrote: > Module Name: src > Committed By: matt > Date: Wed Aug 29 22:25:05 UTC 2012 > > Modified Files: > src/sys/arch/arm/include: asm.h > > Log Message: > Add __BIT(n) macro Is this really necessary? We have bits(3). - Jukka