NetBSD-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: automount(?) hang with NetBSD 11.0_RC6



> Date: Tue, 21 Jul 2026 18:20:02 +0000
> From: Taylor R Campbell <riastradh%NetBSD.org@localhost>
> 
> As a quick experiment, you could also try to see if this is a missed
> wakeup on memory pressure relief by running (from ddb only, not
> crash(8)):
> 
> call wakeup(0x10)
> continue

Correction, that should have been:

call wakeup(uvmexp+0x10)
continue

(Both calls are generally safe to try; wakeup won't dereference the
argument you give as a pointer -- it will only walk an existing data
structure and compare against the argument for equality to decide what
threads to wake up, if any.  So most likely, the worst case is that
the system will just remain stuck as before when you continue from
ddb.)


Home | Main Index | Thread Index | Old Index