Re: ldapd: adding bsd.schema

2020-09-09 Thread Robert Klein
On Sat, 5 Sep 2020 18:47:08 -0400 Aisha Tammy wrote: > Sorry for the late reply. > > On 8/12/20 8:19 AM, Robert Klein wrote: > > Hi, > > > > On Wed, 12 Aug 2020 09:00:18 +0200 > > Theo Buehler wrote: > > > >> On Tue, Aug 11, 2020 at 10:22:51PM -0400, Aisha Tammy wrote: > >>> Another bump. >

Re: PATCH: Fix PCI Config Space union size on VMM

2020-09-09 Thread Mike Larkin
On Mon, Sep 07, 2020 at 06:03:00PM -0500, Jordan Hargrave wrote: > This code fixes the pci device union for accessing PCI config space >= 0x40 > > Running pcidump -xxx in a virtual machine would return garbage data due to > union overlap > Thanks, looks good from my perspective. -ml > On Mon, S

Re: issignal() w/o KERNEL_LOCK()

2020-09-09 Thread Claudio Jeker
On Wed, Sep 09, 2020 at 06:23:22PM +0200, Martin Pieuchot wrote: > On 09/09/20(Wed) 10:02, Claudio Jeker wrote: > > On Wed, Sep 09, 2020 at 08:33:30AM +0200, Martin Pieuchot wrote: > > > Per-process data structures needed to suspend the execution of threads > > > are since recently protected by the

Re: issignal() w/o KERNEL_LOCK()

2020-09-09 Thread Martin Pieuchot
On 09/09/20(Wed) 10:02, Claudio Jeker wrote: > On Wed, Sep 09, 2020 at 08:33:30AM +0200, Martin Pieuchot wrote: > > Per-process data structures needed to suspend the execution of threads > > are since recently protected by the SCHED_LOCK(). So the KERNEL_LOCK() > > dance inside issignal() is no lo

Re: sigismasked()

2020-09-09 Thread Paul Irofti
On 2020-09-09 09:35, Martin Pieuchot wrote: Simple helper function to centralize the manipulation of `ps_sigignore' and `p_sigmask' in kern/kern_sig.c and later on add the corresponding asserts, ok? Yes please! OK pirofti@ Index: kern/kern_sig.c ==

Re: [WIP FAQ13] New section for webcam usage

2020-09-09 Thread Laurence Tratt
On Tue, Sep 08, 2020 at 07:13:10PM +0200, Stefan Hagen wrote: Hello Stefan, > An audio device is special in a way that it has playback and recording > capabilities in one device. The sysctl is used to allow playback (by > default) but not allow recording. > > Video (as in webcam) is always a reco

Re: issignal() w/o KERNEL_LOCK()

2020-09-09 Thread Claudio Jeker
On Wed, Sep 09, 2020 at 08:33:30AM +0200, Martin Pieuchot wrote: > Per-process data structures needed to suspend the execution of threads > are since recently protected by the SCHED_LOCK(). So the KERNEL_LOCK() > dance inside issignal() is no longer necessary and can be removed, ok? This is not q