On Thu, 11 Nov 2021, Damien Miller wrote:
> Hi,
>
> Snaps is now carrying a change to ssh/sshd that converts their
> mainloops from select(2) to poll/ppoll(2). This change should be
> completely transparent, but please be on the lookout for any weird
> behaviour. Bugs in the revised mainloop are
Hi,
I've updated the X server in Xenocara to version 21.1.1, together with
Freetype (2.11.0) and fontconfig 2.13.94.
One of the visible change of this update is that some LCD panels now
report their real physical dimensions to the X server, rather than
just computing it based on a default resolut
> Date: Fri, 12 Nov 2021 13:37:47 +0100
> From: Stefan Sperling
>
> This tid variable is used as an array index and must thus be smaller
> than MAX_TID_COUNT (which is 8).
>
> The variable will be set to 8 if the AP wants us to use TID 8 for Rx agg,
> which I've never seen happen in practice, th
> Date: Fri, 12 Nov 2021 13:22:06 +0100
> From: Stefan Sperling
>
> The iwx Tx ring array is one entry too short due to an off-by-one error.
>
> Fortunately, this bug is harmless. The last Tx agg queue is never used
> because ieee80211_classify() only returns TID values in the range 0 - 3.
> And
This is something I missed to do easy btrace check like:
syscall:exit:entry,
syscall:fork:entry,
syscall:sigaction:entry,
syscall:execve:entry,
syscall:open:entry { @[probe] = count(); }
This will produce something like this as output:
@[syscall:open:entry]: 844
@[syscall:sigaction:entry]: 480
@[s
On Mon, Nov 08, 2021 at 10:59:55AM +0100, Stefan Sperling wrote:
> iwx(4) has an issue which occurs very occasionally for me (every couple
> of days or sometimes even weeks) where ssh(1) fails to connect until the
> interface is reset with ifconfig down/up.
>
> The initial protocol exchange with t
This tid variable is used as an array index and must thus be smaller
than MAX_TID_COUNT (which is 8).
The variable will be set to 8 if the AP wants us to use TID 8 for Rx agg,
which I've never seen happen in practice, though it is possible.
Our driver uses this value as an index into an array of
The iwx Tx ring array is one entry too short due to an off-by-one error.
Fortunately, this bug is harmless. The last Tx agg queue is never used
because ieee80211_classify() only returns TID values in the range 0 - 3.
And iterations over the txq array use nitems() to find the upper bound.
The poss
On Thu, Nov 11, 2021 at 05:09:35PM -0800, Greg Steuck wrote:
> Anton Lindqvist writes:
>
> > On Thu, Nov 11, 2021 at 03:29:15PM +0100, Anton Lindqvist wrote:
> >> Hi,
> >> The second attempt to solve the uhidev claim multiple report ids
> >> conflict didn't work out either as it broke fido(4). Si