Re: weird behavior with timeout(1) in a script

2022-10-23 Thread Klemens Nanni
On Fri, Oct 21, 2022 at 03:50:41PM +0200, Solene Rapenne wrote: > hi > > I found a weird behavior trying to use timeout(1) in a script with > interactive commands. My use case is to ask for unlocking /home > from /etc/rc.local but continue if I don't type it in time. > > this is working: > >

Re: compress: remove cat_opts and decomp_opts, add static

2022-10-23 Thread Klemens Nanni
On Sat, Oct 22, 2022 at 02:09:40PM -0600, Todd C. Miller wrote: > The cat_opts and decomp_opts fields in struct compressor are unused > so just remove them. Also mark functions unused outside of main.c > as static. OK kn

Re: [acpi] patch to run _INI methods before table devices attach

2022-10-23 Thread Chris Waddey
On Sun, Oct 23, 2022 at 05:51:41PM +0300, Mikhail wrote: > On Sun, Oct 23, 2022 at 08:32:47AM -0600, Chris Waddey wrote: > > So I've been following the work on this because I have a lenovo laptop > > as well and the first patch you sent in I applied and have had > > everything working that I expect

vmt: read ifnetlist/addresses with shared net lock

2022-10-23 Thread Klemens Nanni
vmt(4) reads MAC and IP addresses periodically through a task on the kernel locked system task queue `systq'. vmt_nicinfo_task() grabs the exclusive net lock which protects the interface list and addresses, but it only reads and thus may grab the shared net lock. Again, not a big difference due t