]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
examples: systemtap: Update to linux-6.3 (rc1)
authorPeter Krempa <pkrempa@redhat.com>
Mon, 6 Mar 2023 10:17:42 +0000 (11:17 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Mon, 6 Mar 2023 12:35:44 +0000 (13:35 +0100)
The 'vmsa' struct was moved out of 'struct vcpu_svm' into the 'sev_es'
sub-struct in linux commit:

  commit b67a4cc35c9f726999fa29880713ce72d4e39e8d
  Author: Peter Gonda <pgonda@google.com>
  Date:   Thu Oct 21 10:42:59 2021 -0700

      KVM: SEV: Refactor out sev_es_state struct

      Move SEV-ES vCPU metadata into new sev_es_state struct from vcpu_svm.

Also update the line reference to have more margin.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
examples/systemtap/amd-sev-es-vmsa.stp

index 7bd079be71f5c539aa3935ca7ed7ba025c95f380..2ac0b6eb53d380f3ed3b38993ceab935077d13b5 100644 (file)
@@ -46,7 +46,7 @@ function dump_vmsa(addr:long) {
 # is the one beween the call to clflush_cache_range(...) and the
 # call to sev_issue_cmd(kvm, SEV_CMD_LAUNCH_UPDATE...).
 #
-# Line 632 is correct for Linux v6.0
-probe module("kvm_amd").statement("__sev_launch_update_vmsa@arch/x86/kvm/svm/sev.c:632") {
-  dump_vmsa($svm->vmsa)
+# Line 635 is correct for Linux v6.3
+probe module("kvm_amd").statement("__sev_launch_update_vmsa@arch/x86/kvm/svm/sev.c:635") {
+  dump_vmsa($svm->sev_es->vmsa)
 }