Bug#997663: general: bullseye, system freezes completely when firefox freezes

2021-10-24 Thread jacobkochems
Hello Stephan,

> Possibly relevant:
> - Are you using X11 or Wayland?
Wayland

> - Do you have proprietary graphics drivers installed?
$ lspci -v | grep -A 10 VGA
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 620
(rev 02) (prog-if 00 [VGA controller])
Subsystem: CLEVO/KAPOK Computer HD Graphics 620
[...]
Kernel driver in use: i915
Kernel modules: i915
It seems to be the open source driver 'i915' in the package:
'xserver-xorg-video-intel'.

> - Does the freeze occur without those?
Does not apply. No proprietary graphics drivers installed.

> - Can you SSH into the machine after the screen/input freezes
Interesting idea. I will install 'openssh-server' and try this the next
time.

> - Do you have other indications that the machine is still working?
I'm not sure. Maybe I can try the keyboard backlight function?
Or the Fn+Special-Function-Keys like: Volume or Display-Brightness ?

Thank you very much for your time.

Regards,
Jacob



Bug#997663: general: bullseye, system freezes completely when firefox freezes

2021-10-24 Thread jacobkochems
Now that you mention it, often times it happened on battery power but I
couldn't swear that it didn't on AC.

Am Sonntag, dem 24.10.2021 um 09:13 -0300 schrieb Antonio Terceiro:
> On Sun, Oct 24, 2021 at 12:25:23PM +0200,
> jacobkoch...@gmail.com wrote:
> > Hello Stephan,
> > 
> > > Possibly relevant:
> > > - Are you using X11 or Wayland?
> > Wayland
> > 
> > > - Do you have proprietary graphics drivers installed?
> > $ lspci -v | grep -A 10 VGA
> > 00:02.0 VGA compatible controller: Intel Corporation HD Graphics
> > 620
> > (rev 02) (prog-if 00 [VGA controller])
> > Subsystem: CLEVO/KAPOK Computer HD Graphics 620
> > [...]
> > Kernel driver in use: i915
> > Kernel modules: i915
> > It seems to be the open source driver 'i915' in the package:
> > 'xserver-xorg-video-intel'.
> > 
> > > - Does the freeze occur without those?
> > Does not apply. No proprietary graphics drivers installed.
> > 
> > > - Can you SSH into the machine after the screen/input freezes
> > Interesting idea. I will install 'openssh-server' and try this the
> > next
> > time.
> > 
> > > - Do you have other indications that the machine is still
> > > working?
> > I'm not sure. Maybe I can try the keyboard backlight function?
> > Or the Fn+Special-Function-Keys like: Volume or Display-Brightness
> > ?
> 
> Does this only happen when on battery power?
> 
> There is https://gitlab.freedesktop.org/drm/intel/-/issues/3510 which
> looks similar, and happens to me.



Bug#997663: general: bullseye, system freezes completely when firefox freezes

2021-10-24 Thread jacobkochems
I just wrote an Email to the manufacturer of my "TUXEDO InfinityBook
Pro 13" and referenced this bug report. They sell specifically Linux
suited Hardware. Since they offer a Distro of their own I hope they can
shed some light on the hardware issues raised here. If there are some
special kernel parameters to be set they should know about it.

Also, I tried to provoke the system freeze with a memory bomb:
> #include 
> #include 
> 
> #define KIB 1024
> #define MIB (KIB * KIB)
> #define ALLOC_MIB 10
> #define ALLOC_SIZE (ALLOC_MIB * MIB)
> 
> int main (void)
> {
>   int totalMiB = 0;
> 
>   printf("membomb: started\n");
>   while (1)
>   {
> if ( malloc(ALLOC_SIZE) == NULL )
> {
>   printf("membomb: malloc() failed, exiting\n");
>   return 1;
> }
>   totalMiB += ALLOC_MIB;
>   printf("membomb: total memory allocated: %d MiB\n", totalMiB);
>   }
>   return 0;
> }
I tried this on AC and on Battery to no avail I'm afraid. After some
sluggish input behaviour the system kills the process, as it should.
Maybe I need to consume the memory of the graphic chip? For Intel HD
Graphics, is that even a separate thing?

Regards,
Jacob