]> xenbits.xensource.com Git - osstest.git/commitdiff
bookworm: Extend ARM clock workaround
authorAnthony PERARD <anthony.perard@citrix.com>
Wed, 18 Oct 2023 13:50:01 +0000 (14:50 +0100)
committerAnthony PERARD <anthony.perard@citrix.com>
Thu, 28 Mar 2024 16:51:52 +0000 (16:51 +0000)
Still broken on arndale, serial stop working early, then the machine
timeout when working on creating a xen guest with xen-create-guest.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Osstest/Debian.pm

index 4f07cdef6fc999b5e42f0c10d2044a1f22e2849b..68f1be60f42d3bbe3ae2a30313b7345bd372aa6a 100644 (file)
@@ -253,8 +253,10 @@ END
        my @xenkopt = @kopt;
        push @xenkopt, $xenkopt;
        # https://bugs.xenproject.org/xen/bug/45
+       # #45 - arm: domain 0 disables clocks which are in fact being used
+       # https://lore.kernel.org/xen-devel/1414672390.2064.31.camel@citrix.com/
        push @xenkopt, "clk_ignore_unused"
-           if $ho->{Suite} =~ m/wheezy|jessie|stretch|buster/;
+           if $ho->{Suite} =~ m/wheezy|jessie|stretch|buster|bookworm/;
 
        $xenkopt = join ' ', @xenkopt;
        logm("Dom0 Linux options: $xenkopt");