Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (8h)  netbsd-10 (19d)  netbsd-9 (19d)  netbsd-8 (23d) 

2024-06-04 14:57:06 UTC Now

2023-10-24 22:04:24 UTC MAIN commitmail json YAML

add two blocks of db_regs_t to gdb translation, according to regnum.h
definitions and if either __mips_n32 or __mips_n64 is defined.

Fixes compilation of this file in case one those is defined.

(andvar)

2023-10-24 21:45:49 UTC MAIN commitmail json YAML

cast kgdb_dev to int as sun3, sgimips and sgimips64 have different types,
same %lld format specifier doesn't work for both.

(andvar)

2023-10-24 20:37:16 UTC MAIN commitmail json YAML

declare zskgdb() in zs.c, if KGBD option is enabled.

Fixes compilation issue with the KGBD option enabled for sgimips.

(andvar)

2023-10-24 20:21:12 UTC MAIN commitmail json YAML

declare batl for PPC_OEA601 only, since it is unused by OEA or OEA64_BRIDGE.

(andvar)

2023-10-24 19:05:07 UTC MAIN commitmail json YAML

apply similar changes between different archs/machines for zs_kgdb.c:
1) adjust zs_kgdb_init tty attachment message for kgdb_dev type change.
(one arch uses cast to int instead, but kept one approach for consistency)
2) remove unused rr0 declaration and assignment in zs_kgdb_txint()
3) adjust kgdb_dev format specifier to %llx/d if needed.
4) add const for zs_kgdb_devname declaration (macppc only).
should fix zs_kgdb.c build for all these ports.

(andvar)

2023-10-24 18:08:16 UTC MAIN commitmail json YAML

pass &tf->tf_registers instead of tf to db_set_ddb_regs().
use _R_PC definition instead of TF_EPC for tf->tf_regs[].
Changes were not adjusted with mips64 merge for kgdb code.

makes trap.c build with KGDB option enabled for mips archs.

(andvar)

2023-10-24 18:01:31 UTC MAIN commitmail json YAML

move locore.h include above pte.h, which uses some of its definitions.
fix typo in pte_valid_p() argument, *pte->*ptep.

makes this file build with KGDB option enabled on MIPS archs.

(andvar)

2023-10-20 11:38:25 UTC MAIN commitmail json YAML

make zs_kgdb.c build for next68k.

kgdb_dev expects llx/d format specifier.
change serial number print message to the same as sgimips.
remove rr0 definition in zs_kgdb_txint, it is unused.

Fixes also KGDB enabled build for next68k.
Similar or partial changes likely required for few other ports.

(andvar)

2023-10-19 22:07:13 UTC MAIN commitmail json YAML

Fix printf specifier for tvp->tv_sec from 0x%08x to 0x%08llx.
Remove printf secs argument for "Regs after:" printout, none expected.
Remove "Setting RTC to 0x%08x." and non existing secs arg from settime_old().
Code was changed with rev. 1.14 without fully adjusting DEBUG code.

Fixes RTC_DEBUG build for next68k.

(andvar)

2023-10-14 08:05:26 UTC MAIN commitmail json YAML

2023-10-13 22:20:46 UTC MAIN commitmail json YAML

s/fdstartegy/fdstrategy/ in comment.

(andvar)

2023-10-09 05:56:24 UTC MAIN commitmail json YAML

replace trailing whitespace with tab before struct evcnt for consistency.

(andvar)

2023-10-08 22:10:49 UTC MAIN commitmail json YAML

Update __BS_TYPENAME(BITS) macro to combine uint type instead of u_int.
Constify bus_space_write_multi one of params.
Remove unused ic_intr property from mipsco_isa_chipset struct.
Add __INTR_PRIVATE definition to mipsco isa_machdep.c.

Fixes RC3230 mipsco kernel config (w/o KGDB option, will be addressed later).

(andvar)

2023-10-08 17:42:58 UTC MAIN commitmail json YAML

Revert my changes regarding removal of FPSP related blocks.

After additional discussion it is preferred to keep code consistency,
to make it easier refactor common code between m68k ports.

(andvar)

2023-10-06 21:10:12 UTC MAIN commitmail json YAML

Remove fpsp include and #ifdef FPSP blocks for news68k.
FPSP is necessary for 040/060 only, and news68k doesn't have such hardware.

Noted by Izumi Tsutsui.

(andvar)

2023-10-01 21:04:10 UTC MAIN commitmail json YAML

remove unncessary leading space in #ifdef FPSP block.
remove one trailing whitespace.

(andvar)

2023-10-01 19:28:36 UTC MAIN commitmail json YAML

Improve KGDB enabled build for news68k:
* include sys/kgdb.h in news68k/trap.c for missing definitions.
* cast second kgdb_trap argument to (db_regs_t *).
* build m68k/kgdb_machdep.c for kgdb_trap() implementation.

Same as for mvme68k, build complains about undefined reference to zs_check_kgdb
due to missing port specific zs kgdb implementation for MI zs(4) driver though.

(andvar)

2023-10-01 18:50:53 UTC MAIN commitmail json YAML

include fpsp Makefile.inc in Makefile.news68k, same as other m68k ports.

needed for FPSP option to build, otherwise FPSP specific vectors are undefined.

(andvar)

2023-09-30 21:00:43 UTC MAIN commitmail json YAML

Improve kgdb build for mvme68k:
* include sys/kgdb.h in mvme68k/trap.c for missing definitions.
* cast second kgdb_trap argument to (db_regs_t *).
* build m68k/kgdb_machdep.c in kgdb enable build for kgdb_trap() implementation.

KGDB build still fails, apparently due to missing zs_kgdb.c implementation.

(andvar)

2023-09-30 20:15:55 UTC MAIN commitmail json YAML

s/resonably/reasonably/.

(andvar)

2023-09-29 21:23:33 UTC MAIN commitmail json YAML

Remove h->sock from DPRINTF arguments, it is leftover from shpcic_handle, removed
when code was moved to mmeye specific device code in 2002.
Add const for *width_names[] definition.
Redefine ioaddr in mmeyepcmcia_chip_io_alloc() and calculate in advance, since
DPRINTF() expects it as one of the arguments. This code was simplified with mmEye-WL
added support in 2011, but broke debug code.

Fixes MMEYEPCMCIADEBUG enabled build.

(andvar)

2023-09-29 06:09:20 UTC MAIN commitmail json YAML

reorder includes alphabetically to match mmeye counterpart, NFCI.

(andvar)

2023-09-29 05:25:15 UTC MAIN commitmail json YAML

reorder includes alphabetically.
remove sh4 specific includes, since mmeye version doesn't have sh4 code.
missed in previous commit, despite mentioning that in commit message.

(andvar)

2023-09-28 21:45:43 UTC MAIN commitmail json YAML

apply few commits from uwe in evbsh3/locore.S to mmeye counterpart:
1) Wrap _ROM_START in #ifdef ROMIMAGE to match its use.
2) Use symbolic constants for SR init values.
3) Don't write SR twice.
reduces diff between two mainly to SH4 specific code and few other lines.
NFCI
(confirmed with uwe by email)

Additionally:
rearrange includes alphabetically and remove sh3/mmu_sh4.h, since SH4 specific
code is missing.

(andvar)

2023-09-24 20:17:26 UTC MAIN commitmail json YAML

Nix trailing whitespace.

(andvar)

2023-09-24 19:57:10 UTC MAIN commitmail json YAML

unify ROMIMAGE specific assembler code between evbsh3 and mmeye.

fixes mmeye ROMIMAGE enabled build and in turn MMTAROMNEW kernel config.
patch checked by martin. PR port-mmeye/57627.

(andvar)

2023-09-24 13:59:38 UTC MAIN commitmail json YAML

disable all phy devices in config, since network is disabled in general.
add SH7708R option from MMTA config, one CPU option is required.
enable pseudo-terminal device, also needed for config to build.

changes fix the kernel config itself, but build fails on locore.S asm code,
will file a PR for that.

P.S. would be good to update descriptions of kernel configs, since all copied
from GENERIC and it is difficult to decipher their purpose and relevance.

(andvar)

2023-09-24 10:59:24 UTC MAIN commitmail json YAML

pass NULL to the second dbdma_alloc() expected argement.
it was not adjusted after it acquired one 7 years ago.

fixes ZS_TXDMA enabled build for macppc.

(andvar)

2023-09-24 10:51:28 UTC MAIN commitmail json YAML

define i variable in for loop.
valkyriefb_attach() doesn't have one defined in the function scope.

fixes VALKYRIEFB_DEBUG enabled build for macppc.

(andvar)

2023-09-24 08:20:06 UTC MAIN commitmail json YAML

define i variable in for loop.
mesh_msgin() doesn't have one defined in the function scope.

fixes MESH_DEBUG enabled build for macppc.

(andvar)

2023-09-23 21:26:16 UTC MAIN commitmail json YAML

add ifdef NWSDISPLAY > 0 around rascons_* functions usage,
otherwise implementation is not available, which breaks macppc MAMBO config.

potentially better solution to provide empty implementation, comments welcome.

(andvar)

2023-09-23 13:45:50 UTC MAIN commitmail json YAML

pass just l param to exec_aout_prep_oldzmagic instead of l->l_proc.

In a huge "merge ktrace-lwp." commit struct proc was changed by struct lwp.
seemingly all 68k ports just replaced p with l, however mac68k changed to
refer to l->l_proc. I assume it was accidental leftover during refactoring.

fixes COMPAT_NOMID enabled build for mac68k.

(andvar)

2023-09-23 12:48:23 UTC MAIN commitmail json YAML

some whitespace cleanup for debug printf calls.

(andvar)

2023-09-23 12:29:25 UTC MAIN commitmail json YAML

change zsprintf to printf. It was defined as printf in include/z8530var.h
up to rev 1.4, then removed with conversion to MI 8530 SCC driver back in 1997.

Fixes build with ZSMACDEBUG option enabled for mac68k and macppc.

(andvar)

2023-09-17 14:22:28 UTC MAIN commitmail json YAML

remove unneeded whitespace in empty line from my previous commit.

(andvar)

2023-09-17 13:14:08 UTC MAIN commitmail json YAML

word was changed to sval at rev 1.39, but DPRINTF values were not updated.

Fixes DEBUG_FPE enabled build for 68k FPE code.

(andvar)

2023-09-17 12:30:00 UTC MAIN commitmail json YAML

fix KGDB enabled build for luna68k:
* include sys/kgdb.h in luna68k/trap.c for missing definitions.
* cast second kgdb_trap argument to (db_regs_t *).
* build m68k/kgdb_machdep.c in kgdb enable build for kgdb_trap() implementation.

(andvar)

2023-09-17 10:14:49 UTC MAIN commitmail json YAML

all sunos_exec_aout_makecmds references were removed from machedep back in 1997,
as the code was standardized and moved to sunos_exec_aout.c.

removing this code from luna68k as well, for whatever reason it was missed.

Fixes build with COMPAT_SUNOS enabled for luna68k.

(andvar)

2023-09-17 07:22:17 UTC MAIN commitmail json YAML

add "#if defined(M68030)" around 68030 specific busaddrerr2030 calls.

Makes M68030 build without 040/060 counterparts enabled for x68k.

(andvar)

2023-09-16 20:53:18 UTC MAIN commitmail json YAML

remove static from dumpssw() and dumpwb() declarations.

Fixes DEBUG enabled builds for luna68k and x68k.

(andvar)

2023-09-16 18:56:40 UTC MAIN commitmail json YAML

sh3/sci(4): replace undefined scistatus with DPRINTF.

Fixes the build with SCI_DEBUG enabled.

(andvar)

2023-09-16 15:42:01 UTC MAIN commitmail json YAML

sh3/scif(4): redefine DPRINTF again, not all SH ports has machine/debug.h.
Those are defined for hpc only.

unbreaks build for evbsh some kernel configs and SFIC_DEBUG still builds.

(andvar)

2023-09-15 20:59:56 UTC MAIN commitmail json YAML

sh3/scif(4): replace undefined scifstatus with DPRINTF.

fixes the build with SCIF_DEBUG enabled.

(andvar)

2023-09-13 19:45:37 UTC MAIN commitmail json YAML

fix printf format specifier for physmem.

fixes VERBOSE_INIT_ARM enabled build for iyonix.

(andvar)

2023-09-13 17:08:15 UTC MAIN commitmail json YAML

change hd64461uart_init_regs third argument from NULL to 0x0,
since compiler complains about making integer from pointer without cast.

fully fixes KGDB enabled build for hpcsh.

(andvar)

2023-09-12 22:07:33 UTC MAIN commitmail json YAML

double quotes should be in front of value, not property name.
fix KGDB enabled builds for dreamcast/hpcsh.

(andvar)

2023-09-12 21:50:12 UTC MAIN commitmail json YAML

remove ksyms from hpcsh DEBUG kernel config. It is already defined in GENERAL.

(andvar)

2023-09-12 19:32:00 UTC MAIN commitmail json YAML

rename flash_cd to vrflash_cd, since device was renamed to vrflash.

Fixes hpcmips LCARD config linking issue that flash_cd is undefined.

(andvar)

2023-09-11 22:09:29 UTC MAIN commitmail json YAML

hpcmips/vrflash(4): custom DPRINTF definition requires additional brackets
around the arguments.

Fixes FLUSH_DEBUG build.

However the driver fails to link due to missing reference to flash_cd,
my guess because of obsoleted flash device-major.

(andvar)

2023-09-10 21:13:20 UTC MAIN commitmail json YAML

return %#x specifier for pcihp->ioh and add (unsigned) cast instead,
as it is done everywhere in this code.

(andvar)

2023-09-10 20:55:30 UTC MAIN commitmail json YAML

rewrite tx39sib debug code to use debug.h DPRINTF definition.
also debug code uses dbg_bitmask_print(), thus build fails without the header.

fixes TX39SIBDEBUG enabled build.

(andvar)

2023-09-10 20:41:57 UTC MAIN commitmail json YAML

rewrite old style tx39biu_dump function declaration
and constify char *rowsel[], char *colsel[].

fixes TX39BIU_DEBUG enabled build.

(andvar)

2023-09-10 20:28:25 UTC MAIN commitmail json YAML

tx39ir(4): rewrite code to use DPRINTF definition from debug.h.
custom one had wrong vrpiu_debug variable in if block (likely copy pasta)
debug code also calls dbg_bitmask_print(), thus was failing to build.
remove unneeded #undef TX39IRDEBUG.

Fixes TX39IRDEBUG build (tested with hpcmips TX3912 kernel config).

(andvar)

2023-09-10 15:18:51 UTC MAIN commitmail json YAML

rewrite UCBTPDEBUG to use DPRINTF/DPRINTFN definitions from debug.h.

No functional changes intended.

(andvar)

2023-09-10 15:03:56 UTC MAIN commitmail json YAML

Remove custom DPRINTF/DPRINTFN definitions and reuse one defined in debug.h.
Remove "#undef PLUMVIDEODEBUG", it is not defined by default.

fixes PLUMVIDEODEBUG enabled build.

(andvar)

2023-09-10 14:28:57 UTC MAIN commitmail json YAML

Various fixes to (re)enable PLUMPCMCIA_DEBUG build:
remove brackets around DPRINTF params (that's leftover from custom definition).
pcihp->ioh expects %lx specifier, not %x.
constify char *width_names.
rename cardtype to type in one of DPRINTF argument's condition.

(andvar)

2023-09-10 14:11:34 UTC MAIN commitmail json YAML

nix whitespace before semicolon.

(andvar)

2023-09-10 11:30:13 UTC MAIN commitmail json YAML

PLUM2 icu debug code uses dbg_bit_print, defined in hpcmips debug.h header file.
Thus rewrote code to use DPRINTF definition from it and include the header.

Fixes PLUMICUDEBUG enabled build.

(andvar)

2023-09-09 21:04:26 UTC MAIN commitmail json YAML

2023-09-09 21:01:57 UTC MAIN commitmail json YAML

s/reagion/region/ in called bus_space_read_region_stream_x method names.

relevant for hpcmips BUS_SPACE_HAS_REAL_STREAM_METHODS enabled build,
however it still fails due to other issues.

(andvar)

2023-09-09 20:47:29 UTC MAIN commitmail json YAML

relocate DPRINTF below to make sure that bpa is initialized.

fixes BUS_SPACE_DEBUG enabled build for hpcmips.

(andvar)

2023-09-09 18:49:21 UTC MAIN commitmail json YAML

change #define to #error for MIPS3_4100i 8KB page size build protection.

(andvar)

2023-09-09 09:38:02 UTC MAIN commitmail json YAML

add "midi* at midibus?" to hpmips VR41XX kernel config.
it is needed for umidi to build and makes this config to build as well.

(andvar)

2023-09-09 07:07:03 UTC MAIN commitmail json YAML

fix DEVMAP_ENTRY list termination symbol.

Makes hpcarm NETBOOKPRO config build again.

(andvar)

2023-09-08 22:51:54 UTC MAIN commitmail json YAML

hp300/dcm(4): set dsp value after sc is initialized.
fixes DCMSTATS enabled build for hp300.

(andvar)

2023-09-08 19:04:29 UTC MAIN commitmail json YAML

fix few typos in the text of Debug.tips and TODO.hp300 docs.

(andvar)

2023-09-08 18:51:19 UTC MAIN commitmail json YAML

s/Insruction/Instruction/

(andvar)

2023-09-04 12:24:07 UTC MAIN commitmail json YAML

fix printf format specifiers for ews4800mips BUS_DMA_DEBUG build option.

(andvar)

2023-09-03 21:43:48 UTC MAIN commitmail json YAML

remove duplicate "(unsigned *) &atmp" argument passed to dbl_to_sgl_fcnvfxt().

fixes build with TIMEX option enabled for hppa.

(andvar)

2023-09-03 20:52:13 UTC MAIN commitmail json YAML

remove (db_addr_t) cast in hppa PC_REGS(regs) definition.
rename tf_hptm to tf_cr24 in kgdb_hppa.c.
This name was lost from trapframe (frame.h) in v1.8 and restored as tf_cr24 in v1.12.

Fixes KGDB enabled build for hppa.

(andvar)

2023-09-03 19:38:58 UTC MAIN commitmail json YAML

config(5): enable NTP option implicitly when PPS_SYNC option is enabled.

PPS_SYNC requires NTP, but some code blocks are ifdef'ed without it,
thus allowing an attempt to build kernel with PPS_SYNC, and without NTP
(and it almost builds with one line change).

Update options(4) man page to reflect the change.

Solution suggested by riastradh.

(andvar)

2023-09-02 21:54:55 UTC MAIN commitmail json YAML

remove (db_addr_t) cast in sh3 PC_REGS(regs) definition.

Fixes KGDB build option for SH3/4 code.

(andvar)

2023-09-02 07:15:30 UTC MAIN commitmail json YAML

newsmips/sn(4): rename SONIC_DEBUG to SNDEBUG for consistency.

nix this option from i386/amd64 ALL configs, it isn't used anywhere anymore.

(andvar)

2023-09-01 11:23:39 UTC MAIN commitmail json YAML

2023-09-01 10:57:20 UTC MAIN commitmail json YAML

s/unnmapped/unmapped/ in comment.

(andvar)

2023-09-01 10:55:24 UTC MAIN commitmail json YAML

s/unnsupported/unsupported/ in message.

(andvar)

2023-09-01 08:53:52 UTC MAIN commitmail json YAML

fix typo in the type krandsource_t -> krndsource_t.

fixes RND_COM enabled build for epoc32.

(andvar)

2023-09-01 06:16:45 UTC MAIN commitmail json YAML

fix format specifiers for emips PHYSMEMDEBUG build option.

(andvar)

2023-08-30 20:17:06 UTC MAIN commitmail json YAML

s/Piccalo/Piccolo/ in device description.

(andvar)

2023-08-30 20:15:54 UTC MAIN commitmail json YAML

fix build for amiga MDINSTALL kernel config.
bppcsc0 and cbiiisc0 should attach to p5bus0 and p5bus to zbus0.

(andvar)

2023-08-30 19:07:04 UTC MAIN commitmail json YAML

atari/ser(4): constify "char *str" serstatus() argument to fix SER_DEBUG build.

(andvar)

2023-08-30 18:20:40 UTC MAIN commitmail json YAML

atari/fdc(4): fix printf format specifiers for FLP_DEBUG build.

(andvar)

2023-08-30 09:17:46 UTC MAIN commitmail json YAML

fix build for arc PCCONS/RPC44 kernel configs by replacing *pccons_isa_conf
definition with pccons_isavar.h include, which has extern declaration for it.

Discussed fix with phone@ via irc.

(andvar)

2023-08-29 21:55:11 UTC MAIN commitmail json YAML

arc/fdc(4): fix printf specifiers for FD_DEBUG build.

(andvar)

2023-08-29 21:34:51 UTC MAIN commitmail json YAML

fix typo NKSYM -> NKSYMS in one of #if directive conditions.
It may cause build failure, e.g. with DDB option disabled.

(andvar)

2023-08-29 21:23:14 UTC MAIN commitmail json YAML

remove broken #ifdef KADB code block in subr_prf.
kdbpanic() was seemingly MIPS only and removed back in 1997,
since mips/locore.S rev 1.31.
should fix builds with KADB option enabled (tested on arc).

(andvar)

2023-08-28 18:04:33 UTC MAIN commitmail json YAML

fix SFAS_DEBUG enabled build for acorn32:
declare dump_nexus(), dump_nexii(), dump_sfassoftc() than option is enabled.
fix specifier for nexus->dma[loop].ptr in printf().

(andvar)

2023-08-28 17:53:47 UTC MAIN commitmail json YAML

acorn32/fdc(4): fix modifiers blkno values to %lld and
fix typos in fr_r10-r12 variables (fh->fr).

Fixes acorn32 build with FD_DEBUG enabled option.

(andvar)

2023-08-28 09:22:26 UTC MAIN commitmail json YAML

rename DEBUG_UL to UL_DEBUG for naming consistency.
remove stray UL_DEBUG definition in grf_ul.c

(andvar)

2023-08-28 09:14:02 UTC MAIN commitmail json YAML

fix format specifier from %lx to %hx, cmd has a type of u_int16_t.

fixes DEBUG_UL build for amiga (will be renamed to UL_DEBUG in next commit).

(andvar)

2023-08-27 22:09:55 UTC MAIN commitmail json YAML

amiga/es(4): start_ptr/end_ptr are initialized with USEPKTBUF option only,
thus add this option check, when they are defined/used under ESDEBUG.

(andvar)

2023-08-27 19:48:19 UTC MAIN commitmail json YAML

amiga/grfcl(4): return prx, pry definition/assigment lost with rev 1.49,
however under CL_SHIFTSPRITE code block only, where it is used.

Fixes build with the CL_SHIFTSPRITE enabled option.

(andvar)

2023-08-27 18:36:55 UTC MAIN commitmail json YAML

amiga/toccata(4): define ad1848debug to fix AUDIO_DEBUG enabled amiga build.

The code is taken from sys/dev/isa/ad1848_isa.c for consistency.
Unsure, if new debug level variable wouldn't be better or it is needed at all.

(andvar)

2023-08-27 08:15:14 UTC MAIN commitmail json YAML

remove empty #ifdef DEBUG block.

(andvar)

2023-08-26 22:12:45 UTC MAIN commitmail json YAML

amiga/p5pb(4): move parent_dict definition/assignment to #if NGENFB > 0 block,
where it is only used in P5PB_CONSOLE code.

fixes P5PB_CONSOLE enabled build, no functional changes intended.

(andvar)

2023-08-26 21:20:48 UTC MAIN commitmail json YAML

amiga/fdc(4): revert bp->b_bcount format specifiers from %ld to %d,
changed in rev 1.62. b_bcount has a type of int.

fixes FDDEBUG build.

(andvar)

2023-08-26 21:03:53 UTC MAIN commitmail json YAML

s/interal/interval/ in comment.

(andvar)

2023-08-26 20:23:24 UTC MAIN commitmail json YAML

amiga/es(4): constify es_dump_smcregs char* argument to fix ESDEBUG build.

(andvar)

2023-08-24 14:56:03 UTC MAIN commitmail json YAML

2023-08-24 14:53:02 UTC MAIN commitmail json YAML

2023-08-24 14:21:40 UTC MAIN commitmail json YAML

s/MC_DFEAULTHZ/MC_DEFAULTHZ/ for alpha specific default rate definition.

(andvar)

2023-08-22 08:33:50 UTC MAIN commitmail json YAML

remove global sndebug definition. looks like historical leftover replaced
by SNDEBUG definition.

(andvar)

2023-08-22 07:13:33 UTC MAIN commitmail json YAML

newsmips: fix build with SNDEBUG option enabled.

It was broken since rev 1.21 24 years ago, and got more broken code later on:
remove leftover device_xname(sc->sc_dev) param from aprint_debug_dev in one block.
fix wrong method name devoce_xname to device_xname in second block.
rename et to eh for consistency, and define it (definition was removed in the past).
while here, improve the code with riastradh help to make it safer.

pullup to at least netbsd-10 is needed.

(andvar)

2023-08-19 19:21:34 UTC MAIN commitmail json YAML

remove likely accidental part of the comment.

(andvar)

2023-08-19 17:55:42 UTC MAIN commitmail json YAML

s/devicdes/devices/.

The question if those links should stay at all in see also section
(some irrelevant today).

(andvar)

2023-08-19 17:32:02 UTC MAIN commitmail json YAML

fix typos in documented error codes.

(andvar)

2023-08-17 14:21:19 UTC MAIN commitmail json YAML

s/logigally/logically/.

(andvar)

2023-08-17 14:19:50 UTC MAIN commitmail json YAML

2023-08-14 21:17:08 UTC MAIN commitmail json YAML

s/streadming/streaming/ in debug message.

(andvar)

2023-08-13 22:06:44 UTC MAIN commitmail json YAML

2023-08-10 20:02:56 UTC MAIN commitmail json YAML

2023-08-10 19:13:52 UTC MAIN commitmail json YAML

s/VAXststions/VAXstations/ in comment.

(andvar)

2023-08-10 06:44:12 UTC MAIN commitmail json YAML

2023-08-10 06:38:15 UTC MAIN commitmail json YAML

2023-08-10 06:23:28 UTC MAIN commitmail json YAML

2023-08-10 06:22:48 UTC MAIN commitmail json YAML

rename PCI to PCIE for naming consistency.

(andvar)

2023-08-09 09:36:26 UTC MAIN commitmail json YAML

viadrmums(4): build legacy VIA DRM UMS driver module for amd64.

This driver is not built-in by default, thus loadable module can help (un)lucky
owners of 64-bit capable VIA (Nano/Eden) systems or early AMD/Intel systems
with some VIA chipsets, which include VIA integrated graphics.
I also boldly added product IDs for few later models from VX8xx/VX9xx chipsets
without 3D support (DX9_0) to "expand" the driver support to more systems.
Tested successfully basic functionality on VX800, and partially successfully
on VX900 (on VX900 Xorg failed to initialize due to openchrome related issues,
viadrmums attaches and it is by used the driver).
Didn't test on VX855, I don't have one.

Pull up to netbsd-10 is needed.

(andvar)

2023-08-05 20:24:10 UTC MAIN commitmail json YAML

2023-08-05 20:23:41 UTC MAIN commitmail json YAML

fix duplicate definition.

(andvar)

2023-08-05 20:09:14 UTC MAIN commitmail json YAML

2023-08-05 20:08:04 UTC MAIN commitmail json YAML

Add device ids of the VX800 chipset and s3 chrome 500 series GPU.
Descriptions mainly aligned with VX800/820 Series System Programming Manual.

(andvar)

2023-08-05 09:25:39 UTC MAIN commitmail json YAML

s/acccept/accept/ in comment.

(andvar)

2023-08-03 20:45:50 UTC MAIN commitmail json YAML

2023-08-01 21:26:28 UTC MAIN commitmail json YAML

2023-08-01 20:52:44 UTC MAIN commitmail json YAML

s/diabling/disabling/ in comment.

(andvar)

2023-08-01 20:50:11 UTC MAIN commitmail json YAML

2023-08-01 20:46:01 UTC MAIN commitmail json YAML

2023-08-01 20:41:48 UTC MAIN commitmail json YAML

s/diabled/disabled/.

(andvar)

2023-08-01 20:39:16 UTC MAIN commitmail json YAML

s/intrerrupt/interrupt/.

(andvar)

2023-08-01 20:09:12 UTC MAIN commitmail json YAML

2023-07-31 21:07:50 UTC MAIN commitmail json YAML

s/proceeedings/proceedings/ in comment.

(andvar)

2023-07-31 20:58:57 UTC MAIN commitmail json YAML

2023-07-31 20:48:04 UTC MAIN commitmail json YAML

2023-07-23 21:06:52 UTC MAIN commitmail json YAML

2023-07-15 21:41:26 UTC MAIN commitmail json YAML

2023-06-29 21:01:21 UTC MAIN commitmail json YAML

s/determin /determine / in comment.

(andvar)

2023-06-27 19:30:27 UTC MAIN commitmail json YAML

remove double/tripple o in comments, where it likely was not added on purpose.

(andvar)

2023-06-26 10:57:09 UTC MAIN commitmail json YAML

s/privious/previous/ in comment.

(andvar)

2023-06-25 15:36:12 UTC MAIN commitmail json YAML

s/responible/responsible/ in comment.

(andvar)

2023-06-16 20:01:20 UTC MAIN commitmail json YAML

2023-06-16 19:40:46 UTC MAIN commitmail json YAML

s/curent/current/ in comment.

(andvar)

2023-06-03 20:41:45 UTC MAIN commitmail json YAML

2023-06-03 19:57:33 UTC MAIN commitmail json YAML

fix typo xbase-obsolet -> xbase-obsolete.

(andvar)

2023-06-02 08:51:48 UTC MAIN commitmail json YAML

2023-06-01 20:15:16 UTC MAIN commitmail json YAML

2023-05-29 21:16:58 UTC MAIN commitmail json YAML

mdnsd(8): restore fixes for PR bin/46758, lost on resolving merge conflicts.
Original commit message from Roy Marples:
"Derive our primary interface and address by trying to connect to an
address in the TEST-NET-2 network as noted in RFC5737 instead of using
the 1.1.1.1 address. Also, use port 7 (echo) for better style.
Fixes PR bin/46758 thanks to Lloyd Parkes."

pullups needed for netbsd-9, netbsd-10.

(andvar)

2023-05-28 08:21:24 UTC MAIN commitmail json YAML

s/Resture/Restore/ and s/restared/restarted/ in comments.

(andvar)

2023-05-28 08:09:34 UTC MAIN commitmail json YAML

s/explcit/explicit/ in comment.

(andvar)

2023-05-28 08:01:46 UTC MAIN commitmail json YAML

s/sessoin/session/ in warning message.

(andvar)

2023-05-27 21:38:06 UTC MAIN commitmail json YAML

2023-05-27 17:58:59 UTC MAIN commitmail json YAML

reapply changes for the built-in drop-privs support by tsarna.
this commit doesn't reapply "dumping of the unicast server list
to the DumpStateLog debugging output" enhancement.
It doesn't build anymore, no idea how to rewrite.
Should fix PR 57442. Needs pull-ups for netbsd-9, netbsd-10.

(andvar)

2023-05-26 21:40:46 UTC MAIN commitmail json YAML

Fix potential null dereference by simply adding last_gd != NULL check
around the code block with last_gd usage after the inner loop.
It may mainly happen on bus_dmamap_load error.
Reported by Mootja _14, 2017.

(andvar)

2023-05-26 20:50:21 UTC MAIN commitmail json YAML

include arm/arm32/pte.h to gemini_ipm.c to fix GEMINI_MASTER/SLAVE config builds.
They fail with 'L1_S_SIZE' undeclared error otherwise from gemini.h declarations.
gemini_machdep.c includes it transitively, thus doesn't faili on GEMINI config.
Likely nobody is using them anyway though...

(andvar)

2023-05-26 06:36:39 UTC MAIN commitmail json YAML

set error to EIO on SKEY_ABORTED_COMMAND.
It is usually the case for other SCSI drivers, though they do implement retries too.
potentially same should be committed to prep(?).
discussed with riastradh.

(andvar)

2023-05-26 06:27:51 UTC MAIN commitmail json YAML

initialize error on definition to fix 'error' may not be initialized issue.
the commit unifies code between bebox and prep machines.
reported by Mootja _08.

(andvar)

2023-05-23 10:22:42 UTC MAIN commitmail json YAML

s/configuratin/configuration/ in comment, from Brad Harder (bch) by email.

(andvar)

2023-05-21 18:01:38 UTC MAIN commitmail json YAML

2023-05-15 20:54:53 UTC MAIN commitmail json YAML

+LRO Large Receive Offload, +RSC Receive Segment Coalescing (win counterpart)
PR 57408

(andvar)

2023-05-13 11:48:19 UTC MAIN commitmail json YAML

change a typo in sizeof(struct queueue *) to sizeof(nqueue[0])
riastradh recommends using array[0] instead of pointer.

(andvar)

2023-05-13 11:30:28 UTC MAIN commitmail json YAML

fix typo in unused definition s/ESA_KDATA_OUEUE_LEFT/ESA_KDATA_QUEUE_LEFT/.

(andvar)

2023-05-13 11:27:10 UTC MAIN commitmail json YAML

s/requied/required/ in comments (likely grammar should be also improved in the
future).

(andvar)

2023-05-13 11:19:20 UTC MAIN commitmail json YAML

2023-05-08 19:23:45 UTC MAIN commitmail json YAML

fix the grammar in comments reported by Jim Spath in misc/57397.

(andvar)

2023-05-07 11:41:49 UTC MAIN commitmail json YAML

2023-05-06 22:17:28 UTC MAIN commitmail json YAML

2023-05-06 21:53:27 UTC MAIN commitmail json YAML

2023-05-06 21:37:37 UTC MAIN commitmail json YAML

s/Registre/Register/ in comment.

(andvar)

2023-05-06 21:34:40 UTC MAIN commitmail json YAML

2023-05-01 11:57:53 UTC MAIN commitmail json YAML

s/betwen/between/ and s/singed/signed/.

(andvar)

2023-04-28 22:31:38 UTC MAIN commitmail json YAML

2023-04-28 22:23:45 UTC MAIN commitmail json YAML

one more place for recently fixed typo, s/phisycal/physical/.

(andvar)

2023-04-05 21:53:57 UTC MAIN commitmail json YAML

2023-04-05 21:46:09 UTC MAIN commitmail json YAML

s/esssentially/essentially/ in comment.

(andvar)

2023-04-05 19:56:27 UTC MAIN commitmail json YAML

s/termintaed/terminated/ in comment.

(andvar)

2023-03-28 20:10:02 UTC MAIN commitmail json YAML

s/ourput/output/ in comment.

(andvar)

2023-03-28 20:01:58 UTC MAIN commitmail json YAML

2023-03-26 19:10:34 UTC MAIN commitmail json YAML

2023-03-26 15:24:22 UTC MAIN commitmail json YAML

2023-03-26 15:12:34 UTC MAIN commitmail json YAML

s/diplay/display/ and s/DIPPLAY/DISPLAY/ in comments.

(andvar)

2023-03-26 15:08:24 UTC MAIN commitmail json YAML

2023-03-25 21:51:12 UTC MAIN commitmail json YAML

s/resultion/resolution/ in comment.

(andvar)

2023-03-25 21:47:10 UTC MAIN commitmail json YAML

s/Predective/Predictive/ and s/dedected/detected/ in comments.

(andvar)

2023-03-25 21:35:49 UTC MAIN commitmail json YAML

s/deteted/detected/ in log message.

(andvar)

2023-03-25 21:33:46 UTC MAIN commitmail json YAML

s/deteced/detected/ and s/couner/counter/ in comments.

(andvar)

2023-03-17 17:16:06 UTC MAIN commitmail json YAML

s/Brigthness/Brightness/ in comment.

(andvar)

2023-03-17 17:12:54 UTC MAIN commitmail json YAML

s/enougth/enough/

(andvar)

2023-03-06 21:39:06 UTC MAIN commitmail json YAML

2023-03-05 18:03:35 UTC MAIN commitmail json YAML

2023-02-27 22:00:25 UTC MAIN commitmail json YAML

fix some typos in comments.

(andvar)

2023-02-26 22:55:02 UTC MAIN commitmail json YAML

s/superblok/superblock/ in comment.

(andvar)

2023-02-21 22:13:02 UTC MAIN commitmail json YAML

2023-02-19 21:35:07 UTC MAIN commitmail json YAML

s/collsions/collisions/ in comment.

(andvar)

2023-02-14 20:27:17 UTC MAIN commitmail json YAML

s/programm/program/ and s/suuport/support/ in comments and message.

(andvar)

2023-02-13 23:14:21 UTC MAIN commitmail json YAML

s/chacters/characters/ in comments.

(andvar)

2023-02-13 23:02:27 UTC MAIN commitmail json YAML

2023-02-13 22:44:52 UTC MAIN commitmail json YAML

s/charater/character/ in one more comment.

(andvar)

2023-02-13 22:24:06 UTC MAIN commitmail json YAML

s/plyaback/playback/ in comment.

(andvar)

2023-02-12 16:28:32 UTC MAIN commitmail json YAML

2023-02-12 16:04:58 UTC MAIN commitmail json YAML

2023-02-12 14:59:22 UTC MAIN commitmail json YAML

fix typo in the include guard definition.

(andvar)