Module Name:src
Committed By: nat
Date: Tue Apr 8 23:42:08 UTC 2025
Modified Files:
src/sys/arch/mac68k/mac68k: pmap_bootstrap.c
Log Message:
Move high back an additional 7 pages to fix crashing on kernels with
ascaudio(4) enabled.
Memory
In article <21181.1550538...@splode.eterna.com.au>,
matthew green wrote:
>Christos Zoulas writes:
>> In article <20190219003451.093b2f...@cvs.netbsd.org>,
>> matthew green wrote:
>> >-=-=-=-=-=-
>>
>> >+ memcpy(intrnames, inames, MAX_INAME_LENGTH);
>>
>> That should be:
>> memcpy(intrna
Christos Zoulas writes:
> In article <20190219003451.093b2f...@cvs.netbsd.org>,
> matthew green wrote:
> >-=-=-=-=-=-
>
> >+memcpy(intrnames, inames, MAX_INAME_LENGTH);
>
> That should be:
> memcpy(intrnames, inames, sizeof(intrnames));
well.
maybe. but it's not really any better.
In article <20190219003451.093b2f...@cvs.netbsd.org>,
matthew green wrote:
>-=-=-=-=-=-
>+ memcpy(intrnames, inames, MAX_INAME_LENGTH);
That should be:
memcpy(intrnames, inames, sizeof(intrnames));
christos