* [Intel-wired-lan] [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with ice_vf_reconfig_vsi()
@ 2023-07-12 20:47 Jacob Keller
2023-07-12 21:08 ` Przemek Kitszel
2023-07-12 21:57 ` Keller, Jacob E
0 siblings, 2 replies; 4+ messages in thread
From: Jacob Keller @ 2023-07-12 20:47 UTC (permalink / raw)
To: Intel Wired LAN, Anthony Nguyen
The ice_vf_create_vsi() function and its VF ops helper introduced by commit
a4c785e8162e ("ice: convert vf_ops .vsi_rebuild to .create_vsi") are used
during an individual VF reset to re-create the VSI. This was done in order
to ensure that the VSI gets properly reconfigured within the hardware.
This is somewhat heavy handed as we completely release the VSI memory and
structure, and then create a new VSI. This can also potentially force a
change of the VSI index as we will re-use the first open slot in the VSI
array which may not be the same.
As part of implementing devlink reload, commit 6624e780a577 ("ice: split
ice_vsi_setup into smaller functions") split VSI setup into smaller
functions, introducing both ice_vsi_cfg() and ice_vsi_decfg() which can be
used to configure or deconfigure an existing software VSI structure.
Rather than completely removing the VSI and adding a new one using the
.create_vsi() VF operation, simply use ice_vsi_decfg() to remove the
current configuration. Save the VSI type and then call ice_vsi_cfg() to
reconfigure the VSI as the same type that it was before. Since this might
update the hardware VSI number, we also must update the vf->lan_vsi_num
field to match.
This new operation does not re-create the VSI, so rename it to
ice_vf_reconfig_vsi().
The new approach can safely share the exact same flow for both SR-IOV VFs
as well as the Scalable IOV VFs being worked on. This uses less code and is
a better abstraction over fully deleting the VSI and adding a new one.
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
---
Changes since v1:
* resend, since v1 appears to have been discarded
* dropped Fixes tag, since this is going to target next
drivers/net/ethernet/intel/ice/ice_sriov.c | 19 ------------
drivers/net/ethernet/intel/ice/ice_vf_lib.c | 34 +++++++++++++++------
drivers/net/ethernet/intel/ice/ice_vf_lib.h | 1 -
3 files changed, 24 insertions(+), 30 deletions(-)
diff --git a/drivers/net/ethernet/intel/ice/ice_sriov.c b/drivers/net/ethernet/intel/ice/ice_sriov.c
index 1f66914c7a20..ab96a5596d09 100644
--- a/drivers/net/ethernet/intel/ice/ice_sriov.c
+++ b/drivers/net/ethernet/intel/ice/ice_sriov.c
@@ -733,24 +733,6 @@ static void ice_sriov_clear_reset_trigger(struct ice_vf *vf)
ice_flush(hw);
}
-/**
- * ice_sriov_create_vsi - Create a new VSI for a VF
- * @vf: VF to create the VSI for
- *
- * This is called by ice_vf_recreate_vsi to create the new VSI after the old
- * VSI has been released.
- */
-static int ice_sriov_create_vsi(struct ice_vf *vf)
-{
- struct ice_vsi *vsi;
-
- vsi = ice_vf_vsi_setup(vf);
- if (!vsi)
- return -ENOMEM;
-
- return 0;
-}
-
/**
* ice_sriov_post_vsi_rebuild - tasks to do after the VF's VSI have been rebuilt
* @vf: VF to perform tasks on
@@ -770,7 +752,6 @@ static const struct ice_vf_ops ice_sriov_vf_ops = {
.poll_reset_status = ice_sriov_poll_reset_status,
.clear_reset_trigger = ice_sriov_clear_reset_trigger,
.irq_close = NULL,
- .create_vsi = ice_sriov_create_vsi,
.post_vsi_rebuild = ice_sriov_post_vsi_rebuild,
};
diff --git a/drivers/net/ethernet/intel/ice/ice_vf_lib.c b/drivers/net/ethernet/intel/ice/ice_vf_lib.c
index b26ce4425f45..0edb2e2ec681 100644
--- a/drivers/net/ethernet/intel/ice/ice_vf_lib.c
+++ b/drivers/net/ethernet/intel/ice/ice_vf_lib.c
@@ -265,29 +265,43 @@ static void ice_vf_pre_vsi_rebuild(struct ice_vf *vf)
}
/**
- * ice_vf_recreate_vsi - Release and re-create the VF's VSI
- * @vf: VF to recreate the VSI for
+ * ice_vf_reconfig_vsi - Reconfigure a VF VSI with the device
+ * @vf: VF to reconfigure the VSI for
*
- * This is only called when a single VF is being reset (i.e. VVF, VFLR, host
- * VF configuration change, etc)
+ * This is called when a single VF is being reset (i.e. VVF, VFLR, host VF
+ * configuration change, etc).
*
- * It releases and then re-creates a new VSI.
+ * It brings the VSI down and then reconfigures it with the hardware.
*/
-static int ice_vf_recreate_vsi(struct ice_vf *vf)
+static int ice_vf_reconfig_vsi(struct ice_vf *vf)
{
+ struct ice_vsi *vsi = ice_get_vf_vsi(vf);
+ struct ice_vsi_cfg_params params = {};
struct ice_pf *pf = vf->pf;
int err;
- ice_vf_vsi_release(vf);
+ if (WARN_ON(!vsi))
+ return -EINVAL;
- err = vf->vf_ops->create_vsi(vf);
+ params = ice_vsi_to_params(vsi);
+ params.flags = ICE_VSI_FLAG_INIT;
+
+ ice_vsi_decfg(vsi);
+
+ err = ice_vsi_cfg(vsi, ¶ms);
if (err) {
dev_err(ice_pf_to_dev(pf),
- "Failed to recreate the VF%u's VSI, error %d\n",
+ "Failed to reconfigure the VF%u's VSI, error %d\n",
vf->vf_id, err);
return err;
}
+ /* Update the lan_vsi_num field since it might have been changed. The
+ * PF lan_vsi_idx number remains the same so we don't need to change
+ * that.
+ */
+ vf->lan_vsi_num = vsi->vsi_num;
+
return 0;
}
@@ -699,7 +713,7 @@ int ice_reset_vf(struct ice_vf *vf, u32 flags)
ice_vf_pre_vsi_rebuild(vf);
- if (ice_vf_recreate_vsi(vf)) {
+ if (ice_vf_reconfig_vsi(vf)) {
dev_err(dev, "Failed to release and setup the VF%u's VSI\n",
vf->vf_id);
err = -EFAULT;
diff --git a/drivers/net/ethernet/intel/ice/ice_vf_lib.h b/drivers/net/ethernet/intel/ice/ice_vf_lib.h
index 67172fdd9bc2..ad648009a238 100644
--- a/drivers/net/ethernet/intel/ice/ice_vf_lib.h
+++ b/drivers/net/ethernet/intel/ice/ice_vf_lib.h
@@ -62,7 +62,6 @@ struct ice_vf_ops {
bool (*poll_reset_status)(struct ice_vf *vf);
void (*clear_reset_trigger)(struct ice_vf *vf);
void (*irq_close)(struct ice_vf *vf);
- int (*create_vsi)(struct ice_vf *vf);
void (*post_vsi_rebuild)(struct ice_vf *vf);
};
base-commit: 8d5bc02673a4fa9f5db4e9e949f41cfc68ae1758
--
2.41.0.1.g9857a21e0017.dirty
_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Intel-wired-lan] [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with ice_vf_reconfig_vsi()
2023-07-12 20:47 [Intel-wired-lan] [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with ice_vf_reconfig_vsi() Jacob Keller
@ 2023-07-12 21:08 ` Przemek Kitszel
2023-07-12 21:57 ` Keller, Jacob E
1 sibling, 0 replies; 4+ messages in thread
From: Przemek Kitszel @ 2023-07-12 21:08 UTC (permalink / raw)
To: Jacob Keller, Intel Wired LAN, Anthony Nguyen
On 7/12/23 22:47, Jacob Keller wrote:
> The ice_vf_create_vsi() function and its VF ops helper introduced by commit
> a4c785e8162e ("ice: convert vf_ops .vsi_rebuild to .create_vsi") are used
> during an individual VF reset to re-create the VSI. This was done in order
> to ensure that the VSI gets properly reconfigured within the hardware.
>
> This is somewhat heavy handed as we completely release the VSI memory and
> structure, and then create a new VSI. This can also potentially force a
> change of the VSI index as we will re-use the first open slot in the VSI
> array which may not be the same.
>
> As part of implementing devlink reload, commit 6624e780a577 ("ice: split
> ice_vsi_setup into smaller functions") split VSI setup into smaller
> functions, introducing both ice_vsi_cfg() and ice_vsi_decfg() which can be
> used to configure or deconfigure an existing software VSI structure.
>
> Rather than completely removing the VSI and adding a new one using the
> .create_vsi() VF operation, simply use ice_vsi_decfg() to remove the
> current configuration. Save the VSI type and then call ice_vsi_cfg() to
> reconfigure the VSI as the same type that it was before. Since this might
> update the hardware VSI number, we also must update the vf->lan_vsi_num
> field to match.
>
> This new operation does not re-create the VSI, so rename it to
> ice_vf_reconfig_vsi().
>
> The new approach can safely share the exact same flow for both SR-IOV VFs
> as well as the Scalable IOV VFs being worked on. This uses less code and is
> a better abstraction over fully deleting the VSI and adding a new one.
>
> Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
> ---
> Changes since v1:
> * resend, since v1 appears to have been discarded
> * dropped Fixes tag, since this is going to target next
>
> drivers/net/ethernet/intel/ice/ice_sriov.c | 19 ------------
> drivers/net/ethernet/intel/ice/ice_vf_lib.c | 34 +++++++++++++++------
> drivers/net/ethernet/intel/ice/ice_vf_lib.h | 1 -
> 3 files changed, 24 insertions(+), 30 deletions(-)
This makes things work better, thanks!
Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Intel-wired-lan] [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with ice_vf_reconfig_vsi()
2023-07-12 20:47 [Intel-wired-lan] [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with ice_vf_reconfig_vsi() Jacob Keller
2023-07-12 21:08 ` Przemek Kitszel
@ 2023-07-12 21:57 ` Keller, Jacob E
2023-07-20 17:48 ` Romanowski, Rafal
1 sibling, 1 reply; 4+ messages in thread
From: Keller, Jacob E @ 2023-07-12 21:57 UTC (permalink / raw)
To: Intel Wired LAN, Nguyen, Anthony L
> -----Original Message-----
> From: Keller, Jacob E <jacob.e.keller@intel.com>
> Sent: Wednesday, July 12, 2023 1:48 PM
> To: Intel Wired LAN <intel-wired-lan@lists.osuosl.org>; Nguyen, Anthony L
> <anthony.l.nguyen@intel.com>
> Cc: Keller, Jacob E <jacob.e.keller@intel.com>
> Subject: [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with
> ice_vf_reconfig_vsi()
>
Oops, this needs a fix that Michal posted earlier. I will send a v3.
> The ice_vf_create_vsi() function and its VF ops helper introduced by commit
> a4c785e8162e ("ice: convert vf_ops .vsi_rebuild to .create_vsi") are used
> during an individual VF reset to re-create the VSI. This was done in order
> to ensure that the VSI gets properly reconfigured within the hardware.
>
> This is somewhat heavy handed as we completely release the VSI memory and
> structure, and then create a new VSI. This can also potentially force a
> change of the VSI index as we will re-use the first open slot in the VSI
> array which may not be the same.
>
> As part of implementing devlink reload, commit 6624e780a577 ("ice: split
> ice_vsi_setup into smaller functions") split VSI setup into smaller
> functions, introducing both ice_vsi_cfg() and ice_vsi_decfg() which can be
> used to configure or deconfigure an existing software VSI structure.
>
> Rather than completely removing the VSI and adding a new one using the
> .create_vsi() VF operation, simply use ice_vsi_decfg() to remove the
> current configuration. Save the VSI type and then call ice_vsi_cfg() to
> reconfigure the VSI as the same type that it was before. Since this might
> update the hardware VSI number, we also must update the vf->lan_vsi_num
> field to match.
>
> This new operation does not re-create the VSI, so rename it to
> ice_vf_reconfig_vsi().
>
> The new approach can safely share the exact same flow for both SR-IOV VFs
> as well as the Scalable IOV VFs being worked on. This uses less code and is
> a better abstraction over fully deleting the VSI and adding a new one.
>
> Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
> ---
> Changes since v1:
> * resend, since v1 appears to have been discarded
> * dropped Fixes tag, since this is going to target next
>
> drivers/net/ethernet/intel/ice/ice_sriov.c | 19 ------------
> drivers/net/ethernet/intel/ice/ice_vf_lib.c | 34 +++++++++++++++------
> drivers/net/ethernet/intel/ice/ice_vf_lib.h | 1 -
> 3 files changed, 24 insertions(+), 30 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ice/ice_sriov.c
> b/drivers/net/ethernet/intel/ice/ice_sriov.c
> index 1f66914c7a20..ab96a5596d09 100644
> --- a/drivers/net/ethernet/intel/ice/ice_sriov.c
> +++ b/drivers/net/ethernet/intel/ice/ice_sriov.c
> @@ -733,24 +733,6 @@ static void ice_sriov_clear_reset_trigger(struct ice_vf
> *vf)
> ice_flush(hw);
> }
>
> -/**
> - * ice_sriov_create_vsi - Create a new VSI for a VF
> - * @vf: VF to create the VSI for
> - *
> - * This is called by ice_vf_recreate_vsi to create the new VSI after the old
> - * VSI has been released.
> - */
> -static int ice_sriov_create_vsi(struct ice_vf *vf)
> -{
> - struct ice_vsi *vsi;
> -
> - vsi = ice_vf_vsi_setup(vf);
> - if (!vsi)
> - return -ENOMEM;
> -
> - return 0;
> -}
> -
> /**
> * ice_sriov_post_vsi_rebuild - tasks to do after the VF's VSI have been rebuilt
> * @vf: VF to perform tasks on
> @@ -770,7 +752,6 @@ static const struct ice_vf_ops ice_sriov_vf_ops = {
> .poll_reset_status = ice_sriov_poll_reset_status,
> .clear_reset_trigger = ice_sriov_clear_reset_trigger,
> .irq_close = NULL,
> - .create_vsi = ice_sriov_create_vsi,
> .post_vsi_rebuild = ice_sriov_post_vsi_rebuild,
> };
>
> diff --git a/drivers/net/ethernet/intel/ice/ice_vf_lib.c
> b/drivers/net/ethernet/intel/ice/ice_vf_lib.c
> index b26ce4425f45..0edb2e2ec681 100644
> --- a/drivers/net/ethernet/intel/ice/ice_vf_lib.c
> +++ b/drivers/net/ethernet/intel/ice/ice_vf_lib.c
> @@ -265,29 +265,43 @@ static void ice_vf_pre_vsi_rebuild(struct ice_vf *vf)
> }
>
> /**
> - * ice_vf_recreate_vsi - Release and re-create the VF's VSI
> - * @vf: VF to recreate the VSI for
> + * ice_vf_reconfig_vsi - Reconfigure a VF VSI with the device
> + * @vf: VF to reconfigure the VSI for
> *
> - * This is only called when a single VF is being reset (i.e. VVF, VFLR, host
> - * VF configuration change, etc)
> + * This is called when a single VF is being reset (i.e. VVF, VFLR, host VF
> + * configuration change, etc).
> *
> - * It releases and then re-creates a new VSI.
> + * It brings the VSI down and then reconfigures it with the hardware.
> */
> -static int ice_vf_recreate_vsi(struct ice_vf *vf)
> +static int ice_vf_reconfig_vsi(struct ice_vf *vf)
> {
> + struct ice_vsi *vsi = ice_get_vf_vsi(vf);
> + struct ice_vsi_cfg_params params = {};
> struct ice_pf *pf = vf->pf;
> int err;
>
> - ice_vf_vsi_release(vf);
> + if (WARN_ON(!vsi))
> + return -EINVAL;
>
> - err = vf->vf_ops->create_vsi(vf);
> + params = ice_vsi_to_params(vsi);
> + params.flags = ICE_VSI_FLAG_INIT;
> +
> + ice_vsi_decfg(vsi);
> +
> + err = ice_vsi_cfg(vsi, ¶ms);
> if (err) {
> dev_err(ice_pf_to_dev(pf),
> - "Failed to recreate the VF%u's VSI, error %d\n",
> + "Failed to reconfigure the VF%u's VSI, error %d\n",
> vf->vf_id, err);
> return err;
> }
>
> + /* Update the lan_vsi_num field since it might have been changed. The
> + * PF lan_vsi_idx number remains the same so we don't need to change
> + * that.
> + */
> + vf->lan_vsi_num = vsi->vsi_num;
> +
> return 0;
> }
>
> @@ -699,7 +713,7 @@ int ice_reset_vf(struct ice_vf *vf, u32 flags)
>
> ice_vf_pre_vsi_rebuild(vf);
>
> - if (ice_vf_recreate_vsi(vf)) {
> + if (ice_vf_reconfig_vsi(vf)) {
> dev_err(dev, "Failed to release and setup the VF%u's VSI\n",
> vf->vf_id);
> err = -EFAULT;
> diff --git a/drivers/net/ethernet/intel/ice/ice_vf_lib.h
> b/drivers/net/ethernet/intel/ice/ice_vf_lib.h
> index 67172fdd9bc2..ad648009a238 100644
> --- a/drivers/net/ethernet/intel/ice/ice_vf_lib.h
> +++ b/drivers/net/ethernet/intel/ice/ice_vf_lib.h
> @@ -62,7 +62,6 @@ struct ice_vf_ops {
> bool (*poll_reset_status)(struct ice_vf *vf);
> void (*clear_reset_trigger)(struct ice_vf *vf);
> void (*irq_close)(struct ice_vf *vf);
> - int (*create_vsi)(struct ice_vf *vf);
> void (*post_vsi_rebuild)(struct ice_vf *vf);
> };
>
>
> base-commit: 8d5bc02673a4fa9f5db4e9e949f41cfc68ae1758
> --
> 2.41.0.1.g9857a21e0017.dirty
_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Intel-wired-lan] [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with ice_vf_reconfig_vsi()
2023-07-12 21:57 ` Keller, Jacob E
@ 2023-07-20 17:48 ` Romanowski, Rafal
0 siblings, 0 replies; 4+ messages in thread
From: Romanowski, Rafal @ 2023-07-20 17:48 UTC (permalink / raw)
To: Keller, Jacob E, Intel Wired LAN, Nguyen, Anthony L
[-- Attachment #1: Type: text/plain, Size: 8254 bytes --]
Hi,
OS is stable, we don't see call traces anymore but:
MAC address change from HOST: passed, ping could recover, no errors VF queue change on VF on VM: passed, ping not interrupted, no errors
VF-VFR: VF reset failed, errors in dmesg on HOST, statistics did not reset but ping worked before and after.
Reproduction steps:
1. Create VF, Create VM, add VF to VM
2. Add IP to Client and VF on VM
3. Make sure traffic is working with iperf3
4. Check if statistics on VF VM are incrementing
watch -n 0.1 "ethtool -S ethx | grep _bytes"
5. PCI reset
echo 1 >/sys/bus/pci/devices/<VF bus location>/reset
6. Check dmesg and if statistics reset.
Best Regards,
Rafal Romanowski
NCNG SW
> -----Original Message-----
> From: Intel-wired-lan <intel-wired-lan-bounces@osuosl.org> On Behalf Of
> Keller, Jacob E
> Sent: środa, 12 lipca 2023 23:57
> To: Intel Wired LAN <intel-wired-lan@lists.osuosl.org>; Nguyen, Anthony L
> <anthony.l.nguyen@intel.com>
> Subject: Re: [Intel-wired-lan] [PATCH iwl-next v2] ice: replace
> ice_vf_recreate_vsi() with ice_vf_reconfig_vsi()
>
>
>
> > -----Original Message-----
> > From: Keller, Jacob E <jacob.e.keller@intel.com>
> > Sent: Wednesday, July 12, 2023 1:48 PM
> > To: Intel Wired LAN <intel-wired-lan@lists.osuosl.org>; Nguyen,
> > Anthony L <anthony.l.nguyen@intel.com>
> > Cc: Keller, Jacob E <jacob.e.keller@intel.com>
> > Subject: [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with
> > ice_vf_reconfig_vsi()
> >
>
> Oops, this needs a fix that Michal posted earlier. I will send a v3.
>
> > The ice_vf_create_vsi() function and its VF ops helper introduced by
> > commit a4c785e8162e ("ice: convert vf_ops .vsi_rebuild to
> > .create_vsi") are used during an individual VF reset to re-create the
> > VSI. This was done in order to ensure that the VSI gets properly
> reconfigured within the hardware.
> >
> > This is somewhat heavy handed as we completely release the VSI memory
> > and structure, and then create a new VSI. This can also potentially
> > force a change of the VSI index as we will re-use the first open slot
> > in the VSI array which may not be the same.
> >
> > As part of implementing devlink reload, commit 6624e780a577 ("ice:
> > split ice_vsi_setup into smaller functions") split VSI setup into
> > smaller functions, introducing both ice_vsi_cfg() and ice_vsi_decfg()
> > which can be used to configure or deconfigure an existing software VSI
> structure.
> >
> > Rather than completely removing the VSI and adding a new one using the
> > .create_vsi() VF operation, simply use ice_vsi_decfg() to remove the
> > current configuration. Save the VSI type and then call ice_vsi_cfg()
> > to reconfigure the VSI as the same type that it was before. Since this
> > might update the hardware VSI number, we also must update the
> > vf->lan_vsi_num field to match.
> >
> > This new operation does not re-create the VSI, so rename it to
> > ice_vf_reconfig_vsi().
> >
> > The new approach can safely share the exact same flow for both SR-IOV
> > VFs as well as the Scalable IOV VFs being worked on. This uses less
> > code and is a better abstraction over fully deleting the VSI and adding a
> new one.
> >
> > Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
> > ---
> > Changes since v1:
> > * resend, since v1 appears to have been discarded
> > * dropped Fixes tag, since this is going to target next
> >
> > drivers/net/ethernet/intel/ice/ice_sriov.c | 19 ------------
> > drivers/net/ethernet/intel/ice/ice_vf_lib.c | 34 +++++++++++++++------
> > drivers/net/ethernet/intel/ice/ice_vf_lib.h | 1 -
> > 3 files changed, 24 insertions(+), 30 deletions(-)
> >
> > diff --git a/drivers/net/ethernet/intel/ice/ice_sriov.c
> > b/drivers/net/ethernet/intel/ice/ice_sriov.c
> > index 1f66914c7a20..ab96a5596d09 100644
> > --- a/drivers/net/ethernet/intel/ice/ice_sriov.c
> > +++ b/drivers/net/ethernet/intel/ice/ice_sriov.c
> > @@ -733,24 +733,6 @@ static void ice_sriov_clear_reset_trigger(struct
> > ice_vf
> > *vf)
> > ice_flush(hw);
> > }
> >
> > -/**
> > - * ice_sriov_create_vsi - Create a new VSI for a VF
> > - * @vf: VF to create the VSI for
> > - *
> > - * This is called by ice_vf_recreate_vsi to create the new VSI after
> > the old
> > - * VSI has been released.
> > - */
> > -static int ice_sriov_create_vsi(struct ice_vf *vf) -{
> > - struct ice_vsi *vsi;
> > -
> > - vsi = ice_vf_vsi_setup(vf);
> > - if (!vsi)
> > - return -ENOMEM;
> > -
> > - return 0;
> > -}
> > -
> > /**
> > * ice_sriov_post_vsi_rebuild - tasks to do after the VF's VSI have been
> rebuilt
> > * @vf: VF to perform tasks on
> > @@ -770,7 +752,6 @@ static const struct ice_vf_ops ice_sriov_vf_ops = {
> > .poll_reset_status = ice_sriov_poll_reset_status,
> > .clear_reset_trigger = ice_sriov_clear_reset_trigger,
> > .irq_close = NULL,
> > - .create_vsi = ice_sriov_create_vsi,
> > .post_vsi_rebuild = ice_sriov_post_vsi_rebuild, };
> >
> > diff --git a/drivers/net/ethernet/intel/ice/ice_vf_lib.c
> > b/drivers/net/ethernet/intel/ice/ice_vf_lib.c
> > index b26ce4425f45..0edb2e2ec681 100644
> > --- a/drivers/net/ethernet/intel/ice/ice_vf_lib.c
> > +++ b/drivers/net/ethernet/intel/ice/ice_vf_lib.c
> > @@ -265,29 +265,43 @@ static void ice_vf_pre_vsi_rebuild(struct ice_vf
> > *vf) }
> >
> > /**
> > - * ice_vf_recreate_vsi - Release and re-create the VF's VSI
> > - * @vf: VF to recreate the VSI for
> > + * ice_vf_reconfig_vsi - Reconfigure a VF VSI with the device
> > + * @vf: VF to reconfigure the VSI for
> > *
> > - * This is only called when a single VF is being reset (i.e. VVF,
> > VFLR, host
> > - * VF configuration change, etc)
> > + * This is called when a single VF is being reset (i.e. VVF, VFLR,
> > + host VF
> > + * configuration change, etc).
> > *
> > - * It releases and then re-creates a new VSI.
> > + * It brings the VSI down and then reconfigures it with the hardware.
> > */
> > -static int ice_vf_recreate_vsi(struct ice_vf *vf)
> > +static int ice_vf_reconfig_vsi(struct ice_vf *vf)
> > {
> > + struct ice_vsi *vsi = ice_get_vf_vsi(vf);
> > + struct ice_vsi_cfg_params params = {};
> > struct ice_pf *pf = vf->pf;
> > int err;
> >
> > - ice_vf_vsi_release(vf);
> > + if (WARN_ON(!vsi))
> > + return -EINVAL;
> >
> > - err = vf->vf_ops->create_vsi(vf);
> > + params = ice_vsi_to_params(vsi);
> > + params.flags = ICE_VSI_FLAG_INIT;
> > +
> > + ice_vsi_decfg(vsi);
> > +
> > + err = ice_vsi_cfg(vsi, ¶ms);
> > if (err) {
> > dev_err(ice_pf_to_dev(pf),
> > - "Failed to recreate the VF%u's VSI, error %d\n",
> > + "Failed to reconfigure the VF%u's VSI, error %d\n",
> > vf->vf_id, err);
> > return err;
> > }
> >
> > + /* Update the lan_vsi_num field since it might have been changed.
> The
> > + * PF lan_vsi_idx number remains the same so we don't need to
> change
> > + * that.
> > + */
> > + vf->lan_vsi_num = vsi->vsi_num;
> > +
> > return 0;
> > }
> >
> > @@ -699,7 +713,7 @@ int ice_reset_vf(struct ice_vf *vf, u32 flags)
> >
> > ice_vf_pre_vsi_rebuild(vf);
> >
> > - if (ice_vf_recreate_vsi(vf)) {
> > + if (ice_vf_reconfig_vsi(vf)) {
> > dev_err(dev, "Failed to release and setup the VF%u's VSI\n",
> > vf->vf_id);
> > err = -EFAULT;
> > diff --git a/drivers/net/ethernet/intel/ice/ice_vf_lib.h
> > b/drivers/net/ethernet/intel/ice/ice_vf_lib.h
> > index 67172fdd9bc2..ad648009a238 100644
> > --- a/drivers/net/ethernet/intel/ice/ice_vf_lib.h
> > +++ b/drivers/net/ethernet/intel/ice/ice_vf_lib.h
> > @@ -62,7 +62,6 @@ struct ice_vf_ops {
> > bool (*poll_reset_status)(struct ice_vf *vf);
> > void (*clear_reset_trigger)(struct ice_vf *vf);
> > void (*irq_close)(struct ice_vf *vf);
> > - int (*create_vsi)(struct ice_vf *vf);
> > void (*post_vsi_rebuild)(struct ice_vf *vf); };
> >
> >
> > base-commit: 8d5bc02673a4fa9f5db4e9e949f41cfc68ae1758
> > --
> > 2.41.0.1.g9857a21e0017.dirty
>
> _______________________________________________
> Intel-wired-lan mailing list
> Intel-wired-lan@osuosl.org
> https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
[-- Attachment #2: dmesg_HOST.txt --]
[-- Type: text/plain, Size: 152012 bytes --]
[ 0.000000] Linux version 6.5.0-rc1_next-queue_dev-queue-00374-gd61af0a06c70 (root@localhost.localdomain) (gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-16), GNU ld version 2.30-117.el8) #1 SMP PREEMPT_DYNAMIC Mon Jul 17 06:19:58 CEST 2023
[ 0.000000] Command line: vmlinuz initrd=initrd.img root=172.20.0.20:/diskless/host/D-R03-U38-Dell-R740/upstream-kernel/RHEL/8/7/rhel-87-upstream-kernel-next-zfs-latest rw selinux=0 net.ifnames=0 biosdevname=0 ifname=bootnet:20:04:0f:ec:72:20 bridge=br0:bootnet ip=172.20.7.104::172.20.0.1:255.255.0.0::br0:none nomodeset intel_iommu=on rd.shell crashkernel=512M
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000004860cfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000004860d000-0x0000000050614fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000050615000-0x00000000682fefff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000682ff000-0x000000006ebfefff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000006ebff000-0x000000006f9fefff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000006f9ff000-0x000000006fffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000006ffff000-0x000000006fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000070000000-0x000000008fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000187bffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0x47e11020-0x47e1905f] usable ==> usable
[ 0.000000] e820: update [mem 0x47e11020-0x47e1905f] usable ==> usable
[ 0.000000] e820: update [mem 0x47df8020-0x47e1065f] usable ==> usable
[ 0.000000] e820: update [mem 0x47df8020-0x47e1065f] usable ==> usable
[ 0.000000] e820: update [mem 0x47dc7020-0x47df7c5f] usable ==> usable
[ 0.000000] e820: update [mem 0x47dc7020-0x47df7c5f] usable ==> usable
[ 0.000000] e820: update [mem 0x47d96020-0x47dc6c5f] usable ==> usable
[ 0.000000] e820: update [mem 0x47d96020-0x47dc6c5f] usable ==> usable
[ 0.000000] e820: update [mem 0x47d65020-0x47d95c5f] usable ==> usable
[ 0.000000] e820: update [mem 0x47d65020-0x47d95c5f] usable ==> usable
[ 0.000000] e820: update [mem 0x47d34020-0x47d64c5f] usable ==> usable
[ 0.000000] e820: update [mem 0x47d34020-0x47d64c5f] usable ==> usable
[ 0.000000] e820: update [mem 0x47d00020-0x47d3385f] usable ==> usable
[ 0.000000] e820: update [mem 0x47d00020-0x47d3385f] usable ==> usable
[ 0.000000] e820: update [mem 0x47ccc020-0x47cff85f] usable ==> usable
[ 0.000000] e820: update [mem 0x47ccc020-0x47cff85f] usable ==> usable
[ 0.000000] e820: update [mem 0x47c98020-0x47ccb85f] usable ==> usable
[ 0.000000] e820: update [mem 0x47c98020-0x47ccb85f] usable ==> usable
[ 0.000000] e820: update [mem 0x47c64020-0x47c9785f] usable ==> usable
[ 0.000000] e820: update [mem 0x47c64020-0x47c9785f] usable ==> usable
[ 0.000000] e820: update [mem 0x47c01020-0x47c6305f] usable ==> usable
[ 0.000000] e820: update [mem 0x47c01020-0x47c6305f] usable ==> usable
[ 0.000000] e820: update [mem 0x47b9e020-0x47c0005f] usable ==> usable
[ 0.000000] e820: update [mem 0x47b9e020-0x47c0005f] usable ==> usable
[ 0.000000] e820: update [mem 0x47b69020-0x47b9d05f] usable ==> usable
[ 0.000000] e820: update [mem 0x47b69020-0x47b9d05f] usable ==> usable
[ 0.000000] e820: update [mem 0x47b34020-0x47b6805f] usable ==> usable
[ 0.000000] e820: update [mem 0x47b34020-0x47b6805f] usable ==> usable
[ 0.000000] e820: update [mem 0x47aff020-0x47b3305f] usable ==> usable
[ 0.000000] e820: update [mem 0x47aff020-0x47b3305f] usable ==> usable
[ 0.000000] e820: update [mem 0x47aca020-0x47afe05f] usable ==> usable
[ 0.000000] e820: update [mem 0x47aca020-0x47afe05f] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000047aca01f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047aca020-0x0000000047afe05f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047afe060-0x0000000047aff01f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047aff020-0x0000000047b3305f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047b33060-0x0000000047b3401f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047b34020-0x0000000047b6805f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047b68060-0x0000000047b6901f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047b69020-0x0000000047b9d05f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047b9d060-0x0000000047b9e01f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047b9e020-0x0000000047c0005f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047c00060-0x0000000047c0101f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047c01020-0x0000000047c6305f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047c63060-0x0000000047c6401f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047c64020-0x0000000047c9785f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047c97860-0x0000000047c9801f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047c98020-0x0000000047ccb85f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047ccb860-0x0000000047ccc01f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047ccc020-0x0000000047cff85f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047cff860-0x0000000047d0001f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047d00020-0x0000000047d3385f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047d33860-0x0000000047d3401f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047d34020-0x0000000047d64c5f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047d64c60-0x0000000047d6501f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047d65020-0x0000000047d95c5f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047d95c60-0x0000000047d9601f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047d96020-0x0000000047dc6c5f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047dc6c60-0x0000000047dc701f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047dc7020-0x0000000047df7c5f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047df7c60-0x0000000047df801f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047df8020-0x0000000047e1065f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047e10660-0x0000000047e1101f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047e11020-0x0000000047e1905f] usable
[ 0.000000] reserve setup_data: [mem 0x0000000047e19060-0x000000004860cfff] usable
[ 0.000000] reserve setup_data: [mem 0x000000004860d000-0x0000000050614fff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000050615000-0x00000000682fefff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000682ff000-0x000000006ebfefff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000006ebff000-0x000000006f9fefff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000006f9ff000-0x000000006fffefff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000006ffff000-0x000000006fffffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000070000000-0x000000008fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000187bffffff] usable
[ 0.000000] efi: EFI v2.7 by Dell Inc.
[ 0.000000] efi: ACPI=0x6fffe000 ACPI 2.0=0x6fffe014 SMBIOS=0x68e3b000 SMBIOS 3.0=0x68e39000 MEMATTR=0x65484020 INITRD=0x52202220 RNG=0x6fc0b020
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem49: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0x80000000-0x8fffffff] reserved
[ 0.000000] efi: Not removing mem50: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] SMBIOS 3.2.0 present.
[ 0.000000] DMI: Dell Inc. PowerEdge R740/00WGD1, BIOS 2.16.1 08/17/2022
[ 0.000000] tsc: Detected 2100.000 MHz processor
[ 0.000006] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000009] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000028] last_pfn = 0x187c000 max_arch_pfn = 0x400000000
[ 0.000036] total RAM covered: 98176M
[ 0.000179] Found optimal setting for mtrr clean up
[ 0.000180] gran_size: 64K chunk_size: 512M num_reg: 9 lose cover RAM: 0G
[ 0.000184] MTRR map: 8 entries (3 fixed + 5 variable; max 23), built from 10 variable MTRRs
[ 0.000186] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000566] e820: update [mem 0x70000000-0x73ffffff] usable ==> reserved
[ 0.000569] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[ 0.000572] last_pfn = 0x70000 max_arch_pfn = 0x400000000
[ 0.008225] Using GB pages for direct mapping
[ 0.009070] Secure boot disabled
[ 0.009071] RAMDISK: [mem 0x17247e5000-0x17d03f1fff]
[ 0.010434] ACPI: Early table checksum verification disabled
[ 0.010437] ACPI: RSDP 0x000000006FFFE014 000024 (v02 DELL )
[ 0.010441] ACPI: XSDT 0x000000006FBF9188 0000F4 (v01 DELL PE_SC3 00000000 01000013)
[ 0.010447] ACPI: FACP 0x000000006FFF8000 000114 (v06 DELL PE_SC3 00000000 DELL 00000001)
[ 0.010452] ACPI: DSDT 0x000000006FCFA000 2EE3DC (v02 DELL PE_SC3 00000003 DELL 00000001)
[ 0.010455] ACPI: FACS 0x000000006F76E000 000040
[ 0.010458] ACPI: SSDT 0x000000006FFFC000 00046C (v02 INTEL ADDRXLAT 00000001 INTL 20180508)
[ 0.010461] ACPI: MCEJ 0x000000006FFFB000 000130 (v01 DELL PE_SC3 00000002 DELL 00000001)
[ 0.010464] ACPI: WD__ 0x000000006FFFA000 000134 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.010467] ACPI: SLIC 0x000000006FFF9000 000024 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.010471] ACPI: HPET 0x000000006FFF7000 000038 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.010473] ACPI: APIC 0x000000006FFF5000 0016DE (v04 DELL PE_SC3 00000000 DELL 00000001)
[ 0.010476] ACPI: MCFG 0x000000006FFF4000 00003C (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.010479] ACPI: MIGT 0x000000006FFF3000 000040 (v01 DELL PE_SC3 00000000 DELL 00000001)
[ 0.010482] ACPI: MSCT 0x000000006FFF2000 000090 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.010485] ACPI: PCAT 0x000000006FFF1000 000088 (v02 DELL PE_SC3 00000002 DELL 00000001)
[ 0.010488] ACPI: PCCT 0x000000006FFF0000 00006E (v01 DELL PE_SC3 00000002 DELL 00000001)
[ 0.010491] ACPI: RASF 0x000000006FFEF000 000030 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.010493] ACPI: SLIT 0x000000006FFEE000 00042C (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.010496] ACPI: SRAT 0x000000006FFEB000 002D30 (v03 DELL PE_SC3 00000002 DELL 00000001)
[ 0.010499] ACPI: SVOS 0x000000006FFEA000 000032 (v01 DELL PE_SC3 00000000 DELL 00000001)
[ 0.010502] ACPI: WSMT 0x000000006FFE9000 000028 (v01 DELL PE_SC3 00000000 DELL 00000001)
[ 0.010505] ACPI: OEM4 0x000000006FC4C000 0AD1C1 (v02 INTEL CPU CST 00003000 INTL 20180508)
[ 0.010508] ACPI: SSDT 0x000000006FC14000 037465 (v02 INTEL SSDT PM 00004000 INTL 20180508)
[ 0.010511] ACPI: SSDT 0x000000006FBFA000 000A1F (v02 DELL PE_SC3 00000000 DELL 00000001)
[ 0.010514] ACPI: SSDT 0x000000006FC10000 00357F (v02 INTEL SpsNm 00000002 INTL 20180508)
[ 0.010517] ACPI: DMAR 0x000000006FFFD000 0001F0 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.010519] ACPI: HEST 0x000000006FC0F000 00017C (v01 DELL PE_SC3 00000002 DELL 00000001)
[ 0.010522] ACPI: BERT 0x000000006FC0E000 000030 (v01 DELL PE_SC3 00000002 DELL 00000001)
[ 0.010525] ACPI: ERST 0x000000006FC0D000 000230 (v01 DELL PE_SC3 00000002 DELL 00000001)
[ 0.010528] ACPI: EINJ 0x000000006FC0C000 000150 (v01 DELL PE_SC3 00000002 DELL 00000001)
[ 0.010530] ACPI: Reserving FACP table memory at [mem 0x6fff8000-0x6fff8113]
[ 0.010532] ACPI: Reserving DSDT table memory at [mem 0x6fcfa000-0x6ffe83db]
[ 0.010533] ACPI: Reserving FACS table memory at [mem 0x6f76e000-0x6f76e03f]
[ 0.010534] ACPI: Reserving SSDT table memory at [mem 0x6fffc000-0x6fffc46b]
[ 0.010535] ACPI: Reserving MCEJ table memory at [mem 0x6fffb000-0x6fffb12f]
[ 0.010536] ACPI: Reserving WD__ table memory at [mem 0x6fffa000-0x6fffa133]
[ 0.010537] ACPI: Reserving SLIC table memory at [mem 0x6fff9000-0x6fff9023]
[ 0.010538] ACPI: Reserving HPET table memory at [mem 0x6fff7000-0x6fff7037]
[ 0.010539] ACPI: Reserving APIC table memory at [mem 0x6fff5000-0x6fff66dd]
[ 0.010539] ACPI: Reserving MCFG table memory at [mem 0x6fff4000-0x6fff403b]
[ 0.010540] ACPI: Reserving MIGT table memory at [mem 0x6fff3000-0x6fff303f]
[ 0.010541] ACPI: Reserving MSCT table memory at [mem 0x6fff2000-0x6fff208f]
[ 0.010542] ACPI: Reserving PCAT table memory at [mem 0x6fff1000-0x6fff1087]
[ 0.010543] ACPI: Reserving PCCT table memory at [mem 0x6fff0000-0x6fff006d]
[ 0.010544] ACPI: Reserving RASF table memory at [mem 0x6ffef000-0x6ffef02f]
[ 0.010545] ACPI: Reserving SLIT table memory at [mem 0x6ffee000-0x6ffee42b]
[ 0.010545] ACPI: Reserving SRAT table memory at [mem 0x6ffeb000-0x6ffedd2f]
[ 0.010546] ACPI: Reserving SVOS table memory at [mem 0x6ffea000-0x6ffea031]
[ 0.010547] ACPI: Reserving WSMT table memory at [mem 0x6ffe9000-0x6ffe9027]
[ 0.010548] ACPI: Reserving OEM4 table memory at [mem 0x6fc4c000-0x6fcf91c0]
[ 0.010549] ACPI: Reserving SSDT table memory at [mem 0x6fc14000-0x6fc4b464]
[ 0.010550] ACPI: Reserving SSDT table memory at [mem 0x6fbfa000-0x6fbfaa1e]
[ 0.010551] ACPI: Reserving SSDT table memory at [mem 0x6fc10000-0x6fc1357e]
[ 0.010552] ACPI: Reserving DMAR table memory at [mem 0x6fffd000-0x6fffd1ef]
[ 0.010553] ACPI: Reserving HEST table memory at [mem 0x6fc0f000-0x6fc0f17b]
[ 0.010554] ACPI: Reserving BERT table memory at [mem 0x6fc0e000-0x6fc0e02f]
[ 0.010555] ACPI: Reserving ERST table memory at [mem 0x6fc0d000-0x6fc0d22f]
[ 0.010556] ACPI: Reserving EINJ table memory at [mem 0x6fc0c000-0x6fc0c14f]
[ 0.010595] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[ 0.010597] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[ 0.010598] SRAT: PXM 0 -> APIC 0x0e -> Node 0
[ 0.010599] SRAT: PXM 1 -> APIC 0x2e -> Node 1
[ 0.010599] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[ 0.010600] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[ 0.010601] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[ 0.010601] SRAT: PXM 1 -> APIC 0x2c -> Node 1
[ 0.010602] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[ 0.010603] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[ 0.010604] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[ 0.010604] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[ 0.010605] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[ 0.010606] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[ 0.010606] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[ 0.010607] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[ 0.010608] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[ 0.010609] SRAT: PXM 1 -> APIC 0x30 -> Node 1
[ 0.010609] SRAT: PXM 0 -> APIC 0x1e -> Node 0
[ 0.010610] SRAT: PXM 1 -> APIC 0x3e -> Node 1
[ 0.010611] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[ 0.010611] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[ 0.010612] SRAT: PXM 0 -> APIC 0x1c -> Node 0
[ 0.010613] SRAT: PXM 1 -> APIC 0x3c -> Node 1
[ 0.010613] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[ 0.010614] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[ 0.010615] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[ 0.010615] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[ 0.010616] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[ 0.010617] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[ 0.010617] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[ 0.010618] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[ 0.010631] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[ 0.010633] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0xc7bffffff]
[ 0.010635] ACPI: SRAT: Node 1 PXM 1 [mem 0xc7c000000-0x187bffffff]
[ 0.010641] NUMA: Initialized distance table, cnt=2
[ 0.010644] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0xc7bffffff] -> [mem 0x00000000-0xc7bffffff]
[ 0.010655] NODE_DATA(0) allocated [mem 0xc7bfd5000-0xc7bffffff]
[ 0.010673] NODE_DATA(1) allocated [mem 0x17247b9000-0x17247e3fff]
[ 0.010843] Reserving 512MB of memory at 624MB for crashkernel (System RAM: 97730MB)
[ 0.010946] Zone ranges:
[ 0.010947] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.010949] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.010951] Normal [mem 0x0000000100000000-0x000000187bffffff]
[ 0.010952] Device empty
[ 0.010953] Movable zone start for each node
[ 0.010956] Early memory node ranges
[ 0.010957] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.010958] node 0: [mem 0x0000000000100000-0x000000004860cfff]
[ 0.010960] node 0: [mem 0x0000000050615000-0x00000000682fefff]
[ 0.010961] node 0: [mem 0x000000006ffff000-0x000000006fffffff]
[ 0.010962] node 0: [mem 0x0000000100000000-0x0000000c7bffffff]
[ 0.010966] node 1: [mem 0x0000000c7c000000-0x000000187bffffff]
[ 0.010972] Initmem setup node 0 [mem 0x0000000000001000-0x0000000c7bffffff]
[ 0.010975] Initmem setup node 1 [mem 0x0000000c7c000000-0x000000187bffffff]
[ 0.010978] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.011003] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.013574] On node 0, zone DMA32: 32776 pages in unavailable ranges
[ 0.013818] On node 0, zone DMA32: 32000 pages in unavailable ranges
[ 0.014762] On node 1, zone Normal: 16384 pages in unavailable ranges
[ 0.014841] ACPI: PM-Timer IO Port: 0x508
[ 0.014860] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
[ 0.014864] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
[ 0.014883] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[ 0.014888] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-31
[ 0.014892] IOAPIC[2]: apic_id 10, version 32, address 0xfec08000, GSI 32-39
[ 0.014896] IOAPIC[3]: apic_id 11, version 32, address 0xfec10000, GSI 40-47
[ 0.014901] IOAPIC[4]: apic_id 12, version 32, address 0xfec18000, GSI 48-55
[ 0.014905] IOAPIC[5]: apic_id 15, version 32, address 0xfec20000, GSI 72-79
[ 0.014910] IOAPIC[6]: apic_id 16, version 32, address 0xfec28000, GSI 80-87
[ 0.014915] IOAPIC[7]: apic_id 17, version 32, address 0xfec30000, GSI 88-95
[ 0.014920] IOAPIC[8]: apic_id 18, version 32, address 0xfec38000, GSI 96-103
[ 0.014924] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.014926] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.014936] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.014937] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.014941] TSC deadline timer available
[ 0.014942] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[ 0.014965] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.014967] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.014969] PM: hibernation: Registered nosave memory: [mem 0x47aca000-0x47acafff]
[ 0.014971] PM: hibernation: Registered nosave memory: [mem 0x47afe000-0x47afefff]
[ 0.014972] PM: hibernation: Registered nosave memory: [mem 0x47aff000-0x47afffff]
[ 0.014974] PM: hibernation: Registered nosave memory: [mem 0x47b33000-0x47b33fff]
[ 0.014975] PM: hibernation: Registered nosave memory: [mem 0x47b34000-0x47b34fff]
[ 0.014976] PM: hibernation: Registered nosave memory: [mem 0x47b68000-0x47b68fff]
[ 0.014977] PM: hibernation: Registered nosave memory: [mem 0x47b69000-0x47b69fff]
[ 0.014979] PM: hibernation: Registered nosave memory: [mem 0x47b9d000-0x47b9dfff]
[ 0.014980] PM: hibernation: Registered nosave memory: [mem 0x47b9e000-0x47b9efff]
[ 0.014982] PM: hibernation: Registered nosave memory: [mem 0x47c00000-0x47c00fff]
[ 0.014982] PM: hibernation: Registered nosave memory: [mem 0x47c01000-0x47c01fff]
[ 0.014984] PM: hibernation: Registered nosave memory: [mem 0x47c63000-0x47c63fff]
[ 0.014985] PM: hibernation: Registered nosave memory: [mem 0x47c64000-0x47c64fff]
[ 0.014987] PM: hibernation: Registered nosave memory: [mem 0x47c97000-0x47c97fff]
[ 0.014987] PM: hibernation: Registered nosave memory: [mem 0x47c98000-0x47c98fff]
[ 0.014989] PM: hibernation: Registered nosave memory: [mem 0x47ccb000-0x47ccbfff]
[ 0.014990] PM: hibernation: Registered nosave memory: [mem 0x47ccc000-0x47cccfff]
[ 0.014991] PM: hibernation: Registered nosave memory: [mem 0x47cff000-0x47cfffff]
[ 0.014992] PM: hibernation: Registered nosave memory: [mem 0x47d00000-0x47d00fff]
[ 0.014994] PM: hibernation: Registered nosave memory: [mem 0x47d33000-0x47d33fff]
[ 0.014994] PM: hibernation: Registered nosave memory: [mem 0x47d34000-0x47d34fff]
[ 0.014996] PM: hibernation: Registered nosave memory: [mem 0x47d64000-0x47d64fff]
[ 0.014997] PM: hibernation: Registered nosave memory: [mem 0x47d65000-0x47d65fff]
[ 0.014999] PM: hibernation: Registered nosave memory: [mem 0x47d95000-0x47d95fff]
[ 0.014999] PM: hibernation: Registered nosave memory: [mem 0x47d96000-0x47d96fff]
[ 0.015001] PM: hibernation: Registered nosave memory: [mem 0x47dc6000-0x47dc6fff]
[ 0.015002] PM: hibernation: Registered nosave memory: [mem 0x47dc7000-0x47dc7fff]
[ 0.015003] PM: hibernation: Registered nosave memory: [mem 0x47df7000-0x47df7fff]
[ 0.015004] PM: hibernation: Registered nosave memory: [mem 0x47df8000-0x47df8fff]
[ 0.015006] PM: hibernation: Registered nosave memory: [mem 0x47e10000-0x47e10fff]
[ 0.015007] PM: hibernation: Registered nosave memory: [mem 0x47e11000-0x47e11fff]
[ 0.015008] PM: hibernation: Registered nosave memory: [mem 0x47e19000-0x47e19fff]
[ 0.015010] PM: hibernation: Registered nosave memory: [mem 0x4860d000-0x50614fff]
[ 0.015012] PM: hibernation: Registered nosave memory: [mem 0x682ff000-0x6ebfefff]
[ 0.015013] PM: hibernation: Registered nosave memory: [mem 0x6ebff000-0x6f9fefff]
[ 0.015014] PM: hibernation: Registered nosave memory: [mem 0x6f9ff000-0x6fffefff]
[ 0.015015] PM: hibernation: Registered nosave memory: [mem 0x70000000-0x7fffffff]
[ 0.015016] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xfdffffff]
[ 0.015017] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.015018] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xffffffff]
[ 0.015020] [mem 0x80000000-0xfdffffff] available for PCI devices
[ 0.015022] Booting paravirtualized kernel on bare hardware
[ 0.015025] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.020792] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
[ 0.022553] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
[ 0.022562] pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
[ 0.022565] pcpu-alloc: [0] 00 02 04 06 08 10 12 14 [0] 16 18 20 22 24 26 28 30
[ 0.022575] pcpu-alloc: [1] 01 03 05 07 09 11 13 15 [1] 17 19 21 23 25 27 29 31
[ 0.022609] Kernel command line: vmlinuz initrd=initrd.img root=172.20.0.20:/diskless/host/D-R03-U38-Dell-R740/upstream-kernel/RHEL/8/7/rhel-87-upstream-kernel-next-zfs-latest rw selinux=0 net.ifnames=0 biosdevname=0 ifname=bootnet:20:04:0f:ec:72:20 bridge=br0:bootnet ip=172.20.7.104::172.20.0.1:255.255.0.0::br0:none nomodeset intel_iommu=on rd.shell crashkernel=512M
[ 0.022767] Booted with the nomodeset parameter. Only the system framebuffer will be available
[ 0.022783] DMAR: IOMMU enabled
[ 0.022817] Unknown kernel command line parameters "vmlinuz biosdevname=0 ifname=bootnet:20:04:0f:ec:72:20 bridge=br0:bootnet ip=172.20.7.104::172.20.0.1:255.255.0.0::br0:none", will be passed to user space.
[ 0.023280] Fallback order for Node 0: 0 1
[ 0.023284] Fallback order for Node 1: 1 0
[ 0.023289] Built 2 zonelists, mobility grouping on. Total pages: 24626924
[ 0.023290] Policy zone: Normal
[ 0.023292] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.023305] software IO TLB: area num 32.
[ 0.072745] Memory: 1202452K/100076124K available (16384K kernel code, 6101K rwdata, 6716K rodata, 4056K init, 17692K bss, 7964268K reserved, 0K cma-reserved)
[ 0.073402] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=2
[ 0.073436] Kernel/User page tables isolation: enabled
[ 0.073502] ftrace: allocating 49685 entries in 195 pages
[ 0.082948] ftrace: allocated 195 pages with 4 groups
[ 0.083150] Dynamic Preempt: full
[ 0.083267] rcu: Preemptible hierarchical RCU implementation.
[ 0.083267] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
[ 0.083269] Trampoline variant of Tasks RCU enabled.
[ 0.083269] Rude variant of Tasks RCU enabled.
[ 0.083270] Tracing variant of Tasks RCU enabled.
[ 0.083271] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.083272] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.086730] NR_IRQS: 524544, nr_irqs: 2040, preallocated irqs: 16
[ 0.087047] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.087250] Console: colour dummy device 80x25
[ 0.087252] printk: console [tty0] enabled
[ 0.087894] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[ 0.087901] ACPI: Core revision 20230331
[ 0.090000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[ 0.090051] APIC: Switch to symmetric I/O mode setup
[ 0.090055] DMAR: Host address width 46
[ 0.090057] DMAR: DRHD base: 0x000000d37fc000 flags: 0x0
[ 0.090066] DMAR: dmar0: reg_base_addr d37fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 0.090071] DMAR: DRHD base: 0x000000e0ffc000 flags: 0x0
[ 0.090079] DMAR: dmar1: reg_base_addr e0ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 0.090084] DMAR: DRHD base: 0x000000ee7fc000 flags: 0x0
[ 0.090089] DMAR: dmar2: reg_base_addr ee7fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 0.090093] DMAR: DRHD base: 0x000000fbffc000 flags: 0x0
[ 0.090099] DMAR: dmar3: reg_base_addr fbffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 0.090103] DMAR: DRHD base: 0x000000aaffc000 flags: 0x0
[ 0.090108] DMAR: dmar4: reg_base_addr aaffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 0.090112] DMAR: DRHD base: 0x000000b87fc000 flags: 0x0
[ 0.090117] DMAR: dmar5: reg_base_addr b87fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 0.090121] DMAR: DRHD base: 0x000000c5ffc000 flags: 0x0
[ 0.090126] DMAR: dmar6: reg_base_addr c5ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 0.090130] DMAR: DRHD base: 0x0000009d7fc000 flags: 0x1
[ 0.090136] DMAR: dmar7: reg_base_addr 9d7fc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
[ 0.090139] DMAR: RMRR base: 0x0000004860d000 end: 0x00000050614fff
[ 0.090142] DMAR: RMRR base: 0x0000006f760000 end: 0x0000006f762fff
[ 0.090145] DMAR: ATSR flags: 0x0
[ 0.090147] DMAR: ATSR flags: 0x0
[ 0.090150] DMAR-IR: IOAPIC id 12 under DRHD base 0xc5ffc000 IOMMU 6
[ 0.090153] DMAR-IR: IOAPIC id 11 under DRHD base 0xb87fc000 IOMMU 5
[ 0.090156] DMAR-IR: IOAPIC id 10 under DRHD base 0xaaffc000 IOMMU 4
[ 0.090159] DMAR-IR: IOAPIC id 18 under DRHD base 0xfbffc000 IOMMU 3
[ 0.090162] DMAR-IR: IOAPIC id 17 under DRHD base 0xee7fc000 IOMMU 2
[ 0.090164] DMAR-IR: IOAPIC id 16 under DRHD base 0xe0ffc000 IOMMU 1
[ 0.090167] DMAR-IR: IOAPIC id 15 under DRHD base 0xd37fc000 IOMMU 0
[ 0.090170] DMAR-IR: IOAPIC id 8 under DRHD base 0x9d7fc000 IOMMU 7
[ 0.090172] DMAR-IR: IOAPIC id 9 under DRHD base 0x9d7fc000 IOMMU 7
[ 0.090175] DMAR-IR: HPET id 0 under DRHD base 0x9d7fc000
[ 0.090178] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
[ 0.090178] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
[ 0.092173] DMAR-IR: Enabled IRQ remapping in xapic mode
[ 0.092178] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.092186] Switched APIC routing to physical flat.
[ 0.093284] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.098012] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e4530a99b6, max_idle_ns: 440795257976 ns
[ 0.098020] Calibrating delay loop (skipped), value calculated using timer frequency.. 4200.00 BogoMIPS (lpj=2100000)
[ 0.098047] CPU0: Thermal monitoring enabled (TM1)
[ 0.098115] process: using mwait in idle threads
[ 0.098120] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
[ 0.098123] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.098129] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.098134] Spectre V2 : Mitigation: IBRS
[ 0.098136] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.098139] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.098142] RETBleed: Mitigation: IBRS
[ 0.098145] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.098149] Spectre V2 : User space: Mitigation: STIBP via prctl
[ 0.098152] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.098166] MDS: Mitigation: Clear CPU buffers
[ 0.098169] TAA: Mitigation: Clear CPU buffers
[ 0.098171] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.098180] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.098186] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.098190] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.098193] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.098197] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.098201] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[ 0.098205] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[ 0.098209] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[ 0.098213] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.098218] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.098223] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.098227] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.098231] x86/fpu: xstate_offset[5]: 960, xstate_sizes[5]: 64
[ 0.098235] x86/fpu: xstate_offset[6]: 1024, xstate_sizes[6]: 512
[ 0.098239] x86/fpu: xstate_offset[7]: 1536, xstate_sizes[7]: 1024
[ 0.098244] x86/fpu: xstate_offset[9]: 2560, xstate_sizes[9]: 8
[ 0.098248] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[ 0.124196] Freeing SMP alternatives memory: 40K
[ 0.124202] pid_max: default: 32768 minimum: 301
[ 0.160874] LSM: initializing lsm=capability,yama,bpf,integrity
[ 0.160902] Yama: becoming mindful.
[ 0.160910] LSM support for eBPF active
[ 0.176784] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[ 0.184728] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, vmalloc hugepage)
[ 0.185045] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
[ 0.185322] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
[ 0.186115] smpboot: CPU0: Intel(R) Xeon(R) Gold 6130 CPU @ 2.10GHz (family: 0x6, model: 0x55, stepping: 0x4)
[ 0.186348] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.186375] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.186402] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.186423] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.186466] ... version: 4
[ 0.186469] ... bit width: 48
[ 0.186472] ... generic registers: 8
[ 0.186474] ... value mask: 0000ffffffffffff
[ 0.186478] ... max period: 00007fffffffffff
[ 0.186481] ... fixed-purpose events: 3
[ 0.186484] ... event mask: 00000007000000ff
[ 0.186647] signal: max sigframe size: 3632
[ 0.186668] Estimated ratio of average max frequency by base frequency (times 1024): 1706
[ 0.186710] rcu: Hierarchical SRCU implementation.
[ 0.186714] rcu: Max phase no-delay instances is 400.
[ 0.189713] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.190178] smp: Bringing up secondary CPUs ...
[ 0.190344] smpboot: x86: Booting SMP configuration:
[ 0.190348] .... node #1, CPUs: #1
[ 0.190619] .... node #0, CPUs: #2
[ 0.190910] .... node #1, CPUs: #3
[ 0.191176] .... node #0, CPUs: #4
[ 0.191468] .... node #1, CPUs: #5
[ 0.191737] .... node #0, CPUs: #6
[ 0.192028] .... node #1, CPUs: #7
[ 0.192301] .... node #0, CPUs: #8
[ 0.192589] .... node #1, CPUs: #9
[ 0.192861] .... node #0, CPUs: #10
[ 0.193256] .... node #1, CPUs: #11
[ 0.193585] .... node #0, CPUs: #12
[ 0.193958] .... node #1, CPUs: #13
[ 0.194321] .... node #0, CPUs: #14
[ 0.194650] .... node #1, CPUs: #15
[ 0.195043] .... node #0, CPUs: #16
[ 0.195264] .... node #1, CPUs: #17
[ 0.195615] .... node #0, CPUs: #18
[ 0.195915] .... node #1, CPUs: #19
[ 0.196277] .... node #0, CPUs: #20
[ 0.196580] .... node #1, CPUs: #21
[ 0.196956] .... node #0, CPUs: #22
[ 0.197266] .... node #1, CPUs: #23
[ 0.197659] .... node #0, CPUs: #24
[ 0.197974] .... node #1, CPUs: #25
[ 0.198355] .... node #0, CPUs: #26
[ 0.198678] .... node #1, CPUs: #27
[ 0.199033] .... node #0, CPUs: #28
[ 0.199278] .... node #1, CPUs: #29
[ 0.199557] .... node #0, CPUs: #30
[ 0.199947] .... node #1, CPUs: #31
[ 0.003901] smpboot: CPU 1 Converting physical 0 to logical die 1
[ 0.207128] smp: Brought up 2 nodes, 32 CPUs
[ 0.207128] smpboot: Max logical packages: 2
[ 0.207128] smpboot: Total of 32 processors activated (134400.00 BogoMIPS)
[ 0.245052] node 1 deferred pages initialised in 35ms
[ 0.247098] node 0 deferred pages initialised in 38ms
[ 0.251666] devtmpfs: initialized
[ 0.251666] x86/mm: Memory block size: 2048MB
[ 0.278760] ACPI: PM: Registering ACPI NVS region [mem 0x6ebff000-0x6f9fefff] (14680064 bytes)
[ 0.279256] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.279279] futex hash table entries: 8192 (order: 7, 524288 bytes, vmalloc)
[ 0.279520] pinctrl core: initialized pinctrl subsystem
[ 0.280676] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.281016] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.281023] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.281031] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.281069] audit: initializing netlink subsys (disabled)
[ 0.281078] audit: type=2000 audit(1689683108.191:1): state=initialized audit_enabled=0 res=1
[ 0.281206] thermal_sys: Registered thermal governor 'fair_share'
[ 0.281208] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.281213] thermal_sys: Registered thermal governor 'step_wise'
[ 0.281217] thermal_sys: Registered thermal governor 'user_space'
[ 0.281246] cpuidle: using governor menu
[ 0.281246] Detected 1 PCC Subspaces
[ 0.281246] Registering PCC driver as Mailbox controller
[ 0.282431] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.282443] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.282781] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[ 0.282802] PCI: not using MMCONFIG
[ 0.282809] PCI: Using configuration type 1 for base access
[ 0.282843] PCI: Dell System detected, enabling pci=bfsort.
[ 0.287146] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.287166] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.287166] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.287166] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.287166] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.288094] cryptd: max_cpu_qlen set to 1000
[ 0.288131] fbcon: Taking over console
[ 0.288187] ACPI: Added _OSI(Module Device)
[ 0.288191] ACPI: Added _OSI(Processor Device)
[ 0.288194] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.288198] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.374617] ACPI: 5 ACPI AML tables successfully acquired and loaded
[ 0.384801] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.393434] ACPI: Dynamic OEM Table Load:
[ 0.545487] ACPI: Interpreter enabled
[ 0.545513] ACPI: PM: (supports S0 S5)
[ 0.545516] ACPI: Using IOAPIC for interrupt routing
[ 0.545543] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[ 0.559668] [Firmware Info]: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] not reserved in ACPI motherboard resources
[ 0.559675] PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved as EfiMemoryMappedIO
[ 0.559745] HEST: Table parsing has been initialized.
[ 0.560029] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[ 0.560036] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.560041] PCI: Using E820 reservations for host bridge windows
[ 0.571570] ACPI: Enabled 5 GPEs in block 00 to 7F
[ 0.644410] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-16])
[ 0.644421] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.644477] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 0.644568] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.644573] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.647055] PCI host bridge to bus 0000:00
[ 0.647059] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.647065] pci_bus 0000:00: root bus resource [io 0x1000-0x3fff window]
[ 0.647069] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.647074] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[ 0.647079] pci_bus 0000:00: root bus resource [mem 0xfe010000-0xfe010fff window]
[ 0.647084] pci_bus 0000:00: root bus resource [mem 0x90000000-0x9d7fffff window]
[ 0.647088] pci_bus 0000:00: root bus resource [mem 0x380000000000-0x383fffffffff window]
[ 0.647093] pci_bus 0000:00: root bus resource [bus 00-16]
[ 0.647133] pci 0000:00:00.0: [8086:2020] type 00 class 0x060000
[ 0.647331] pci 0000:00:05.0: [8086:2024] type 00 class 0x088000
[ 0.647476] pci 0000:00:05.2: [8086:2025] type 00 class 0x088000
[ 0.647593] pci 0000:00:05.4: [8086:2026] type 00 class 0x080020
[ 0.647613] pci 0000:00:05.4: reg 0x10: [mem 0x92f20000-0x92f20fff]
[ 0.647754] pci 0000:00:08.0: [8086:2014] type 00 class 0x088000
[ 0.647878] pci 0000:00:08.1: [8086:2015] type 00 class 0x110100
[ 0.647975] pci 0000:00:08.2: [8086:2016] type 00 class 0x088000
[ 0.648118] pci 0000:00:11.0: [8086:a1ec] type 00 class 0xff0000
[ 0.648124] pci 0000:00:11.0: device has non-compliant BARs; disabling IO/MEM decoding
[ 0.648259] pci 0000:00:11.5: [8086:a1d2] type 00 class 0x010601
[ 0.648284] pci 0000:00:11.5: reg 0x10: [mem 0x92f16000-0x92f17fff]
[ 0.648301] pci 0000:00:11.5: reg 0x14: [mem 0x92f1f000-0x92f1f0ff]
[ 0.648317] pci 0000:00:11.5: reg 0x18: [io 0x2068-0x206f]
[ 0.648334] pci 0000:00:11.5: reg 0x1c: [io 0x2074-0x2077]
[ 0.648350] pci 0000:00:11.5: reg 0x20: [io 0x2040-0x205f]
[ 0.648366] pci 0000:00:11.5: reg 0x24: [mem 0x92e80000-0x92efffff]
[ 0.648412] pci 0000:00:11.5: PME# supported from D3hot
[ 0.648697] pci 0000:00:14.0: [8086:a1af] type 00 class 0x0c0330
[ 0.648729] pci 0000:00:14.0: reg 0x10: [mem 0x92f00000-0x92f0ffff 64bit]
[ 0.648826] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.649193] pci 0000:00:14.2: [8086:a1b1] type 00 class 0x118000
[ 0.649225] pci 0000:00:14.2: reg 0x10: [mem 0x92f1c000-0x92f1cfff 64bit]
[ 0.649418] pci 0000:00:16.0: [8086:a1ba] type 00 class 0x078000
[ 0.649457] pci 0000:00:16.0: reg 0x10: [mem 0x92f1b000-0x92f1bfff 64bit]
[ 0.649574] pci 0000:00:16.0: PME# supported from D3hot
[ 0.649681] pci 0000:00:16.1: [8086:a1bb] type 00 class 0x078000
[ 0.649719] pci 0000:00:16.1: reg 0x10: [mem 0x92f1a000-0x92f1afff 64bit]
[ 0.649836] pci 0000:00:16.1: PME# supported from D3hot
[ 0.649944] pci 0000:00:16.4: [8086:a1be] type 00 class 0x078000
[ 0.649982] pci 0000:00:16.4: reg 0x10: [mem 0x92f19000-0x92f19fff 64bit]
[ 0.650097] pci 0000:00:16.4: PME# supported from D3hot
[ 0.650207] pci 0000:00:17.0: [8086:a182] type 00 class 0x010601
[ 0.650232] pci 0000:00:17.0: reg 0x10: [mem 0x92f14000-0x92f15fff]
[ 0.650248] pci 0000:00:17.0: reg 0x14: [mem 0x92f1e000-0x92f1e0ff]
[ 0.650265] pci 0000:00:17.0: reg 0x18: [io 0x2060-0x2067]
[ 0.650281] pci 0000:00:17.0: reg 0x1c: [io 0x2070-0x2073]
[ 0.650297] pci 0000:00:17.0: reg 0x20: [io 0x2020-0x203f]
[ 0.650313] pci 0000:00:17.0: reg 0x24: [mem 0x92e00000-0x92e7ffff]
[ 0.650359] pci 0000:00:17.0: PME# supported from D3hot
[ 0.650642] pci 0000:00:1c.0: [8086:a190] type 01 class 0x060400
[ 0.650740] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.651340] pci 0000:00:1c.4: [8086:a194] type 01 class 0x060400
[ 0.651437] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.652054] pci 0000:00:1f.0: [8086:a1c1] type 00 class 0x060100
[ 0.652495] pci 0000:00:1f.2: [8086:a1a1] type 00 class 0x058000
[ 0.652522] pci 0000:00:1f.2: reg 0x10: [mem 0x92f10000-0x92f13fff]
[ 0.652857] pci 0000:00:1f.4: [8086:a1a3] type 00 class 0x0c0500
[ 0.652891] pci 0000:00:1f.4: reg 0x10: [mem 0x92f18000-0x92f180ff 64bit]
[ 0.652936] pci 0000:00:1f.4: reg 0x20: [io 0x2000-0x201f]
[ 0.653057] pci 0000:00:1f.5: [8086:a1a4] type 00 class 0x0c8000
[ 0.653084] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[ 0.653300] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.653308] pci 0000:00:1c.0: bridge window [mem 0x92a00000-0x92dfffff]
[ 0.653375] pci 0000:02:00.0: [1556:be00] type 01 class 0x060400
[ 0.656046] pci 0000:00:1c.4: PCI bridge to [bus 02-03]
[ 0.656063] pci 0000:00:1c.4: bridge window [mem 0x92000000-0x928fffff]
[ 0.656080] pci 0000:00:1c.4: bridge window [mem 0x91000000-0x91ffffff 64bit pref]
[ 0.656143] pci_bus 0000:03: extended config space not accessible
[ 0.656206] pci 0000:03:00.0: [102b:0536] type 00 class 0x030000
[ 0.656269] pci 0000:03:00.0: reg 0x10: [mem 0x91000000-0x91ffffff pref]
[ 0.656312] pci 0000:03:00.0: reg 0x14: [mem 0x92808000-0x9280bfff]
[ 0.656354] pci 0000:03:00.0: reg 0x18: [mem 0x92000000-0x927fffff]
[ 0.656508] pci 0000:03:00.0: BAR 0: assigned to efifb
[ 0.656537] pci 0000:03:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.656656] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.656667] pci 0000:02:00.0: bridge window [mem 0x92000000-0x928fffff]
[ 0.656676] pci 0000:02:00.0: bridge window [mem 0x91000000-0x91ffffff 64bit pref]
[ 0.656708] pci_bus 0000:00: on NUMA node 0
[ 0.657131] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[ 0.657217] ACPI: PCI: Interrupt link LNKB configured for IRQ 6
[ 0.657300] ACPI: PCI: Interrupt link LNKC configured for IRQ 5
[ 0.657383] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[ 0.657466] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[ 0.657548] ACPI: PCI: Interrupt link LNKF configured for IRQ 6
[ 0.657630] ACPI: PCI: Interrupt link LNKG configured for IRQ 5
[ 0.657712] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[ 0.658148] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 17-39])
[ 0.658155] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.658247] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 0.658399] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.658404] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.658721] PCI host bridge to bus 0000:17
[ 0.658725] pci_bus 0000:17: root bus resource [io 0x4000-0x5fff window]
[ 0.658730] pci_bus 0000:17: root bus resource [mem 0x9d800000-0xaaffffff window]
[ 0.658735] pci_bus 0000:17: root bus resource [mem 0x384000000000-0x387fffffffff window]
[ 0.658740] pci_bus 0000:17: root bus resource [bus 17-39]
[ 0.658766] pci 0000:17:00.0: [8086:2030] type 01 class 0x060400
[ 0.658849] pci 0000:17:00.0: PME# supported from D0 D3hot D3cold
[ 0.659288] pci 0000:17:02.0: [8086:2032] type 01 class 0x060400
[ 0.659337] pci 0000:17:02.0: enabling Extended Tags
[ 0.659376] pci 0000:17:02.0: PME# supported from D0 D3hot D3cold
[ 0.659548] pci 0000:17:03.0: [8086:2033] type 01 class 0x060400
[ 0.659597] pci 0000:17:03.0: enabling Extended Tags
[ 0.659635] pci 0000:17:03.0: PME# supported from D0 D3hot D3cold
[ 0.659768] pci 0000:17:05.0: [8086:2034] type 00 class 0x088000
[ 0.659881] pci 0000:17:05.2: [8086:2035] type 00 class 0x088000
[ 0.659992] pci 0000:17:05.4: [8086:2036] type 00 class 0x080020
[ 0.660012] pci 0000:17:05.4: reg 0x10: [mem 0x9dc00000-0x9dc00fff]
[ 0.660142] pci 0000:17:08.0: [8086:208d] type 00 class 0x088000
[ 0.660251] pci 0000:17:08.1: [8086:208d] type 00 class 0x088000
[ 0.660334] pci 0000:17:08.2: [8086:208d] type 00 class 0x088000
[ 0.660416] pci 0000:17:08.3: [8086:208d] type 00 class 0x088000
[ 0.660498] pci 0000:17:08.4: [8086:208d] type 00 class 0x088000
[ 0.660582] pci 0000:17:08.5: [8086:208d] type 00 class 0x088000
[ 0.660664] pci 0000:17:08.6: [8086:208d] type 00 class 0x088000
[ 0.660747] pci 0000:17:08.7: [8086:208d] type 00 class 0x088000
[ 0.660831] pci 0000:17:09.0: [8086:208d] type 00 class 0x088000
[ 0.660938] pci 0000:17:09.1: [8086:208d] type 00 class 0x088000
[ 0.661021] pci 0000:17:09.2: [8086:208d] type 00 class 0x088000
[ 0.661104] pci 0000:17:09.3: [8086:208d] type 00 class 0x088000
[ 0.661187] pci 0000:17:09.4: [8086:208d] type 00 class 0x088000
[ 0.661272] pci 0000:17:09.5: [8086:208d] type 00 class 0x088000
[ 0.661356] pci 0000:17:09.6: [8086:208d] type 00 class 0x088000
[ 0.661439] pci 0000:17:09.7: [8086:208d] type 00 class 0x088000
[ 0.661524] pci 0000:17:0a.0: [8086:208d] type 00 class 0x088000
[ 0.661631] pci 0000:17:0a.1: [8086:208d] type 00 class 0x088000
[ 0.661714] pci 0000:17:0a.2: [8086:208d] type 00 class 0x088000
[ 0.661796] pci 0000:17:0a.3: [8086:208d] type 00 class 0x088000
[ 0.661878] pci 0000:17:0a.4: [8086:208d] type 00 class 0x088000
[ 0.661960] pci 0000:17:0a.5: [8086:208d] type 00 class 0x088000
[ 0.662043] pci 0000:17:0a.6: [8086:208d] type 00 class 0x088000
[ 0.662126] pci 0000:17:0a.7: [8086:208d] type 00 class 0x088000
[ 0.662211] pci 0000:17:0b.0: [8086:208d] type 00 class 0x088000
[ 0.662319] pci 0000:17:0b.1: [8086:208d] type 00 class 0x088000
[ 0.662402] pci 0000:17:0b.2: [8086:208d] type 00 class 0x088000
[ 0.662485] pci 0000:17:0b.3: [8086:208d] type 00 class 0x088000
[ 0.662575] pci 0000:17:0e.0: [8086:208e] type 00 class 0x088000
[ 0.662683] pci 0000:17:0e.1: [8086:208e] type 00 class 0x088000
[ 0.662765] pci 0000:17:0e.2: [8086:208e] type 00 class 0x088000
[ 0.662849] pci 0000:17:0e.3: [8086:208e] type 00 class 0x088000
[ 0.662931] pci 0000:17:0e.4: [8086:208e] type 00 class 0x088000
[ 0.663014] pci 0000:17:0e.5: [8086:208e] type 00 class 0x088000
[ 0.663097] pci 0000:17:0e.6: [8086:208e] type 00 class 0x088000
[ 0.663179] pci 0000:17:0e.7: [8086:208e] type 00 class 0x088000
[ 0.663264] pci 0000:17:0f.0: [8086:208e] type 00 class 0x088000
[ 0.663374] pci 0000:17:0f.1: [8086:208e] type 00 class 0x088000
[ 0.663456] pci 0000:17:0f.2: [8086:208e] type 00 class 0x088000
[ 0.663539] pci 0000:17:0f.3: [8086:208e] type 00 class 0x088000
[ 0.663621] pci 0000:17:0f.4: [8086:208e] type 00 class 0x088000
[ 0.663708] pci 0000:17:0f.5: [8086:208e] type 00 class 0x088000
[ 0.663791] pci 0000:17:0f.6: [8086:208e] type 00 class 0x088000
[ 0.663874] pci 0000:17:0f.7: [8086:208e] type 00 class 0x088000
[ 0.663959] pci 0000:17:10.0: [8086:208e] type 00 class 0x088000
[ 0.664068] pci 0000:17:10.1: [8086:208e] type 00 class 0x088000
[ 0.664151] pci 0000:17:10.2: [8086:208e] type 00 class 0x088000
[ 0.664235] pci 0000:17:10.3: [8086:208e] type 00 class 0x088000
[ 0.664317] pci 0000:17:10.4: [8086:208e] type 00 class 0x088000
[ 0.664400] pci 0000:17:10.5: [8086:208e] type 00 class 0x088000
[ 0.664483] pci 0000:17:10.6: [8086:208e] type 00 class 0x088000
[ 0.664565] pci 0000:17:10.7: [8086:208e] type 00 class 0x088000
[ 0.664651] pci 0000:17:11.0: [8086:208e] type 00 class 0x088000
[ 0.664758] pci 0000:17:11.1: [8086:208e] type 00 class 0x088000
[ 0.664842] pci 0000:17:11.2: [8086:208e] type 00 class 0x088000
[ 0.664927] pci 0000:17:11.3: [8086:208e] type 00 class 0x088000
[ 0.665025] pci 0000:17:1d.0: [8086:2054] type 00 class 0x088000
[ 0.665133] pci 0000:17:1d.1: [8086:2055] type 00 class 0x088000
[ 0.665217] pci 0000:17:1d.2: [8086:2056] type 00 class 0x088000
[ 0.665301] pci 0000:17:1d.3: [8086:2057] type 00 class 0x088000
[ 0.665390] pci 0000:17:1e.0: [8086:2080] type 00 class 0x088000
[ 0.665501] pci 0000:17:1e.1: [8086:2081] type 00 class 0x088000
[ 0.665584] pci 0000:17:1e.2: [8086:2082] type 00 class 0x088000
[ 0.665701] pci 0000:17:1e.3: [8086:2083] type 00 class 0x088000
[ 0.665785] pci 0000:17:1e.4: [8086:2084] type 00 class 0x088000
[ 0.665872] pci 0000:17:1e.5: [8086:2085] type 00 class 0x088000
[ 0.665955] pci 0000:17:1e.6: [8086:2086] type 00 class 0x088000
[ 0.666078] pci 0000:1a:00.0: [1000:005f] type 00 class 0x010400
[ 0.666099] pci 0000:1a:00.0: reg 0x10: [io 0x4000-0x40ff]
[ 0.666119] pci 0000:1a:00.0: reg 0x14: [mem 0x9db00000-0x9db0ffff 64bit]
[ 0.666140] pci 0000:1a:00.0: reg 0x1c: [mem 0x9da00000-0x9dafffff 64bit]
[ 0.666165] pci 0000:1a:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
[ 0.666179] pci 0000:1a:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
[ 0.666228] pci 0000:1a:00.0: supports D1 D2
[ 0.666305] pci 0000:17:00.0: PCI bridge to [bus 1a]
[ 0.666310] pci 0000:17:00.0: bridge window [io 0x4000-0x4fff]
[ 0.666315] pci 0000:17:00.0: bridge window [mem 0x9da00000-0x9dbfffff]
[ 0.666472] pci 0000:19:00.0: [14e4:165f] type 00 class 0x020000
[ 0.666505] pci 0000:19:00.0: reg 0x10: [mem 0x9d830000-0x9d83ffff 64bit pref]
[ 0.666529] pci 0000:19:00.0: reg 0x18: [mem 0x9d840000-0x9d84ffff 64bit pref]
[ 0.666553] pci 0000:19:00.0: reg 0x20: [mem 0x9d850000-0x9d85ffff 64bit pref]
[ 0.666570] pci 0000:19:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[ 0.666639] pci 0000:19:00.0: PME# supported from D0 D3hot D3cold
[ 0.666680] pci 0000:19:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:17:02.0 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[ 0.667059] pci 0000:19:00.1: [14e4:165f] type 00 class 0x020000
[ 0.667093] pci 0000:19:00.1: reg 0x10: [mem 0x9d800000-0x9d80ffff 64bit pref]
[ 0.667117] pci 0000:19:00.1: reg 0x18: [mem 0x9d810000-0x9d81ffff 64bit pref]
[ 0.667141] pci 0000:19:00.1: reg 0x20: [mem 0x9d820000-0x9d82ffff 64bit pref]
[ 0.667158] pci 0000:19:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[ 0.667227] pci 0000:19:00.1: PME# supported from D0 D3hot D3cold
[ 0.667605] pci 0000:17:02.0: PCI bridge to [bus 19]
[ 0.667613] pci 0000:17:02.0: bridge window [mem 0x9d800000-0x9d8fffff 64bit pref]
[ 0.667683] pci 0000:18:00.0: [14e4:165f] type 00 class 0x020000
[ 0.667715] pci 0000:18:00.0: reg 0x10: [mem 0x9d930000-0x9d93ffff 64bit pref]
[ 0.667740] pci 0000:18:00.0: reg 0x18: [mem 0x9d940000-0x9d94ffff 64bit pref]
[ 0.667764] pci 0000:18:00.0: reg 0x20: [mem 0x9d950000-0x9d95ffff 64bit pref]
[ 0.667781] pci 0000:18:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[ 0.667849] pci 0000:18:00.0: PME# supported from D0 D3hot D3cold
[ 0.667890] pci 0000:18:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:17:03.0 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
[ 0.668244] pci 0000:18:00.1: [14e4:165f] type 00 class 0x020000
[ 0.668277] pci 0000:18:00.1: reg 0x10: [mem 0x9d900000-0x9d90ffff 64bit pref]
[ 0.668302] pci 0000:18:00.1: reg 0x18: [mem 0x9d910000-0x9d91ffff 64bit pref]
[ 0.668326] pci 0000:18:00.1: reg 0x20: [mem 0x9d920000-0x9d92ffff 64bit pref]
[ 0.668343] pci 0000:18:00.1: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[ 0.668411] pci 0000:18:00.1: PME# supported from D0 D3hot D3cold
[ 0.668794] pci 0000:17:03.0: PCI bridge to [bus 18]
[ 0.668802] pci 0000:17:03.0: bridge window [mem 0x9d900000-0x9d9fffff 64bit pref]
[ 0.668836] pci_bus 0000:17: on NUMA node 0
[ 0.669025] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 3a-5c])
[ 0.669032] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.669112] acpi PNP0A08:02: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 0.669243] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.669248] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.669472] PCI host bridge to bus 0000:3a
[ 0.669476] pci_bus 0000:3a: root bus resource [io 0x6000-0x7fff window]
[ 0.669480] pci_bus 0000:3a: root bus resource [mem 0xab000000-0xb87fffff window]
[ 0.669485] pci_bus 0000:3a: root bus resource [mem 0x388000000000-0x38bfffffffff window]
[ 0.669491] pci_bus 0000:3a: root bus resource [bus 3a-5c]
[ 0.669514] pci 0000:3a:00.0: [8086:2030] type 01 class 0x060400
[ 0.669595] pci 0000:3a:00.0: PME# supported from D0 D3hot D3cold
[ 0.670037] pci 0000:3a:05.0: [8086:2034] type 00 class 0x088000
[ 0.670151] pci 0000:3a:05.2: [8086:2035] type 00 class 0x088000
[ 0.670262] pci 0000:3a:05.4: [8086:2036] type 00 class 0x080020
[ 0.670281] pci 0000:3a:05.4: reg 0x10: [mem 0xab000000-0xab000fff]
[ 0.670411] pci 0000:3a:08.0: [8086:2066] type 00 class 0x088000
[ 0.670540] pci 0000:3a:09.0: [8086:2066] type 00 class 0x088000
[ 0.670669] pci 0000:3a:0a.0: [8086:2040] type 00 class 0x088000
[ 0.670799] pci 0000:3a:0a.1: [8086:2041] type 00 class 0x088000
[ 0.670899] pci 0000:3a:0a.2: [8086:2042] type 00 class 0x088000
[ 0.670998] pci 0000:3a:0a.3: [8086:2043] type 00 class 0x088000
[ 0.671096] pci 0000:3a:0a.4: [8086:2044] type 00 class 0x088000
[ 0.671196] pci 0000:3a:0a.5: [8086:2045] type 00 class 0x088000
[ 0.671296] pci 0000:3a:0a.6: [8086:2046] type 00 class 0x088000
[ 0.671395] pci 0000:3a:0a.7: [8086:2047] type 00 class 0x088000
[ 0.671496] pci 0000:3a:0b.0: [8086:2048] type 00 class 0x088000
[ 0.671621] pci 0000:3a:0b.1: [8086:2049] type 00 class 0x088000
[ 0.671721] pci 0000:3a:0b.2: [8086:204a] type 00 class 0x088000
[ 0.671820] pci 0000:3a:0b.3: [8086:204b] type 00 class 0x088000
[ 0.671923] pci 0000:3a:0c.0: [8086:2040] type 00 class 0x088000
[ 0.672049] pci 0000:3a:0c.1: [8086:2041] type 00 class 0x088000
[ 0.672150] pci 0000:3a:0c.2: [8086:2042] type 00 class 0x088000
[ 0.672251] pci 0000:3a:0c.3: [8086:2043] type 00 class 0x088000
[ 0.672352] pci 0000:3a:0c.4: [8086:2044] type 00 class 0x088000
[ 0.672454] pci 0000:3a:0c.5: [8086:2045] type 00 class 0x088000
[ 0.672555] pci 0000:3a:0c.6: [8086:2046] type 00 class 0x088000
[ 0.672655] pci 0000:3a:0c.7: [8086:2047] type 00 class 0x088000
[ 0.672758] pci 0000:3a:0d.0: [8086:2048] type 00 class 0x088000
[ 0.672884] pci 0000:3a:0d.1: [8086:2049] type 00 class 0x088000
[ 0.672985] pci 0000:3a:0d.2: [8086:204a] type 00 class 0x088000
[ 0.673085] pci 0000:3a:0d.3: [8086:204b] type 00 class 0x088000
[ 0.673254] pci 0000:3b:00.0: [8086:1593] type 00 class 0x020000
[ 0.673283] pci 0000:3b:00.0: reg 0x10: [mem 0x38bffa000000-0x38bffbffffff 64bit pref]
[ 0.673317] pci 0000:3b:00.0: reg 0x1c: [mem 0x38bffe030000-0x38bffe03ffff 64bit pref]
[ 0.673345] pci 0000:3b:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
[ 0.673738] pci 0000:3b:00.0: reg 0x184: [mem 0x38bffd800000-0x38bffd81ffff 64bit pref]
[ 0.673743] pci 0000:3b:00.0: VF(n) BAR0 space: [mem 0x38bffd800000-0x38bffdffffff 64bit pref] (contains BAR0 for 64 VFs)
[ 0.673766] pci 0000:3b:00.0: reg 0x190: [mem 0x38bffe340000-0x38bffe343fff 64bit pref]
[ 0.673771] pci 0000:3b:00.0: VF(n) BAR3 space: [mem 0x38bffe340000-0x38bffe43ffff 64bit pref] (contains BAR3 for 64 VFs)
[ 0.673907] pci 0000:3b:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 0.674048] pci 0000:3b:00.1: [8086:1593] type 00 class 0x020000
[ 0.674077] pci 0000:3b:00.1: reg 0x10: [mem 0x38bff8000000-0x38bff9ffffff 64bit pref]
[ 0.674110] pci 0000:3b:00.1: reg 0x1c: [mem 0x38bffe020000-0x38bffe02ffff 64bit pref]
[ 0.674138] pci 0000:3b:00.1: reg 0x30: [mem 0xfff00000-0xffffffff pref]
[ 0.674382] pci 0000:3b:00.1: reg 0x184: [mem 0x38bffd000000-0x38bffd01ffff 64bit pref]
[ 0.674387] pci 0000:3b:00.1: VF(n) BAR0 space: [mem 0x38bffd000000-0x38bffd7fffff 64bit pref] (contains BAR0 for 64 VFs)
[ 0.674410] pci 0000:3b:00.1: reg 0x190: [mem 0x38bffe240000-0x38bffe243fff 64bit pref]
[ 0.674414] pci 0000:3b:00.1: VF(n) BAR3 space: [mem 0x38bffe240000-0x38bffe33ffff 64bit pref] (contains BAR3 for 64 VFs)
[ 0.674628] pci 0000:3b:00.2: [8086:1593] type 00 class 0x020000
[ 0.674657] pci 0000:3b:00.2: reg 0x10: [mem 0x38bff6000000-0x38bff7ffffff 64bit pref]
[ 0.674690] pci 0000:3b:00.2: reg 0x1c: [mem 0x38bffe010000-0x38bffe01ffff 64bit pref]
[ 0.674717] pci 0000:3b:00.2: reg 0x30: [mem 0xfff00000-0xffffffff pref]
[ 0.674956] pci 0000:3b:00.2: reg 0x184: [mem 0x38bffc800000-0x38bffc81ffff 64bit pref]
[ 0.674962] pci 0000:3b:00.2: VF(n) BAR0 space: [mem 0x38bffc800000-0x38bffcffffff 64bit pref] (contains BAR0 for 64 VFs)
[ 0.674984] pci 0000:3b:00.2: reg 0x190: [mem 0x38bffe140000-0x38bffe143fff 64bit pref]
[ 0.674989] pci 0000:3b:00.2: VF(n) BAR3 space: [mem 0x38bffe140000-0x38bffe23ffff 64bit pref] (contains BAR3 for 64 VFs)
[ 0.675195] pci 0000:3b:00.3: [8086:1593] type 00 class 0x020000
[ 0.675224] pci 0000:3b:00.3: reg 0x10: [mem 0x38bff4000000-0x38bff5ffffff 64bit pref]
[ 0.675257] pci 0000:3b:00.3: reg 0x1c: [mem 0x38bffe000000-0x38bffe00ffff 64bit pref]
[ 0.675284] pci 0000:3b:00.3: reg 0x30: [mem 0xfff00000-0xffffffff pref]
[ 0.675525] pci 0000:3b:00.3: reg 0x184: [mem 0x38bffc000000-0x38bffc01ffff 64bit pref]
[ 0.675530] pci 0000:3b:00.3: VF(n) BAR0 space: [mem 0x38bffc000000-0x38bffc7fffff 64bit pref] (contains BAR0 for 64 VFs)
[ 0.675552] pci 0000:3b:00.3: reg 0x190: [mem 0x38bffe040000-0x38bffe043fff 64bit pref]
[ 0.675557] pci 0000:3b:00.3: VF(n) BAR3 space: [mem 0x38bffe040000-0x38bffe13ffff 64bit pref] (contains BAR3 for 64 VFs)
[ 0.675760] pci 0000:3a:00.0: PCI bridge to [bus 3b-3d]
[ 0.675768] pci 0000:3a:00.0: bridge window [mem 0x38bff4000000-0x38bffe4fffff 64bit pref]
[ 0.675785] pci_bus 0000:3a: on NUMA node 0
[ 0.675919] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 5d-7f])
[ 0.675926] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.676004] acpi PNP0A08:03: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 0.676136] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.676141] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.676422] PCI host bridge to bus 0000:5d
[ 0.676425] pci_bus 0000:5d: root bus resource [io 0x8000-0x9fff window]
[ 0.676430] pci_bus 0000:5d: root bus resource [mem 0xb8800000-0xc5ffffff window]
[ 0.676435] pci_bus 0000:5d: root bus resource [mem 0x38c000000000-0x38ffffffffff window]
[ 0.676440] pci_bus 0000:5d: root bus resource [bus 5d-7f]
[ 0.676458] pci 0000:5d:05.0: [8086:2034] type 00 class 0x088000
[ 0.676578] pci 0000:5d:05.2: [8086:2035] type 00 class 0x088000
[ 0.676694] pci 0000:5d:05.4: [8086:2036] type 00 class 0x080020
[ 0.676713] pci 0000:5d:05.4: reg 0x10: [mem 0xb8800000-0xb8800fff]
[ 0.676850] pci 0000:5d:0e.0: [8086:2058] type 00 class 0x110100
[ 0.676977] pci 0000:5d:0e.1: [8086:2059] type 00 class 0x088000
[ 0.677080] pci 0000:5d:0f.0: [8086:2058] type 00 class 0x110100
[ 0.677205] pci 0000:5d:0f.1: [8086:2059] type 00 class 0x088000
[ 0.677307] pci 0000:5d:10.0: [8086:2058] type 00 class 0x110100
[ 0.677438] pci 0000:5d:10.1: [8086:2059] type 00 class 0x088000
[ 0.677543] pci 0000:5d:12.0: [8086:204c] type 00 class 0x110100
[ 0.677667] pci 0000:5d:12.1: [8086:204d] type 00 class 0x110100
[ 0.677750] pci 0000:5d:12.2: [8086:204e] type 00 class 0x088000
[ 0.677842] pci 0000:5d:12.4: [8086:204c] type 00 class 0x110100
[ 0.677943] pci 0000:5d:12.5: [8086:204d] type 00 class 0x110100
[ 0.678030] pci 0000:5d:15.0: [8086:2018] type 00 class 0x088000
[ 0.678142] pci 0000:5d:16.0: [8086:2018] type 00 class 0x088000
[ 0.678251] pci 0000:5d:16.4: [8086:2018] type 00 class 0x088000
[ 0.678338] pci 0000:5d:17.0: [8086:2018] type 00 class 0x088000
[ 0.678452] pci_bus 0000:5d: on NUMA node 0
[ 0.678682] ACPI: PCI Root Bridge [PC06] (domain 0000 [bus 80-84])
[ 0.678689] acpi PNP0A08:06: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.678768] acpi PNP0A08:06: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 0.678900] acpi PNP0A08:06: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.678905] acpi PNP0A08:06: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.678949] acpi PNP0A08:06: host bridge window [io 0x0000 window] (ignored, not CPU addressable)
[ 0.679104] PCI host bridge to bus 0000:80
[ 0.679107] pci_bus 0000:80: root bus resource [mem 0xc6000000-0xd37fffff window]
[ 0.679113] pci_bus 0000:80: root bus resource [mem 0x390000000000-0x393fffffffff window]
[ 0.679118] pci_bus 0000:80: root bus resource [bus 80-84]
[ 0.679150] pci 0000:80:05.0: [8086:2024] type 00 class 0x088000
[ 0.679299] pci 0000:80:05.2: [8086:2025] type 00 class 0x088000
[ 0.679418] pci 0000:80:05.4: [8086:2026] type 00 class 0x080020
[ 0.679438] pci 0000:80:05.4: reg 0x10: [mem 0xc6000000-0xc6000fff]
[ 0.679575] pci 0000:80:08.0: [8086:2014] type 00 class 0x088000
[ 0.679700] pci 0000:80:08.1: [8086:2015] type 00 class 0x110100
[ 0.679788] pci 0000:80:08.2: [8086:2016] type 00 class 0x088000
[ 0.679897] pci_bus 0000:80: on NUMA node 1
[ 0.680003] ACPI: PCI Root Bridge [PC07] (domain 0000 [bus 85-ad])
[ 0.680009] acpi PNP0A08:07: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.680086] acpi PNP0A08:07: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 0.680217] acpi PNP0A08:07: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.680222] acpi PNP0A08:07: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.680545] PCI host bridge to bus 0000:85
[ 0.680549] pci_bus 0000:85: root bus resource [io 0xa000-0xbfff window]
[ 0.680553] pci_bus 0000:85: root bus resource [mem 0xd3800000-0xe0ffffff window]
[ 0.680558] pci_bus 0000:85: root bus resource [mem 0x394000000000-0x397fffffffff window]
[ 0.680563] pci_bus 0000:85: root bus resource [bus 85-ad]
[ 0.680590] pci 0000:85:00.0: [8086:2030] type 01 class 0x060400
[ 0.680642] pci 0000:85:00.0: enabling Extended Tags
[ 0.680686] pci 0000:85:00.0: PME# supported from D0 D3hot D3cold
[ 0.681144] pci 0000:85:05.0: [8086:2034] type 00 class 0x088000
[ 0.681265] pci 0000:85:05.2: [8086:2035] type 00 class 0x088000
[ 0.681382] pci 0000:85:05.4: [8086:2036] type 00 class 0x080020
[ 0.681402] pci 0000:85:05.4: reg 0x10: [mem 0xd4500000-0xd4500fff]
[ 0.681537] pci 0000:85:08.0: [8086:208d] type 00 class 0x088000
[ 0.681651] pci 0000:85:08.1: [8086:208d] type 00 class 0x088000
[ 0.681737] pci 0000:85:08.2: [8086:208d] type 00 class 0x088000
[ 0.681825] pci 0000:85:08.3: [8086:208d] type 00 class 0x088000
[ 0.681912] pci 0000:85:08.4: [8086:208d] type 00 class 0x088000
[ 0.682002] pci 0000:85:08.5: [8086:208d] type 00 class 0x088000
[ 0.682088] pci 0000:85:08.6: [8086:208d] type 00 class 0x088000
[ 0.682176] pci 0000:85:08.7: [8086:208d] type 00 class 0x088000
[ 0.682264] pci 0000:85:09.0: [8086:208d] type 00 class 0x088000
[ 0.682379] pci 0000:85:09.1: [8086:208d] type 00 class 0x088000
[ 0.682466] pci 0000:85:09.2: [8086:208d] type 00 class 0x088000
[ 0.682553] pci 0000:85:09.3: [8086:208d] type 00 class 0x088000
[ 0.682640] pci 0000:85:09.4: [8086:208d] type 00 class 0x088000
[ 0.682726] pci 0000:85:09.5: [8086:208d] type 00 class 0x088000
[ 0.682813] pci 0000:85:09.6: [8086:208d] type 00 class 0x088000
[ 0.682900] pci 0000:85:09.7: [8086:208d] type 00 class 0x088000
[ 0.682989] pci 0000:85:0a.0: [8086:208d] type 00 class 0x088000
[ 0.683103] pci 0000:85:0a.1: [8086:208d] type 00 class 0x088000
[ 0.683190] pci 0000:85:0a.2: [8086:208d] type 00 class 0x088000
[ 0.683277] pci 0000:85:0a.3: [8086:208d] type 00 class 0x088000
[ 0.683364] pci 0000:85:0a.4: [8086:208d] type 00 class 0x088000
[ 0.683451] pci 0000:85:0a.5: [8086:208d] type 00 class 0x088000
[ 0.683538] pci 0000:85:0a.6: [8086:208d] type 00 class 0x088000
[ 0.683630] pci 0000:85:0a.7: [8086:208d] type 00 class 0x088000
[ 0.683718] pci 0000:85:0b.0: [8086:208d] type 00 class 0x088000
[ 0.683831] pci 0000:85:0b.1: [8086:208d] type 00 class 0x088000
[ 0.683919] pci 0000:85:0b.2: [8086:208d] type 00 class 0x088000
[ 0.684006] pci 0000:85:0b.3: [8086:208d] type 00 class 0x088000
[ 0.684100] pci 0000:85:0e.0: [8086:208e] type 00 class 0x088000
[ 0.684210] pci 0000:85:0e.1: [8086:208e] type 00 class 0x088000
[ 0.684296] pci 0000:85:0e.2: [8086:208e] type 00 class 0x088000
[ 0.684385] pci 0000:85:0e.3: [8086:208e] type 00 class 0x088000
[ 0.684472] pci 0000:85:0e.4: [8086:208e] type 00 class 0x088000
[ 0.684560] pci 0000:85:0e.5: [8086:208e] type 00 class 0x088000
[ 0.684646] pci 0000:85:0e.6: [8086:208e] type 00 class 0x088000
[ 0.684732] pci 0000:85:0e.7: [8086:208e] type 00 class 0x088000
[ 0.684820] pci 0000:85:0f.0: [8086:208e] type 00 class 0x088000
[ 0.684931] pci 0000:85:0f.1: [8086:208e] type 00 class 0x088000
[ 0.685020] pci 0000:85:0f.2: [8086:208e] type 00 class 0x088000
[ 0.685106] pci 0000:85:0f.3: [8086:208e] type 00 class 0x088000
[ 0.685192] pci 0000:85:0f.4: [8086:208e] type 00 class 0x088000
[ 0.685279] pci 0000:85:0f.5: [8086:208e] type 00 class 0x088000
[ 0.685366] pci 0000:85:0f.6: [8086:208e] type 00 class 0x088000
[ 0.685452] pci 0000:85:0f.7: [8086:208e] type 00 class 0x088000
[ 0.685541] pci 0000:85:10.0: [8086:208e] type 00 class 0x088000
[ 0.685652] pci 0000:85:10.1: [8086:208e] type 00 class 0x088000
[ 0.685740] pci 0000:85:10.2: [8086:208e] type 00 class 0x088000
[ 0.685826] pci 0000:85:10.3: [8086:208e] type 00 class 0x088000
[ 0.685911] pci 0000:85:10.4: [8086:208e] type 00 class 0x088000
[ 0.685998] pci 0000:85:10.5: [8086:208e] type 00 class 0x088000
[ 0.686085] pci 0000:85:10.6: [8086:208e] type 00 class 0x088000
[ 0.686171] pci 0000:85:10.7: [8086:208e] type 00 class 0x088000
[ 0.686258] pci 0000:85:11.0: [8086:208e] type 00 class 0x088000
[ 0.686368] pci 0000:85:11.1: [8086:208e] type 00 class 0x088000
[ 0.686456] pci 0000:85:11.2: [8086:208e] type 00 class 0x088000
[ 0.686542] pci 0000:85:11.3: [8086:208e] type 00 class 0x088000
[ 0.686643] pci 0000:85:1d.0: [8086:2054] type 00 class 0x088000
[ 0.686757] pci 0000:85:1d.1: [8086:2055] type 00 class 0x088000
[ 0.686844] pci 0000:85:1d.2: [8086:2056] type 00 class 0x088000
[ 0.686931] pci 0000:85:1d.3: [8086:2057] type 00 class 0x088000
[ 0.687023] pci 0000:85:1e.0: [8086:2080] type 00 class 0x088000
[ 0.687134] pci 0000:85:1e.1: [8086:2081] type 00 class 0x088000
[ 0.687220] pci 0000:85:1e.2: [8086:2082] type 00 class 0x088000
[ 0.687309] pci 0000:85:1e.3: [8086:2083] type 00 class 0x088000
[ 0.687395] pci 0000:85:1e.4: [8086:2084] type 00 class 0x088000
[ 0.687482] pci 0000:85:1e.5: [8086:2085] type 00 class 0x088000
[ 0.687569] pci 0000:85:1e.6: [8086:2086] type 00 class 0x088000
[ 0.687715] pci 0000:86:00.0: [8086:1563] type 00 class 0x020000
[ 0.687747] pci 0000:86:00.0: reg 0x10: [mem 0xd3c00000-0xd3ffffff 64bit pref]
[ 0.687796] pci 0000:86:00.0: reg 0x20: [mem 0xd4204000-0xd4207fff 64bit pref]
[ 0.687813] pci 0000:86:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 0.688209] pci 0000:86:00.0: PME# supported from D0 D3hot
[ 0.688246] pci 0000:86:00.0: reg 0x184: [mem 0xd4208000-0xd420bfff 64bit pref]
[ 0.688251] pci 0000:86:00.0: VF(n) BAR0 space: [mem 0xd4208000-0xd4307fff 64bit pref] (contains BAR0 for 64 VFs)
[ 0.688276] pci 0000:86:00.0: reg 0x190: [mem 0xd4308000-0xd430bfff 64bit pref]
[ 0.688281] pci 0000:86:00.0: VF(n) BAR3 space: [mem 0xd4308000-0xd4407fff 64bit pref] (contains BAR3 for 64 VFs)
[ 0.688678] pci 0000:86:00.1: [8086:1563] type 00 class 0x020000
[ 0.688710] pci 0000:86:00.1: reg 0x10: [mem 0xd3800000-0xd3bfffff 64bit pref]
[ 0.688759] pci 0000:86:00.1: reg 0x20: [mem 0xd4000000-0xd4003fff 64bit pref]
[ 0.688776] pci 0000:86:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 0.689011] pci 0000:86:00.1: PME# supported from D0 D3hot
[ 0.689042] pci 0000:86:00.1: reg 0x184: [mem 0xd4004000-0xd4007fff 64bit pref]
[ 0.689047] pci 0000:86:00.1: VF(n) BAR0 space: [mem 0xd4004000-0xd4103fff 64bit pref] (contains BAR0 for 64 VFs)
[ 0.689072] pci 0000:86:00.1: reg 0x190: [mem 0xd4104000-0xd4107fff 64bit pref]
[ 0.689077] pci 0000:86:00.1: VF(n) BAR3 space: [mem 0xd4104000-0xd4203fff 64bit pref] (contains BAR3 for 64 VFs)
[ 0.689333] pci 0000:85:00.0: PCI bridge to [bus 86-87]
[ 0.689342] pci 0000:85:00.0: bridge window [mem 0xd3800000-0xd44fffff 64bit pref]
[ 0.689361] pci_bus 0000:85: on NUMA node 1
[ 0.689524] ACPI: PCI Root Bridge [PC08] (domain 0000 [bus ae-d6])
[ 0.689530] acpi PNP0A08:08: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.689608] acpi PNP0A08:08: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 0.689739] acpi PNP0A08:08: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.689744] acpi PNP0A08:08: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.690014] PCI host bridge to bus 0000:ae
[ 0.690018] pci_bus 0000:ae: root bus resource [io 0xc000-0xdfff window]
[ 0.690022] pci_bus 0000:ae: root bus resource [mem 0xe1000000-0xee7fffff window]
[ 0.690027] pci_bus 0000:ae: root bus resource [mem 0x398000000000-0x39bfffffffff window]
[ 0.690032] pci_bus 0000:ae: root bus resource [bus ae-d6]
[ 0.690058] pci 0000:ae:00.0: [8086:2030] type 01 class 0x060400
[ 0.690147] pci 0000:ae:00.0: PME# supported from D0 D3hot D3cold
[ 0.690647] pci 0000:ae:05.0: [8086:2034] type 00 class 0x088000
[ 0.690766] pci 0000:ae:05.2: [8086:2035] type 00 class 0x088000
[ 0.690883] pci 0000:ae:05.4: [8086:2036] type 00 class 0x080020
[ 0.690903] pci 0000:ae:05.4: reg 0x10: [mem 0xe3b00000-0xe3b00fff]
[ 0.691039] pci 0000:ae:08.0: [8086:2066] type 00 class 0x088000
[ 0.691176] pci 0000:ae:09.0: [8086:2066] type 00 class 0x088000
[ 0.691309] pci 0000:ae:0a.0: [8086:2040] type 00 class 0x088000
[ 0.691440] pci 0000:ae:0a.1: [8086:2041] type 00 class 0x088000
[ 0.691547] pci 0000:ae:0a.2: [8086:2042] type 00 class 0x088000
[ 0.691651] pci 0000:ae:0a.3: [8086:2043] type 00 class 0x088000
[ 0.691756] pci 0000:ae:0a.4: [8086:2044] type 00 class 0x088000
[ 0.691860] pci 0000:ae:0a.5: [8086:2045] type 00 class 0x088000
[ 0.691966] pci 0000:ae:0a.6: [8086:2046] type 00 class 0x088000
[ 0.692073] pci 0000:ae:0a.7: [8086:2047] type 00 class 0x088000
[ 0.692179] pci 0000:ae:0b.0: [8086:2048] type 00 class 0x088000
[ 0.692309] pci 0000:ae:0b.1: [8086:2049] type 00 class 0x088000
[ 0.692414] pci 0000:ae:0b.2: [8086:204a] type 00 class 0x088000
[ 0.692519] pci 0000:ae:0b.3: [8086:204b] type 00 class 0x088000
[ 0.692627] pci 0000:ae:0c.0: [8086:2040] type 00 class 0x088000
[ 0.692759] pci 0000:ae:0c.1: [8086:2041] type 00 class 0x088000
[ 0.692870] pci 0000:ae:0c.2: [8086:2042] type 00 class 0x088000
[ 0.692979] pci 0000:ae:0c.3: [8086:2043] type 00 class 0x088000
[ 0.693086] pci 0000:ae:0c.4: [8086:2044] type 00 class 0x088000
[ 0.693192] pci 0000:ae:0c.5: [8086:2045] type 00 class 0x088000
[ 0.693299] pci 0000:ae:0c.6: [8086:2046] type 00 class 0x088000
[ 0.693406] pci 0000:ae:0c.7: [8086:2047] type 00 class 0x088000
[ 0.693514] pci 0000:ae:0d.0: [8086:2048] type 00 class 0x088000
[ 0.693647] pci 0000:ae:0d.1: [8086:2049] type 00 class 0x088000
[ 0.693755] pci 0000:ae:0d.2: [8086:204a] type 00 class 0x088000
[ 0.693862] pci 0000:ae:0d.3: [8086:204b] type 00 class 0x088000
[ 0.694034] pci 0000:af:00.0: [8086:1572] type 00 class 0x020000
[ 0.694064] pci 0000:af:00.0: reg 0x10: [mem 0xe2800000-0xe2ffffff 64bit pref]
[ 0.694099] pci 0000:af:00.0: reg 0x1c: [mem 0xe3818000-0xe381ffff 64bit pref]
[ 0.694127] pci 0000:af:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 0.694596] pci 0000:af:00.0: PME# supported from D0 D3hot D3cold
[ 0.694629] pci 0000:af:00.0: reg 0x184: [mem 0xe3600000-0xe360ffff 64bit pref]
[ 0.694634] pci 0000:af:00.0: VF(n) BAR0 space: [mem 0xe3600000-0xe37fffff 64bit pref] (contains BAR0 for 32 VFs)
[ 0.694658] pci 0000:af:00.0: reg 0x190: [mem 0xe39a0000-0xe39a3fff 64bit pref]
[ 0.694662] pci 0000:af:00.0: VF(n) BAR3 space: [mem 0xe39a0000-0xe3a1ffff 64bit pref] (contains BAR3 for 32 VFs)
[ 0.694753] pci 0000:af:00.0: 31.504 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x4 link at 0000:ae:00.0 (capable of 63.008 Gb/s with 8.0 GT/s PCIe x8 link)
[ 0.695030] pci 0000:af:00.1: [8086:1572] type 00 class 0x020000
[ 0.695060] pci 0000:af:00.1: reg 0x10: [mem 0xe2000000-0xe27fffff 64bit pref]
[ 0.695095] pci 0000:af:00.1: reg 0x1c: [mem 0xe3810000-0xe3817fff 64bit pref]
[ 0.695123] pci 0000:af:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 0.695348] pci 0000:af:00.1: PME# supported from D0 D3hot D3cold
[ 0.695376] pci 0000:af:00.1: reg 0x184: [mem 0xe3400000-0xe340ffff 64bit pref]
[ 0.695381] pci 0000:af:00.1: VF(n) BAR0 space: [mem 0xe3400000-0xe35fffff 64bit pref] (contains BAR0 for 32 VFs)
[ 0.695404] pci 0000:af:00.1: reg 0x190: [mem 0xe3920000-0xe3923fff 64bit pref]
[ 0.695409] pci 0000:af:00.1: VF(n) BAR3 space: [mem 0xe3920000-0xe399ffff 64bit pref] (contains BAR3 for 32 VFs)
[ 0.695582] pci 0000:af:00.2: [8086:1572] type 00 class 0x020000
[ 0.695612] pci 0000:af:00.2: reg 0x10: [mem 0xe1800000-0xe1ffffff 64bit pref]
[ 0.695647] pci 0000:af:00.2: reg 0x1c: [mem 0xe3808000-0xe380ffff 64bit pref]
[ 0.695674] pci 0000:af:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 0.695896] pci 0000:af:00.2: PME# supported from D0 D3hot D3cold
[ 0.695924] pci 0000:af:00.2: reg 0x184: [mem 0xe3200000-0xe320ffff 64bit pref]
[ 0.695928] pci 0000:af:00.2: VF(n) BAR0 space: [mem 0xe3200000-0xe33fffff 64bit pref] (contains BAR0 for 32 VFs)
[ 0.695951] pci 0000:af:00.2: reg 0x190: [mem 0xe38a0000-0xe38a3fff 64bit pref]
[ 0.695956] pci 0000:af:00.2: VF(n) BAR3 space: [mem 0xe38a0000-0xe391ffff 64bit pref] (contains BAR3 for 32 VFs)
[ 0.696126] pci 0000:af:00.3: [8086:1572] type 00 class 0x020000
[ 0.696156] pci 0000:af:00.3: reg 0x10: [mem 0xe1000000-0xe17fffff 64bit pref]
[ 0.696191] pci 0000:af:00.3: reg 0x1c: [mem 0xe3800000-0xe3807fff 64bit pref]
[ 0.696218] pci 0000:af:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[ 0.696441] pci 0000:af:00.3: PME# supported from D0 D3hot D3cold
[ 0.696469] pci 0000:af:00.3: reg 0x184: [mem 0xe3000000-0xe300ffff 64bit pref]
[ 0.696473] pci 0000:af:00.3: VF(n) BAR0 space: [mem 0xe3000000-0xe31fffff 64bit pref] (contains BAR0 for 32 VFs)
[ 0.696496] pci 0000:af:00.3: reg 0x190: [mem 0xe3820000-0xe3823fff 64bit pref]
[ 0.696501] pci 0000:af:00.3: VF(n) BAR3 space: [mem 0xe3820000-0xe389ffff 64bit pref] (contains BAR3 for 32 VFs)
[ 0.696679] pci 0000:ae:00.0: PCI bridge to [bus af-b0]
[ 0.696688] pci 0000:ae:00.0: bridge window [mem 0xe1000000-0xe3afffff 64bit pref]
[ 0.696705] pci_bus 0000:ae: on NUMA node 1
[ 0.696884] ACPI: PCI Root Bridge [PC09] (domain 0000 [bus d7-ff])
[ 0.696891] acpi PNP0A08:09: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.696970] acpi PNP0A08:09: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[ 0.697103] acpi PNP0A08:09: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.697108] acpi PNP0A08:09: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.697337] PCI host bridge to bus 0000:d7
[ 0.697341] pci_bus 0000:d7: root bus resource [io 0xe000-0xffff window]
[ 0.697345] pci_bus 0000:d7: root bus resource [mem 0xee800000-0xfbffffff window]
[ 0.697350] pci_bus 0000:d7: root bus resource [mem 0x39c000000000-0x39ffffffffff window]
[ 0.697356] pci_bus 0000:d7: root bus resource [bus d7-ff]
[ 0.697375] pci 0000:d7:05.0: [8086:2034] type 00 class 0x088000
[ 0.697503] pci 0000:d7:05.2: [8086:2035] type 00 class 0x088000
[ 0.697627] pci 0000:d7:05.4: [8086:2036] type 00 class 0x080020
[ 0.697647] pci 0000:d7:05.4: reg 0x10: [mem 0xee800000-0xee800fff]
[ 0.697791] pci 0000:d7:0e.0: [8086:2058] type 00 class 0x110100
[ 0.697926] pci 0000:d7:0e.1: [8086:2059] type 00 class 0x088000
[ 0.698036] pci 0000:d7:0f.0: [8086:2058] type 00 class 0x110100
[ 0.698169] pci 0000:d7:0f.1: [8086:2059] type 00 class 0x088000
[ 0.698279] pci 0000:d7:10.0: [8086:2058] type 00 class 0x110100
[ 0.698413] pci 0000:d7:10.1: [8086:2059] type 00 class 0x088000
[ 0.698524] pci 0000:d7:12.0: [8086:204c] type 00 class 0x110100
[ 0.698654] pci 0000:d7:12.1: [8086:204d] type 00 class 0x110100
[ 0.698742] pci 0000:d7:12.2: [8086:204e] type 00 class 0x088000
[ 0.698832] pci 0000:d7:12.4: [8086:204c] type 00 class 0x110100
[ 0.698937] pci 0000:d7:12.5: [8086:204d] type 00 class 0x110100
[ 0.699027] pci 0000:d7:15.0: [8086:2018] type 00 class 0x088000
[ 0.699146] pci 0000:d7:16.0: [8086:2018] type 00 class 0x088000
[ 0.699261] pci 0000:d7:16.4: [8086:2018] type 00 class 0x088000
[ 0.699352] pci 0000:d7:17.0: [8086:2018] type 00 class 0x088000
[ 0.699471] pci_bus 0000:d7: on NUMA node 1
[ 0.700290] iommu: Default domain type: Passthrough
[ 0.700290] SCSI subsystem initialized
[ 0.700290] ACPI: bus type USB registered
[ 0.700290] usbcore: registered new interface driver usbfs
[ 0.700290] usbcore: registered new interface driver hub
[ 0.700391] usbcore: registered new device driver usb
[ 0.700431] pps_core: LinuxPPS API ver. 1 registered
[ 0.700434] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.700441] PTP clock support registered
[ 0.700507] EDAC MC: Ver: 3.0.0
[ 0.701520] efivars: Registered efivars operations
[ 0.702232] NetLabel: Initializing
[ 0.702235] NetLabel: domain hash size = 128
[ 0.702238] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.702259] NetLabel: unlabeled traffic allowed by default
[ 0.702263] PCI: Using ACPI for IRQ routing
[ 0.705983] PCI: pci_cache_line_size set to 64 bytes
[ 0.706289] e820: reserve RAM buffer [mem 0x47aca020-0x47ffffff]
[ 0.706293] e820: reserve RAM buffer [mem 0x47aff020-0x47ffffff]
[ 0.706296] e820: reserve RAM buffer [mem 0x47b34020-0x47ffffff]
[ 0.706299] e820: reserve RAM buffer [mem 0x47b69020-0x47ffffff]
[ 0.706301] e820: reserve RAM buffer [mem 0x47b9e020-0x47ffffff]
[ 0.706304] e820: reserve RAM buffer [mem 0x47c01020-0x47ffffff]
[ 0.706306] e820: reserve RAM buffer [mem 0x47c64020-0x47ffffff]
[ 0.706308] e820: reserve RAM buffer [mem 0x47c98020-0x47ffffff]
[ 0.706310] e820: reserve RAM buffer [mem 0x47ccc020-0x47ffffff]
[ 0.706312] e820: reserve RAM buffer [mem 0x47d00020-0x47ffffff]
[ 0.706314] e820: reserve RAM buffer [mem 0x47d34020-0x47ffffff]
[ 0.706316] e820: reserve RAM buffer [mem 0x47d65020-0x47ffffff]
[ 0.706318] e820: reserve RAM buffer [mem 0x47d96020-0x47ffffff]
[ 0.706319] e820: reserve RAM buffer [mem 0x47dc7020-0x47ffffff]
[ 0.706321] e820: reserve RAM buffer [mem 0x47df8020-0x47ffffff]
[ 0.706322] e820: reserve RAM buffer [mem 0x47e11020-0x47ffffff]
[ 0.706323] e820: reserve RAM buffer [mem 0x4860d000-0x4bffffff]
[ 0.706324] e820: reserve RAM buffer [mem 0x682ff000-0x6bffffff]
[ 0.707070] pci 0000:03:00.0: vgaarb: setting as boot VGA device
[ 0.707070] pci 0000:03:00.0: vgaarb: bridge control possible
[ 0.707070] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.707110] vgaarb: loaded
[ 0.708333] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.708345] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[ 0.710199] clocksource: Switched to clocksource tsc-early
[ 0.710450] VFS: Disk quotas dquot_6.6.0
[ 0.710477] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.710570] pnp: PnP ACPI init
[ 0.715554] system 00:01: [io 0x0500-0x05fe] has been reserved
[ 0.715561] system 00:01: [io 0x0400-0x047f] has been reserved
[ 0.715566] system 00:01: [io 0x0600-0x061f] has been reserved
[ 0.715570] system 00:01: [io 0x0ca0-0x0ca5] has been reserved
[ 0.715574] system 00:01: [io 0x0880-0x0883] has been reserved
[ 0.715579] system 00:01: [io 0x0800-0x081f] has been reserved
[ 0.715584] system 00:01: [mem 0xfed1c000-0xfed3ffff] has been reserved
[ 0.715588] system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
[ 0.715593] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[ 0.715597] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.715602] system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
[ 0.715606] system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
[ 0.715611] system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
[ 0.716280] system 00:04: [mem 0xfd000000-0xfdabffff] has been reserved
[ 0.716287] system 00:04: [mem 0xfdad0000-0xfdadffff] has been reserved
[ 0.716291] system 00:04: [mem 0xfdb00000-0xfdffffff] has been reserved
[ 0.716296] system 00:04: [mem 0xfe000000-0xfe00ffff] has been reserved
[ 0.716300] system 00:04: [mem 0xfe011000-0xfe01ffff] has been reserved
[ 0.716305] system 00:04: [mem 0xfe036000-0xfe03bfff] has been reserved
[ 0.716310] system 00:04: [mem 0xfe03d000-0xfe3fffff] has been reserved
[ 0.716314] system 00:04: [mem 0xfe410000-0xfe7fffff] has been reserved
[ 0.716694] system 00:05: [io 0x1000-0x10fe] has been reserved
[ 0.717570] pnp: PnP ACPI: found 6 devices
[ 0.724321] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.724451] NET: Registered PF_INET protocol family
[ 0.725029] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[ 0.727927] tcp_listen_portaddr_hash hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[ 0.728424] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[ 0.728464] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[ 0.728988] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
[ 0.729976] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.730940] MPTCP token hash table entries: 65536 (order: 9, 3145728 bytes, vmalloc)
[ 0.731458] UDP hash table entries: 65536 (order: 10, 6291456 bytes, vmalloc hugepage)
[ 0.732553] UDP-Lite hash table entries: 65536 (order: 10, 6291456 bytes, vmalloc hugepage)
[ 0.733764] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.733955] RPC: Registered named UNIX socket transport module.
[ 0.733960] RPC: Registered udp transport module.
[ 0.733963] RPC: Registered tcp transport module.
[ 0.733967] RPC: Registered tcp-with-tls transport module.
[ 0.733971] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.733975] NET: Registered PF_XDP protocol family
[ 0.733987] pci 0000:1a:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[ 0.733995] pci 0000:19:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[ 0.734002] pci 0000:19:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[ 0.734008] pci 0000:18:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[ 0.734014] pci 0000:18:00.1: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[ 0.734022] pci 0000:3b:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[ 0.734028] pci 0000:3b:00.1: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[ 0.734034] pci 0000:3b:00.2: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[ 0.734039] pci 0000:3b:00.3: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[ 0.734046] pci 0000:86:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 0.734053] pci 0000:86:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 0.734061] pci 0000:af:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 0.734066] pci 0000:af:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 0.734071] pci 0000:af:00.2: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 0.734077] pci 0000:af:00.3: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[ 0.734084] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
[ 0.734091] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000 add_align 100000
[ 0.734105] pci 0000:00:1c.0: BAR 15: assigned [mem 0x380000000000-0x3800001fffff 64bit pref]
[ 0.734112] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
[ 0.734118] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.734122] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 0.734134] pci 0000:00:1c.0: bridge window [mem 0x92a00000-0x92dfffff]
[ 0.734143] pci 0000:00:1c.0: bridge window [mem 0x380000000000-0x3800001fffff 64bit pref]
[ 0.734158] pci 0000:02:00.0: PCI bridge to [bus 03]
[ 0.734170] pci 0000:02:00.0: bridge window [mem 0x92000000-0x928fffff]
[ 0.734179] pci 0000:02:00.0: bridge window [mem 0x91000000-0x91ffffff 64bit pref]
[ 0.734195] pci 0000:00:1c.4: PCI bridge to [bus 02-03]
[ 0.734206] pci 0000:00:1c.4: bridge window [mem 0x92000000-0x928fffff]
[ 0.734214] pci 0000:00:1c.4: bridge window [mem 0x91000000-0x91ffffff 64bit pref]
[ 0.734228] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.734233] pci_bus 0000:00: resource 5 [io 0x1000-0x3fff window]
[ 0.734237] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.734241] pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c7fff window]
[ 0.734245] pci_bus 0000:00: resource 8 [mem 0xfe010000-0xfe010fff window]
[ 0.734249] pci_bus 0000:00: resource 9 [mem 0x90000000-0x9d7fffff window]
[ 0.734253] pci_bus 0000:00: resource 10 [mem 0x380000000000-0x383fffffffff window]
[ 0.734258] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
[ 0.734261] pci_bus 0000:01: resource 1 [mem 0x92a00000-0x92dfffff]
[ 0.734265] pci_bus 0000:01: resource 2 [mem 0x380000000000-0x3800001fffff 64bit pref]
[ 0.734270] pci_bus 0000:02: resource 1 [mem 0x92000000-0x928fffff]
[ 0.734274] pci_bus 0000:02: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
[ 0.734278] pci_bus 0000:03: resource 1 [mem 0x92000000-0x928fffff]
[ 0.734282] pci_bus 0000:03: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
[ 0.734430] pci 0000:17:02.0: BAR 14: assigned [mem 0x9dd00000-0x9ddfffff]
[ 0.734435] pci 0000:17:03.0: BAR 14: assigned [mem 0x9de00000-0x9defffff]
[ 0.734440] pci 0000:1a:00.0: BAR 6: no space for [mem size 0x00100000 pref]
[ 0.734445] pci 0000:1a:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
[ 0.734450] pci 0000:17:00.0: PCI bridge to [bus 1a]
[ 0.734454] pci 0000:17:00.0: bridge window [io 0x4000-0x4fff]
[ 0.734464] pci 0000:17:00.0: bridge window [mem 0x9da00000-0x9dbfffff]
[ 0.734481] pci 0000:19:00.0: BAR 6: assigned [mem 0x9dd00000-0x9dd3ffff pref]
[ 0.734486] pci 0000:19:00.1: BAR 6: assigned [mem 0x9dd40000-0x9dd7ffff pref]
[ 0.734491] pci 0000:17:02.0: PCI bridge to [bus 19]
[ 0.734501] pci 0000:17:02.0: bridge window [mem 0x9dd00000-0x9ddfffff]
[ 0.734509] pci 0000:17:02.0: bridge window [mem 0x9d800000-0x9d8fffff 64bit pref]
[ 0.734522] pci 0000:18:00.0: BAR 6: assigned [mem 0x9de00000-0x9de3ffff pref]
[ 0.734527] pci 0000:18:00.1: BAR 6: assigned [mem 0x9de40000-0x9de7ffff pref]
[ 0.734531] pci 0000:17:03.0: PCI bridge to [bus 18]
[ 0.734541] pci 0000:17:03.0: bridge window [mem 0x9de00000-0x9defffff]
[ 0.734549] pci 0000:17:03.0: bridge window [mem 0x9d900000-0x9d9fffff 64bit pref]
[ 0.734563] pci_bus 0000:17: resource 4 [io 0x4000-0x5fff window]
[ 0.734568] pci_bus 0000:17: resource 5 [mem 0x9d800000-0xaaffffff window]
[ 0.734572] pci_bus 0000:17: resource 6 [mem 0x384000000000-0x387fffffffff window]
[ 0.734577] pci_bus 0000:1a: resource 0 [io 0x4000-0x4fff]
[ 0.734580] pci_bus 0000:1a: resource 1 [mem 0x9da00000-0x9dbfffff]
[ 0.734584] pci_bus 0000:19: resource 1 [mem 0x9dd00000-0x9ddfffff]
[ 0.734588] pci_bus 0000:19: resource 2 [mem 0x9d800000-0x9d8fffff 64bit pref]
[ 0.734593] pci_bus 0000:18: resource 1 [mem 0x9de00000-0x9defffff]
[ 0.734596] pci_bus 0000:18: resource 2 [mem 0x9d900000-0x9d9fffff 64bit pref]
[ 0.734630] pci 0000:3a:00.0: BAR 14: assigned [mem 0xab100000-0xab4fffff]
[ 0.734636] pci 0000:3b:00.0: BAR 6: assigned [mem 0xab100000-0xab1fffff pref]
[ 0.734640] pci 0000:3b:00.1: BAR 6: assigned [mem 0xab200000-0xab2fffff pref]
[ 0.734645] pci 0000:3b:00.2: BAR 6: assigned [mem 0xab300000-0xab3fffff pref]
[ 0.734650] pci 0000:3b:00.3: BAR 6: assigned [mem 0xab400000-0xab4fffff pref]
[ 0.734655] pci 0000:3a:00.0: PCI bridge to [bus 3b-3d]
[ 0.734665] pci 0000:3a:00.0: bridge window [mem 0xab100000-0xab4fffff]
[ 0.734673] pci 0000:3a:00.0: bridge window [mem 0x38bff4000000-0x38bffe4fffff 64bit pref]
[ 0.734687] pci_bus 0000:3a: resource 4 [io 0x6000-0x7fff window]
[ 0.734691] pci_bus 0000:3a: resource 5 [mem 0xab000000-0xb87fffff window]
[ 0.734695] pci_bus 0000:3a: resource 6 [mem 0x388000000000-0x38bfffffffff window]
[ 0.734700] pci_bus 0000:3b: resource 1 [mem 0xab100000-0xab4fffff]
[ 0.734703] pci_bus 0000:3b: resource 2 [mem 0x38bff4000000-0x38bffe4fffff 64bit pref]
[ 0.734726] pci_bus 0000:5d: resource 4 [io 0x8000-0x9fff window]
[ 0.734730] pci_bus 0000:5d: resource 5 [mem 0xb8800000-0xc5ffffff window]
[ 0.734735] pci_bus 0000:5d: resource 6 [mem 0x38c000000000-0x38ffffffffff window]
[ 0.734766] pci_bus 0000:80: resource 4 [mem 0xc6000000-0xd37fffff window]
[ 0.734770] pci_bus 0000:80: resource 5 [mem 0x390000000000-0x393fffffffff window]
[ 0.734792] pci 0000:85:00.0: BAR 14: assigned [mem 0xd4600000-0xd46fffff]
[ 0.734798] pci 0000:86:00.0: BAR 6: assigned [mem 0xd4600000-0xd467ffff pref]
[ 0.734803] pci 0000:86:00.1: BAR 6: assigned [mem 0xd4680000-0xd46fffff pref]
[ 0.734807] pci 0000:85:00.0: PCI bridge to [bus 86-87]
[ 0.734817] pci 0000:85:00.0: bridge window [mem 0xd4600000-0xd46fffff]
[ 0.734826] pci 0000:85:00.0: bridge window [mem 0xd3800000-0xd44fffff 64bit pref]
[ 0.734840] pci_bus 0000:85: resource 4 [io 0xa000-0xbfff window]
[ 0.734844] pci_bus 0000:85: resource 5 [mem 0xd3800000-0xe0ffffff window]
[ 0.734848] pci_bus 0000:85: resource 6 [mem 0x394000000000-0x397fffffffff window]
[ 0.734853] pci_bus 0000:86: resource 1 [mem 0xd4600000-0xd46fffff]
[ 0.734857] pci_bus 0000:86: resource 2 [mem 0xd3800000-0xd44fffff 64bit pref]
[ 0.734882] pci 0000:ae:00.0: BAR 14: assigned [mem 0xe3c00000-0xe3dfffff]
[ 0.734887] pci 0000:af:00.0: BAR 6: assigned [mem 0xe3c00000-0xe3c7ffff pref]
[ 0.734892] pci 0000:af:00.1: BAR 6: assigned [mem 0xe3c80000-0xe3cfffff pref]
[ 0.734897] pci 0000:af:00.2: BAR 6: assigned [mem 0xe3d00000-0xe3d7ffff pref]
[ 0.734906] pci 0000:af:00.3: BAR 6: assigned [mem 0xe3d80000-0xe3dfffff pref]
[ 0.734911] pci 0000:ae:00.0: PCI bridge to [bus af-b0]
[ 0.734921] pci 0000:ae:00.0: bridge window [mem 0xe3c00000-0xe3dfffff]
[ 0.734929] pci 0000:ae:00.0: bridge window [mem 0xe1000000-0xe3afffff 64bit pref]
[ 0.734943] pci_bus 0000:ae: resource 4 [io 0xc000-0xdfff window]
[ 0.734947] pci_bus 0000:ae: resource 5 [mem 0xe1000000-0xee7fffff window]
[ 0.734951] pci_bus 0000:ae: resource 6 [mem 0x398000000000-0x39bfffffffff window]
[ 0.734956] pci_bus 0000:af: resource 1 [mem 0xe3c00000-0xe3dfffff]
[ 0.734960] pci_bus 0000:af: resource 2 [mem 0xe1000000-0xe3afffff 64bit pref]
[ 0.735000] pci_bus 0000:d7: resource 4 [io 0xe000-0xffff window]
[ 0.735004] pci_bus 0000:d7: resource 5 [mem 0xee800000-0xfbffffff window]
[ 0.735009] pci_bus 0000:d7: resource 6 [mem 0x39c000000000-0x39ffffffffff window]
[ 0.735446] pci 0000:17:05.0: disabled boot interrupts on device [8086:2034]
[ 0.735552] pci 0000:3a:05.0: disabled boot interrupts on device [8086:2034]
[ 0.735602] pci 0000:5d:05.0: disabled boot interrupts on device [8086:2034]
[ 0.735640] pci 0000:85:05.0: disabled boot interrupts on device [8086:2034]
[ 0.735743] pci 0000:ae:05.0: disabled boot interrupts on device [8086:2034]
[ 0.735794] pci 0000:d7:05.0: disabled boot interrupts on device [8086:2034]
[ 0.735822] PCI: CLS 0 bytes, default 64
[ 0.735885] DMAR: [Firmware Bug]: RMRR entry for device 1a:00.0 is broken - applying workaround
[ 0.735974] Trying to unpack rootfs image as initramfs...
[ 0.735992] DMAR: No SATC found
[ 0.735998] DMAR: dmar5: Using Queued invalidation
[ 0.736006] DMAR: dmar4: Using Queued invalidation
[ 0.736013] DMAR: dmar2: Using Queued invalidation
[ 0.736018] DMAR: dmar1: Using Queued invalidation
[ 0.736024] DMAR: dmar7: Using Queued invalidation
[ 0.736205] pci 0000:3a:00.0: Adding to iommu group 0
[ 0.736295] pci 0000:3b:00.0: Adding to iommu group 1
[ 0.736374] pci 0000:3b:00.1: Adding to iommu group 2
[ 0.736453] pci 0000:3b:00.2: Adding to iommu group 3
[ 0.736532] pci 0000:3b:00.3: Adding to iommu group 4
[ 0.736693] pci 0000:17:00.0: Adding to iommu group 5
[ 0.736771] pci 0000:17:02.0: Adding to iommu group 6
[ 0.736850] pci 0000:17:03.0: Adding to iommu group 7
[ 0.737090] pci 0000:18:00.0: Adding to iommu group 8
[ 0.737186] pci 0000:18:00.1: Adding to iommu group 8
[ 0.737392] pci 0000:19:00.0: Adding to iommu group 9
[ 0.737490] pci 0000:19:00.1: Adding to iommu group 9
[ 0.737568] pci 0000:1a:00.0: Adding to iommu group 10
[ 0.737803] pci 0000:ae:00.0: Adding to iommu group 11
[ 0.737893] pci 0000:af:00.0: Adding to iommu group 12
[ 0.737977] pci 0000:af:00.1: Adding to iommu group 13
[ 0.738057] pci 0000:af:00.2: Adding to iommu group 14
[ 0.738135] pci 0000:af:00.3: Adding to iommu group 15
[ 0.738293] pci 0000:85:00.0: Adding to iommu group 16
[ 0.738394] pci 0000:86:00.0: Adding to iommu group 17
[ 0.738475] pci 0000:86:00.1: Adding to iommu group 18
[ 0.738594] pci 0000:00:00.0: Adding to iommu group 19
[ 0.738672] pci 0000:00:05.0: Adding to iommu group 20
[ 0.738750] pci 0000:00:05.2: Adding to iommu group 21
[ 0.738827] pci 0000:00:05.4: Adding to iommu group 22
[ 0.738910] pci 0000:00:08.0: Adding to iommu group 23
[ 0.739055] pci 0000:00:08.1: Adding to iommu group 24
[ 0.739132] pci 0000:00:08.2: Adding to iommu group 25
[ 0.739341] pci 0000:00:11.0: Adding to iommu group 26
[ 0.739418] pci 0000:00:11.5: Adding to iommu group 26
[ 0.739627] pci 0000:00:14.0: Adding to iommu group 27
[ 0.739706] pci 0000:00:14.2: Adding to iommu group 27
[ 0.739991] pci 0000:00:16.0: Adding to iommu group 28
[ 0.740069] pci 0000:00:16.1: Adding to iommu group 28
[ 0.740146] pci 0000:00:16.4: Adding to iommu group 28
[ 0.740222] pci 0000:00:17.0: Adding to iommu group 29
[ 0.740367] pci 0000:00:1c.0: Adding to iommu group 30
[ 0.740447] pci 0000:00:1c.4: Adding to iommu group 31
[ 0.740789] pci 0000:00:1f.0: Adding to iommu group 32
[ 0.740867] pci 0000:00:1f.2: Adding to iommu group 32
[ 0.740951] pci 0000:00:1f.4: Adding to iommu group 32
[ 0.741031] pci 0000:00:1f.5: Adding to iommu group 32
[ 0.741109] pci 0000:02:00.0: Adding to iommu group 33
[ 0.741117] pci 0000:03:00.0: Adding to iommu group 33
[ 0.741196] pci 0000:17:05.0: Adding to iommu group 34
[ 0.741274] pci 0000:17:05.2: Adding to iommu group 35
[ 0.741354] pci 0000:17:05.4: Adding to iommu group 36
[ 0.741975] pci 0000:17:08.0: Adding to iommu group 37
[ 0.742058] pci 0000:17:08.1: Adding to iommu group 37
[ 0.742141] pci 0000:17:08.2: Adding to iommu group 37
[ 0.742223] pci 0000:17:08.3: Adding to iommu group 37
[ 0.742305] pci 0000:17:08.4: Adding to iommu group 37
[ 0.742389] pci 0000:17:08.5: Adding to iommu group 37
[ 0.742472] pci 0000:17:08.6: Adding to iommu group 37
[ 0.742555] pci 0000:17:08.7: Adding to iommu group 37
[ 0.743167] pci 0000:17:09.0: Adding to iommu group 38
[ 0.743252] pci 0000:17:09.1: Adding to iommu group 38
[ 0.743336] pci 0000:17:09.2: Adding to iommu group 38
[ 0.743421] pci 0000:17:09.3: Adding to iommu group 38
[ 0.743507] pci 0000:17:09.4: Adding to iommu group 38
[ 0.743592] pci 0000:17:09.5: Adding to iommu group 38
[ 0.743676] pci 0000:17:09.6: Adding to iommu group 38
[ 0.743760] pci 0000:17:09.7: Adding to iommu group 38
[ 0.744377] pci 0000:17:0a.0: Adding to iommu group 39
[ 0.744463] pci 0000:17:0a.1: Adding to iommu group 39
[ 0.744549] pci 0000:17:0a.2: Adding to iommu group 39
[ 0.744636] pci 0000:17:0a.3: Adding to iommu group 39
[ 0.744723] pci 0000:17:0a.4: Adding to iommu group 39
[ 0.744808] pci 0000:17:0a.5: Adding to iommu group 39
[ 0.744894] pci 0000:17:0a.6: Adding to iommu group 39
[ 0.744986] pci 0000:17:0a.7: Adding to iommu group 39
[ 0.745332] pci 0000:17:0b.0: Adding to iommu group 40
[ 0.745422] pci 0000:17:0b.1: Adding to iommu group 40
[ 0.745512] pci 0000:17:0b.2: Adding to iommu group 40
[ 0.745600] pci 0000:17:0b.3: Adding to iommu group 40
[ 0.746214] pci 0000:17:0e.0: Adding to iommu group 41
[ 0.746303] pci 0000:17:0e.1: Adding to iommu group 41
[ 0.746393] pci 0000:17:0e.2: Adding to iommu group 41
[ 0.746481] pci 0000:17:0e.3: Adding to iommu group 41
[ 0.746571] pci 0000:17:0e.4: Adding to iommu group 41
[ 0.746661] pci 0000:17:0e.5: Adding to iommu group 41
[ 0.746752] pci 0000:17:0e.6: Adding to iommu group 41
[ 0.746842] pci 0000:17:0e.7: Adding to iommu group 41
[ 0.747459] pci 0000:17:0f.0: Adding to iommu group 42
[ 0.747550] pci 0000:17:0f.1: Adding to iommu group 42
[ 0.747641] pci 0000:17:0f.2: Adding to iommu group 42
[ 0.747732] pci 0000:17:0f.3: Adding to iommu group 42
[ 0.747824] pci 0000:17:0f.4: Adding to iommu group 42
[ 0.747918] pci 0000:17:0f.5: Adding to iommu group 42
[ 0.748009] pci 0000:17:0f.6: Adding to iommu group 42
[ 0.748100] pci 0000:17:0f.7: Adding to iommu group 42
[ 0.748713] pci 0000:17:10.0: Adding to iommu group 43
[ 0.748806] pci 0000:17:10.1: Adding to iommu group 43
[ 0.748899] pci 0000:17:10.2: Adding to iommu group 43
[ 0.748997] pci 0000:17:10.3: Adding to iommu group 43
[ 0.749090] pci 0000:17:10.4: Adding to iommu group 43
[ 0.749182] pci 0000:17:10.5: Adding to iommu group 43
[ 0.749275] pci 0000:17:10.6: Adding to iommu group 43
[ 0.749367] pci 0000:17:10.7: Adding to iommu group 43
[ 0.749712] pci 0000:17:11.0: Adding to iommu group 44
[ 0.749807] pci 0000:17:11.1: Adding to iommu group 44
[ 0.749907] pci 0000:17:11.2: Adding to iommu group 44
[ 0.750002] pci 0000:17:11.3: Adding to iommu group 44
[ 0.750347] pci 0000:17:1d.0: Adding to iommu group 45
[ 0.750443] pci 0000:17:1d.1: Adding to iommu group 45
[ 0.750538] pci 0000:17:1d.2: Adding to iommu group 45
[ 0.750633] pci 0000:17:1d.3: Adding to iommu group 45
[ 0.751189] pci 0000:17:1e.0: Adding to iommu group 46
[ 0.751285] pci 0000:17:1e.1: Adding to iommu group 46
[ 0.751381] pci 0000:17:1e.2: Adding to iommu group 46
[ 0.751477] pci 0000:17:1e.3: Adding to iommu group 46
[ 0.751573] pci 0000:17:1e.4: Adding to iommu group 46
[ 0.751669] pci 0000:17:1e.5: Adding to iommu group 46
[ 0.751766] pci 0000:17:1e.6: Adding to iommu group 46
[ 0.751846] pci 0000:3a:05.0: Adding to iommu group 47
[ 0.751928] pci 0000:3a:05.2: Adding to iommu group 48
[ 0.752005] pci 0000:3a:05.4: Adding to iommu group 49
[ 0.752083] pci 0000:3a:08.0: Adding to iommu group 50
[ 0.752162] pci 0000:3a:09.0: Adding to iommu group 51
[ 0.752239] pci 0000:3a:0a.0: Adding to iommu group 52
[ 0.752317] pci 0000:3a:0a.1: Adding to iommu group 53
[ 0.752395] pci 0000:3a:0a.2: Adding to iommu group 54
[ 0.752473] pci 0000:3a:0a.3: Adding to iommu group 55
[ 0.752550] pci 0000:3a:0a.4: Adding to iommu group 56
[ 0.752627] pci 0000:3a:0a.5: Adding to iommu group 57
[ 0.752703] pci 0000:3a:0a.6: Adding to iommu group 58
[ 0.752782] pci 0000:3a:0a.7: Adding to iommu group 59
[ 0.752861] pci 0000:3a:0b.0: Adding to iommu group 60
[ 0.752944] pci 0000:3a:0b.1: Adding to iommu group 61
[ 0.753022] pci 0000:3a:0b.2: Adding to iommu group 62
[ 0.753101] pci 0000:3a:0b.3: Adding to iommu group 63
[ 0.753181] pci 0000:3a:0c.0: Adding to iommu group 64
[ 0.753259] pci 0000:3a:0c.1: Adding to iommu group 65
[ 0.753336] pci 0000:3a:0c.2: Adding to iommu group 66
[ 0.753414] pci 0000:3a:0c.3: Adding to iommu group 67
[ 0.753492] pci 0000:3a:0c.4: Adding to iommu group 68
[ 0.753569] pci 0000:3a:0c.5: Adding to iommu group 69
[ 0.753647] pci 0000:3a:0c.6: Adding to iommu group 70
[ 0.753725] pci 0000:3a:0c.7: Adding to iommu group 71
[ 0.753802] pci 0000:3a:0d.0: Adding to iommu group 72
[ 0.753880] pci 0000:3a:0d.1: Adding to iommu group 73
[ 0.753961] pci 0000:3a:0d.2: Adding to iommu group 74
[ 0.754041] pci 0000:3a:0d.3: Adding to iommu group 75
[ 0.754118] pci 0000:5d:05.0: Adding to iommu group 76
[ 0.754196] pci 0000:5d:05.2: Adding to iommu group 77
[ 0.754273] pci 0000:5d:05.4: Adding to iommu group 78
[ 0.754351] pci 0000:5d:0e.0: Adding to iommu group 79
[ 0.754428] pci 0000:5d:0e.1: Adding to iommu group 80
[ 0.754505] pci 0000:5d:0f.0: Adding to iommu group 81
[ 0.754582] pci 0000:5d:0f.1: Adding to iommu group 82
[ 0.754660] pci 0000:5d:10.0: Adding to iommu group 83
[ 0.754738] pci 0000:5d:10.1: Adding to iommu group 84
[ 0.754816] pci 0000:5d:12.0: Adding to iommu group 85
[ 0.755104] pci 0000:5d:12.1: Adding to iommu group 86
[ 0.755213] pci 0000:5d:12.2: Adding to iommu group 86
[ 0.755292] pci 0000:5d:12.4: Adding to iommu group 87
[ 0.755401] pci 0000:5d:12.5: Adding to iommu group 86
[ 0.755544] pci 0000:5d:15.0: Adding to iommu group 88
[ 0.755753] pci 0000:5d:16.0: Adding to iommu group 89
[ 0.755863] pci 0000:5d:16.4: Adding to iommu group 89
[ 0.756013] pci 0000:5d:17.0: Adding to iommu group 90
[ 0.756090] pci 0000:80:05.0: Adding to iommu group 91
[ 0.756167] pci 0000:80:05.2: Adding to iommu group 92
[ 0.756245] pci 0000:80:05.4: Adding to iommu group 93
[ 0.756323] pci 0000:80:08.0: Adding to iommu group 94
[ 0.756466] pci 0000:80:08.1: Adding to iommu group 95
[ 0.756544] pci 0000:80:08.2: Adding to iommu group 96
[ 0.756622] pci 0000:85:05.0: Adding to iommu group 97
[ 0.756701] pci 0000:85:05.2: Adding to iommu group 98
[ 0.756779] pci 0000:85:05.4: Adding to iommu group 99
[ 0.757395] pci 0000:85:08.0: Adding to iommu group 100
[ 0.757510] pci 0000:85:08.1: Adding to iommu group 100
[ 0.757623] pci 0000:85:08.2: Adding to iommu group 100
[ 0.757738] pci 0000:85:08.3: Adding to iommu group 100
[ 0.757853] pci 0000:85:08.4: Adding to iommu group 100
[ 0.757970] pci 0000:85:08.5: Adding to iommu group 100
[ 0.758084] pci 0000:85:08.6: Adding to iommu group 100
[ 0.758198] pci 0000:85:08.7: Adding to iommu group 100
[ 0.758812] pci 0000:85:09.0: Adding to iommu group 101
[ 0.758932] pci 0000:85:09.1: Adding to iommu group 101
[ 0.759050] pci 0000:85:09.2: Adding to iommu group 101
[ 0.759166] pci 0000:85:09.3: Adding to iommu group 101
[ 0.759282] pci 0000:85:09.4: Adding to iommu group 101
[ 0.759398] pci 0000:85:09.5: Adding to iommu group 101
[ 0.759513] pci 0000:85:09.6: Adding to iommu group 101
[ 0.759629] pci 0000:85:09.7: Adding to iommu group 101
[ 0.760248] pci 0000:85:0a.0: Adding to iommu group 102
[ 0.760367] pci 0000:85:0a.1: Adding to iommu group 102
[ 0.760486] pci 0000:85:0a.2: Adding to iommu group 102
[ 0.760603] pci 0000:85:0a.3: Adding to iommu group 102
[ 0.760721] pci 0000:85:0a.4: Adding to iommu group 102
[ 0.760838] pci 0000:85:0a.5: Adding to iommu group 102
[ 0.760963] pci 0000:85:0a.6: Adding to iommu group 102
[ 0.761080] pci 0000:85:0a.7: Adding to iommu group 102
[ 0.761427] pci 0000:85:0b.0: Adding to iommu group 103
[ 0.761545] pci 0000:85:0b.1: Adding to iommu group 103
[ 0.761665] pci 0000:85:0b.2: Adding to iommu group 103
[ 0.761785] pci 0000:85:0b.3: Adding to iommu group 103
[ 0.762402] pci 0000:85:0e.0: Adding to iommu group 104
[ 0.762524] pci 0000:85:0e.1: Adding to iommu group 104
[ 0.762644] pci 0000:85:0e.2: Adding to iommu group 104
[ 0.762766] pci 0000:85:0e.3: Adding to iommu group 104
[ 0.762886] pci 0000:85:0e.4: Adding to iommu group 104
[ 0.763011] pci 0000:85:0e.5: Adding to iommu group 104
[ 0.763130] pci 0000:85:0e.6: Adding to iommu group 104
[ 0.763250] pci 0000:85:0e.7: Adding to iommu group 104
[ 0.763862] pci 0000:85:0f.0: Adding to iommu group 105
[ 0.763987] pci 0000:85:0f.1: Adding to iommu group 105
[ 0.764110] pci 0000:85:0f.2: Adding to iommu group 105
[ 0.764233] pci 0000:85:0f.3: Adding to iommu group 105
[ 0.764355] pci 0000:85:0f.4: Adding to iommu group 105
[ 0.764476] pci 0000:85:0f.5: Adding to iommu group 105
[ 0.764598] pci 0000:85:0f.6: Adding to iommu group 105
[ 0.764719] pci 0000:85:0f.7: Adding to iommu group 105
[ 0.765335] pci 0000:85:10.0: Adding to iommu group 106
[ 0.765460] pci 0000:85:10.1: Adding to iommu group 106
[ 0.765583] pci 0000:85:10.2: Adding to iommu group 106
[ 0.765707] pci 0000:85:10.3: Adding to iommu group 106
[ 0.765830] pci 0000:85:10.4: Adding to iommu group 106
[ 0.765958] pci 0000:85:10.5: Adding to iommu group 106
[ 0.766080] pci 0000:85:10.6: Adding to iommu group 106
[ 0.766203] pci 0000:85:10.7: Adding to iommu group 106
[ 0.766548] pci 0000:85:11.0: Adding to iommu group 107
[ 0.766673] pci 0000:85:11.1: Adding to iommu group 107
[ 0.766798] pci 0000:85:11.2: Adding to iommu group 107
[ 0.766927] pci 0000:85:11.3: Adding to iommu group 107
[ 0.767272] pci 0000:85:1d.0: Adding to iommu group 108
[ 0.767398] pci 0000:85:1d.1: Adding to iommu group 108
[ 0.767524] pci 0000:85:1d.2: Adding to iommu group 108
[ 0.767651] pci 0000:85:1d.3: Adding to iommu group 108
[ 0.768200] pci 0000:85:1e.0: Adding to iommu group 109
[ 0.768328] pci 0000:85:1e.1: Adding to iommu group 109
[ 0.768455] pci 0000:85:1e.2: Adding to iommu group 109
[ 0.768582] pci 0000:85:1e.3: Adding to iommu group 109
[ 0.768709] pci 0000:85:1e.4: Adding to iommu group 109
[ 0.768836] pci 0000:85:1e.5: Adding to iommu group 109
[ 0.768968] pci 0000:85:1e.6: Adding to iommu group 109
[ 0.769046] pci 0000:ae:05.0: Adding to iommu group 110
[ 0.769124] pci 0000:ae:05.2: Adding to iommu group 111
[ 0.769206] pci 0000:ae:05.4: Adding to iommu group 112
[ 0.769285] pci 0000:ae:08.0: Adding to iommu group 113
[ 0.769362] pci 0000:ae:09.0: Adding to iommu group 114
[ 0.769440] pci 0000:ae:0a.0: Adding to iommu group 115
[ 0.769517] pci 0000:ae:0a.1: Adding to iommu group 116
[ 0.769595] pci 0000:ae:0a.2: Adding to iommu group 117
[ 0.769672] pci 0000:ae:0a.3: Adding to iommu group 118
[ 0.769749] pci 0000:ae:0a.4: Adding to iommu group 119
[ 0.769827] pci 0000:ae:0a.5: Adding to iommu group 120
[ 0.769909] pci 0000:ae:0a.6: Adding to iommu group 121
[ 0.769987] pci 0000:ae:0a.7: Adding to iommu group 122
[ 0.770064] pci 0000:ae:0b.0: Adding to iommu group 123
[ 0.770141] pci 0000:ae:0b.1: Adding to iommu group 124
[ 0.770220] pci 0000:ae:0b.2: Adding to iommu group 125
[ 0.770299] pci 0000:ae:0b.3: Adding to iommu group 126
[ 0.770376] pci 0000:ae:0c.0: Adding to iommu group 127
[ 0.770456] pci 0000:ae:0c.1: Adding to iommu group 128
[ 0.770538] pci 0000:ae:0c.2: Adding to iommu group 129
[ 0.770616] pci 0000:ae:0c.3: Adding to iommu group 130
[ 0.770693] pci 0000:ae:0c.4: Adding to iommu group 131
[ 0.770770] pci 0000:ae:0c.5: Adding to iommu group 132
[ 0.770853] pci 0000:ae:0c.6: Adding to iommu group 133
[ 0.770935] pci 0000:ae:0c.7: Adding to iommu group 134
[ 0.771013] pci 0000:ae:0d.0: Adding to iommu group 135
[ 0.771092] pci 0000:ae:0d.1: Adding to iommu group 136
[ 0.771172] pci 0000:ae:0d.2: Adding to iommu group 137
[ 0.771250] pci 0000:ae:0d.3: Adding to iommu group 138
[ 0.771328] pci 0000:d7:05.0: Adding to iommu group 139
[ 0.771406] pci 0000:d7:05.2: Adding to iommu group 140
[ 0.771485] pci 0000:d7:05.4: Adding to iommu group 141
[ 0.771564] pci 0000:d7:0e.0: Adding to iommu group 142
[ 0.771642] pci 0000:d7:0e.1: Adding to iommu group 143
[ 0.771721] pci 0000:d7:0f.0: Adding to iommu group 144
[ 0.771800] pci 0000:d7:0f.1: Adding to iommu group 145
[ 0.771878] pci 0000:d7:10.0: Adding to iommu group 146
[ 0.771960] pci 0000:d7:10.1: Adding to iommu group 147
[ 0.772038] pci 0000:d7:12.0: Adding to iommu group 148
[ 0.772315] pci 0000:d7:12.1: Adding to iommu group 149
[ 0.772458] pci 0000:d7:12.2: Adding to iommu group 149
[ 0.772536] pci 0000:d7:12.4: Adding to iommu group 150
[ 0.772675] pci 0000:d7:12.5: Adding to iommu group 149
[ 0.772820] pci 0000:d7:15.0: Adding to iommu group 151
[ 0.773036] pci 0000:d7:16.0: Adding to iommu group 152
[ 0.773176] pci 0000:d7:16.4: Adding to iommu group 152
[ 0.773320] pci 0000:d7:17.0: Adding to iommu group 153
[ 0.773585] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.773589] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.773593] software IO TLB: mapped [mem 0x0000000061484000-0x0000000065484000] (64MB)
[ 0.773603] ACPI: bus type thunderbolt registered
[ 0.780728] Initialise system trusted keyrings
[ 0.780738] Key type blacklist registered
[ 0.780854] workingset: timestamp_bits=36 max_order=25 bucket_order=0
[ 0.780882] zbud: loaded
[ 0.781146] NFS: Registering the id_resolver key type
[ 0.781153] Key type id_resolver registered
[ 0.781156] Key type id_legacy registered
[ 0.781165] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 0.781169] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[ 0.781259] integrity: Platform Keyring initialized
[ 0.789826] NET: Registered PF_ALG protocol family
[ 0.789832] Key type asymmetric registered
[ 0.789835] Asymmetric key parser 'x509' registered
[ 0.789850] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 0.789935] io scheduler mq-deadline registered
[ 0.789939] io scheduler kyber registered
[ 0.789953] io scheduler bfq registered
[ 0.791513] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 0.792267] pcieport 0000:00:1c.0: PME: Signaling with IRQ 24
[ 0.792299] pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.792623] pcieport 0000:00:1c.4: PME: Signaling with IRQ 25
[ 0.793006] pcieport 0000:17:00.0: PME: Signaling with IRQ 27
[ 0.793342] pcieport 0000:17:02.0: PME: Signaling with IRQ 28
[ 0.793692] pcieport 0000:17:03.0: PME: Signaling with IRQ 29
[ 0.794009] pcieport 0000:3a:00.0: PME: Signaling with IRQ 31
[ 0.795048] pcieport 0000:85:00.0: PME: Signaling with IRQ 33
[ 0.795865] pcieport 0000:ae:00.0: PME: Signaling with IRQ 35
[ 0.796348] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.796464] efifb: probing for efifb
[ 0.796483] efifb: No BGRT, not showing boot graphics
[ 0.796487] efifb: framebuffer at 0x91000000, using 3072k, total 3072k
[ 0.796491] efifb: mode is 1024x768x32, linelength=4096, pages=1
[ 0.796495] efifb: scrolling: redraw
[ 0.796498] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.796603] Console: switching to colour frame buffer device 128x48
[ 0.812254] fb0: EFI VGA frame buffer device
[ 0.812528] Monitor-Mwait will be used to enter C-1 state
[ 0.812533] Monitor-Mwait will be used to enter C-2 state
[ 0.812536] ACPI: \_SB_.SCK0.CP00: Found 2 idle states
[ 0.816839] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 0.818045] ACPI: button: Power Button [PWRF]
[ 0.822954] ERST: Error Record Serialization Table (ERST) support is initialized.
[ 0.823180] pstore: Registered erst as persistent store backend
[ 0.824206] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.824635] 00:02: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[ 0.825155] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.827919] Non-volatile memory driver v1.3
[ 0.834920] rdac: device handler registered
[ 0.835235] hp_sw: device handler registered
[ 0.835362] emc: device handler registered
[ 0.835571] alua: device handler registered
[ 0.837020] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.837255] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 0.838604] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[ 0.839402] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.839661] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 0.839871] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 0.840117] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
[ 0.840352] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.840561] usb usb1: Product: xHCI Host Controller
[ 0.846533] usb usb1: Manufacturer: Linux 6.5.0-rc1_next-queue_dev-queue-00374-gd61af0a06c70 xhci-hcd
[ 0.852718] usb usb1: SerialNumber: 0000:00:14.0
[ 0.859057] hub 1-0:1.0: USB hub found
[ 0.865118] hub 1-0:1.0: 16 ports detected
[ 0.873190] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.05
[ 0.879579] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.885861] usb usb2: Product: xHCI Host Controller
[ 0.892054] usb usb2: Manufacturer: Linux 6.5.0-rc1_next-queue_dev-queue-00374-gd61af0a06c70 xhci-hcd
[ 0.898479] usb usb2: SerialNumber: 0000:00:14.0
[ 0.904992] hub 2-0:1.0: USB hub found
[ 0.911187] hub 2-0:1.0: 10 ports detected
[ 0.918103] usb: port power management may be unreliable
[ 0.925286] usbcore: registered new interface driver usbserial_generic
[ 0.931859] usbserial: USB Serial support registered for generic
[ 0.938528] i8042: PNP: No PS/2 controller found.
[ 0.945340] mousedev: PS/2 mouse device common for all mice
[ 0.952267] rtc_cmos 00:00: RTC can wake from S4
[ 0.959491] rtc_cmos 00:00: registered as rtc0
[ 0.966266] rtc_cmos 00:00: setting system clock to 2023-07-18T12:25:09 UTC (1689683109)
[ 0.973171] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram
[ 0.982606] intel_pstate: P-states controlled by the platform
[ 0.989801] hid: raw HID events driver (C) Jiri Kosina
[ 0.996686] usbcore: registered new interface driver usbhid
[ 1.003556] usbhid: USB HID core driver
[ 1.011047] drop_monitor: Initializing network drop monitor service
[ 1.018429] Initializing XFRM netlink socket
[ 1.025452] NET: Registered PF_INET6 protocol family
[ 1.032944] Segment Routing with IPv6
[ 1.039644] In-situ OAM (IOAM) with IPv6
[ 1.046259] NET: Registered PF_PACKET protocol family
[ 1.053110] Key type dns_resolver registered
[ 1.059652] mpls_gso: MPLS GSO support
[ 1.074556] microcode: Microcode Update Driver: v2.2.
[ 1.076693] resctrl: MB allocation detected
[ 1.089741] IPI shorthand broadcast: enabled
[ 1.096282] AVX2 version of gcm_enc/dec engaged.
[ 1.103007] AES CTR mode by8 optimization enabled
[ 1.111667] sched_clock: Marking stable (1108001418, 2901242)->(1161400491, -50497831)
[ 1.118823] registered taskstats version 1
[ 1.125399] usb 1-14: new high-speed USB device number 2 using xhci_hcd
[ 1.137362] Loading compiled-in X.509 certificates
[ 1.165876] Loaded X.509 cert 'Build time autogenerated kernel key: 92bc005b62f861392621c6c8912a63a8c70537f8'
[ 1.179846] page_owner is disabled
[ 1.187300] pstore: Using crash dump compression: deflate
[ 1.258037] usb 1-14: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[ 1.265065] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.272922] hub 1-14:1.0: USB hub found
[ 1.279999] hub 1-14:1.0: 4 ports detected
[ 1.785984] tsc: Refined TSC clocksource calibration: 2095.077 MHz
[ 1.792771] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e33060eadb, max_idle_ns: 440795261188 ns
[ 1.800003] clocksource: Switched to clocksource tsc
[ 2.018021] usb 1-14.1: new high-speed USB device number 3 using xhci_hcd
[ 2.101131] usb 1-14.1: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[ 2.108316] usb 1-14.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.116314] hub 1-14.1:1.0: USB hub found
[ 2.123316] hub 1-14.1:1.0: 4 ports detected
[ 2.195041] usb 1-14.4: new high-speed USB device number 4 using xhci_hcd
[ 2.278176] usb 1-14.4: New USB device found, idVendor=1604, idProduct=10c0, bcdDevice= 0.00
[ 2.285262] usb 1-14.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.293417] hub 1-14.4:1.0: USB hub found
[ 2.300509] hub 1-14.4:1.0: 4 ports detected
[ 2.850053] usb 1-14.1.1: new high-speed USB device number 5 using xhci_hcd
[ 2.947065] usb 1-14.1.1: New USB device found, idVendor=0624, idProduct=0249, bcdDevice= 0.00
[ 2.954118] usb 1-14.1.1: New USB device strings: Mfr=4, Product=5, SerialNumber=6
[ 2.961151] usb 1-14.1.1: Product: Keyboard/Mouse Function
[ 2.968200] usb 1-14.1.1: Manufacturer: Avocent
[ 2.975180] usb 1-14.1.1: SerialNumber: 20151118
[ 2.990375] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:14.0/usb1/1-14/1-14.1/1-14.1.1/1-14.1.1:1.0/0003:0624:0249.0001/input/input1
[ 3.056312] hid-generic 0003:0624:0249.0001: input,hidraw0: USB HID v1.00 Keyboard [Avocent Keyboard/Mouse Function] on usb-0000:00:14.0-14.1.1/input0
[ 3.077650] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:14.0/usb1/1-14/1-14.1/1-14.1.1/1-14.1.1:1.1/0003:0624:0249.0002/input/input2
[ 3.094140] hid-generic 0003:0624:0249.0002: input,hidraw1: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:14.0-14.1.1/input1
[ 3.218557] Freeing initrd memory: 2814004K
[ 3.236858] Key type encrypted registered
[ 3.247096] integrity: Loading X.509 certificate: UEFI:db
[ 3.255431] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 3.264033] integrity: Loading X.509 certificate: UEFI:db
[ 3.272641] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 3.281546] integrity: Loading X.509 certificate: UEFI:db
[ 3.290478] integrity: Loaded X.509 cert 'VMware, Inc.: 4ad8ba0472073d28127706ddc6ccb9050441bbc7'
[ 3.299556] integrity: Loading X.509 certificate: UEFI:db
[ 3.308736] integrity: Loaded X.509 cert 'VMware, Inc.: VMware Secure Boot Signing: 04597f3e1ffb240bba0ff0f05d5eb05f3e15f6d7'
[ 3.319424] ima: No TPM chip found, activating TPM-bypass!
[ 3.328612] Loading compiled-in module X.509 certificates
[ 3.338218] Loaded X.509 cert 'Build time autogenerated kernel key: 92bc005b62f861392621c6c8912a63a8c70537f8'
[ 3.347595] ima: Allocated hash algorithm: sha256
[ 3.356889] ima: No architecture policies found
[ 3.366324] evm: Initialising EVM extended attributes:
[ 3.375416] evm: security.selinux
[ 3.384352] evm: security.SMACK64 (disabled)
[ 3.393263] evm: security.SMACK64EXEC (disabled)
[ 3.402050] evm: security.SMACK64TRANSMUTE (disabled)
[ 3.410903] evm: security.SMACK64MMAP (disabled)
[ 3.419624] evm: security.apparmor (disabled)
[ 3.428345] evm: security.ima
[ 3.436698] evm: security.capability
[ 3.444929] evm: HMAC attrs: 0x1
[ 3.579925] clk: Disabling unused clocks
[ 3.590646] Freeing unused decrypted memory: 2036K
[ 3.601025] Freeing unused kernel image (initmem) memory: 4056K
[ 3.617094] Write protecting the kernel read-only data: 24576k
[ 3.626609] Freeing unused kernel image (rodata/data gap) memory: 1476K
[ 3.634894] Run /init as init process
[ 3.643057] with arguments:
[ 3.643058] /init
[ 3.643059] vmlinuz
[ 3.643061] with environment:
[ 3.643062] HOME=/
[ 3.643062] TERM=linux
[ 3.643064] biosdevname=0
[ 3.643065] ifname=bootnet:20:04:0f:ec:72:20
[ 3.643066] bridge=br0:bootnet
[ 3.643067] ip=172.20.7.104::172.20.0.1:255.255.0.0::br0:none
[ 3.749339] systemd[1]: systemd 239 (239-68.el8_7.4) running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[ 3.775065] systemd[1]: Detected architecture x86-64.
[ 3.783684] systemd[1]: Running in initial RAM disk.
[ 3.834784] systemd[1]: No hostname configured.
[ 3.843453] systemd[1]: Set hostname to <localhost>.
[ 3.851952] systemd[1]: Initializing machine ID from random generator.
[ 3.952879] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.968946] systemd[1]: Reached target Initrd Root Device.
[ 3.984404] systemd[1]: Listening on Journal Socket.
[ 3.999334] systemd[1]: Listening on Open-iSCSI iscsid Socket.
[ 4.077551] fuse: init (API version 7.38)
[ 4.177528] Loading iSCSI transport class v2.0-870.
[ 4.515386] iscsi: registered transport (tcp)
[ 4.570308] iscsi: registered transport (qla4xxx)
[ 4.576910] QLogic iSCSI HBA Driver
[ 4.594631] libcxgbi:libcxgbi_init_module: Chelsio iSCSI driver library libcxgbi v0.9.1-ko (Apr. 2015)
[ 4.689649] Chelsio T4-T6 iSCSI Driver cxgb4i v0.9.5-ko (Apr. 2015)
[ 4.696095] iscsi: registered transport (cxgb4i)
[ 4.711951] cnic: QLogic cnicDriver v2.5.22 (July 20, 2015)
[ 4.727335] QLogic NetXtreme II iSCSI Driver bnx2i v2.7.10.1 (Jul 16, 2014)
[ 4.733623] iscsi: registered transport (bnx2i)
[ 4.768647] iscsi: registered transport (be2iscsi)
[ 4.774722] In beiscsi_module_init, tt=0000000066d4dd09
[ 4.996355] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 5.008951] device-mapper: uevent: version 1.0.3
[ 5.015369] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 5.773722] wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
[ 5.782591] megasas: 07.725.01.00-rc1
[ 5.782836] dca service started, version 1.12.1
[ 5.793253] megaraid_sas 0000:1a:00.0: BAR:0x1 BAR's base_addr(phys):0x000000009db00000 mapped virt_addr:0x000000007c652270
[ 5.795444] megaraid_sas 0000:1a:00.0: FW now in Ready state
[ 5.801939] megaraid_sas 0000:1a:00.0: 63 bit DMA mask and 32 bit consistent mask
[ 5.809059] megaraid_sas 0000:1a:00.0: firmware supports msix : (96)
[ 5.816735] megaraid_sas 0000:1a:00.0: requested/available msix 33/33 poll_queue 0
[ 5.823427] megaraid_sas 0000:1a:00.0: current msix/online cpus : (33/32)
[ 5.830031] megaraid_sas 0000:1a:00.0: RDPQ mode : (disabled)
[ 5.836478] megaraid_sas 0000:1a:00.0: Current firmware supports maximum commands: 928 LDIO threshold: 237
[ 5.838098] megaraid_sas 0000:1a:00.0: Performance mode :Latency (latency index = 1)
[ 5.849736] megaraid_sas 0000:1a:00.0: FW supports sync cache : No
[ 5.856368] megaraid_sas 0000:1a:00.0: megasas_disable_intr_fusion is called outbound_intr_mask:0x40000009
[ 5.864491] libata version 3.00 loaded.
[ 5.866864] tg3 0000:18:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 20:04:0f:ec:72:20
[ 5.873900] tg3 0000:18:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 5.881180] tg3 0000:18:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[ 5.888476] tg3 0000:18:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
[ 5.897573] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[ 5.904836] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[ 5.912031] ACPI: bus type drm_connector registered
[ 5.926940] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver
[ 5.931601] i40e 0000:af:00.0: fw 9.130.73618 api 1.15 nvm 9.40 0x8000e34d 1.3438.0 [8086:1572] [8086:0004]
[ 5.934014] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[ 5.937145] tg3 0000:18:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 20:04:0f:ec:72:21
[ 5.956021] tg3 0000:18:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 5.963635] tg3 0000:18:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[ 5.971278] tg3 0000:18:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
[ 5.989125] ahci 0000:00:11.5: version 3.0
[ 5.989409] ahci 0000:00:11.5: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[ 5.997176] ahci 0000:00:11.5: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst
[ 6.008874] ice: Intel(R) Ethernet Connection E800 Series Linux Driver
[ 6.015515] tg3 0000:19:00.0 eth2: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 20:04:0f:ec:72:22
[ 6.016456] ice: Copyright (c) 2018, Intel Corporation.
[ 6.024412] tg3 0000:19:00.0 eth2: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 6.049022] scsi host1: ahci
[ 6.060373] tg3 0000:19:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[ 6.068440] scsi host2: ahci
[ 6.077417] tg3 0000:19:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
[ 6.086102] scsi host3: ahci
[ 6.095230] scsi host4: ahci
[ 6.103592] megaraid_sas 0000:1a:00.0: FW provided supportMaxExtLDs: 0 max_lds: 32
[ 6.112099] megaraid_sas 0000:1a:00.0: controller type : iMR(0MB)
[ 6.120677] megaraid_sas 0000:1a:00.0: Online Controller Reset(OCR) : Enabled
[ 6.129646] scsi host5: ahci
[ 6.138393] megaraid_sas 0000:1a:00.0: Secure JBOD support : No
[ 6.146989] scsi host6: ahci
[ 6.155699] ata1: SATA max UDMA/133 abar m524288@0x92e80000 port 0x92e80100 irq 76
[ 6.164272] megaraid_sas 0000:1a:00.0: NVMe passthru support : No
[ 6.173070] ata2: SATA max UDMA/133 abar m524288@0x92e80000 port 0x92e80180 irq 76
[ 6.182006] megaraid_sas 0000:1a:00.0: FW provided TM TaskAbort/Reset timeout : 0 secs/0 secs
[ 6.190775] ata3: SATA max UDMA/133 abar m524288@0x92e80000 port 0x92e80200 irq 76
[ 6.200065] megaraid_sas 0000:1a:00.0: JBOD sequence map support : No
[ 6.209024] ata4: SATA max UDMA/133 abar m524288@0x92e80000 port 0x92e80280 irq 76
[ 6.218184] megaraid_sas 0000:1a:00.0: PCI Lane Margining support : No
[ 6.221128] i40e 0000:af:00.0: MAC address: 3c:fd:fe:b3:b8:c8
[ 6.227334] ata5: SATA max UDMA/133 abar m524288@0x92e80000 port 0x92e80300 irq 76
[ 6.236366] i40e 0000:af:00.0: FW LLDP is enabled
[ 6.251842] ata6: SATA max UDMA/133 abar m524288@0x92e80000 port 0x92e80380 irq 76
[ 6.260762] i40e 0000:af:00.0 eth3: NIC Link is Up, 10 Gbps Full Duplex, Flow Control: None
[ 6.271516] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[ 6.273300] i40e 0000:af:00.0: PCI-Express: Speed 8.0GT/s Width x4
[ 6.282293] megaraid_sas 0000:1a:00.0: megasas_enable_intr_fusion is called outbound_intr_mask:0x40000000
[ 6.291050] i40e 0000:af:00.0: PCI-Express bandwidth available for this device may be insufficient for optimal performance.
[ 6.300282] megaraid_sas 0000:1a:00.0: INIT adapter done
[ 6.309463] i40e 0000:af:00.0: Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.
[ 6.318826] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst
[ 6.328714] i40e 0000:af:00.0: Features: PF-id[0] VFs: 32 VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[ 6.337897] megaraid_sas 0000:1a:00.0: JBOD sequence map is disabled megasas_setup_jbod_map 5801
[ 6.357849] tg3 0000:19:00.1 eth4: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 20:04:0f:ec:72:23
[ 6.368056] tg3 0000:19:00.1 eth4: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
[ 6.370081] i40e 0000:af:00.1: fw 9.130.73618 api 1.15 nvm 9.40 0x8000e34d 1.3438.0 [8086:1572] [8086:0004]
[ 6.378094] tg3 0000:19:00.1 eth4: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
[ 6.397666] megaraid_sas 0000:1a:00.0: pci id : (0x1000)/(0x005f)/(0x1028)/(0x1f44)
[ 6.407483] megaraid_sas 0000:1a:00.0: unevenspan support : yes
[ 6.417112] megaraid_sas 0000:1a:00.0: firmware crash dump : no
[ 6.426897] tg3 0000:19:00.1 eth4: dma_rwctrl[00000001] dma_mask[64-bit]
[ 6.436484] megaraid_sas 0000:1a:00.0: JBOD sequence map : disabled
[ 6.446791] scsi host7: ahci
[ 6.456200] megaraid_sas 0000:1a:00.0: Max firmware commands: 927 shared with default hw_queues = 32 poll_queues 0
[ 6.465796] scsi host0: Avago SAS based MegaRAID driver
[ 6.476306] scsi host8: ahci
[ 6.486071] scsi host9: ahci
[ 6.491651] scsi 0:0:0:0: Direct-Access ATA MTFDDAK480TDC F003 PQ: 0 ANSI: 6
[ 6.497557] scsi host10: ahci
[ 6.514140] scsi host11: ahci
[ 6.523787] scsi host12: ahci
[ 6.534378] scsi host13: ahci
[ 6.543782] scsi host14: ahci
[ 6.552577] ata7: SATA max UDMA/133 abar m524288@0x92e00000 port 0x92e00100 irq 129
[ 6.561254] ata8: SATA max UDMA/133 abar m524288@0x92e00000 port 0x92e00180 irq 129
[ 6.570088] ata9: SATA max UDMA/133 abar m524288@0x92e00000 port 0x92e00200 irq 129
[ 6.576891] ata3: SATA link down (SStatus 0 SControl 300)
[ 6.578725] ata10: SATA max UDMA/133 abar m524288@0x92e00000 port 0x92e00280 irq 129
[ 6.587792] ata2: SATA link down (SStatus 0 SControl 300)
[ 6.595910] ata11: SATA max UDMA/133 abar m524288@0x92e00000 port 0x92e00300 irq 129
[ 6.604634] ata6: SATA link down (SStatus 0 SControl 300)
[ 6.613071] ata12: SATA max UDMA/133 abar m524288@0x92e00000 port 0x92e00380 irq 129
[ 6.621882] ata4: SATA link down (SStatus 0 SControl 300)
[ 6.630395] ata13: SATA max UDMA/133 abar m524288@0x92e00000 port 0x92e00400 irq 129
[ 6.635457] i40e 0000:af:00.1: MAC address: 00:00:00:00:01:01
[ 6.635761] i40e 0000:af:00.1: FW LLDP is enabled
[ 6.639153] ata1: SATA link down (SStatus 0 SControl 300)
[ 6.641900] i40e 0000:af:00.1: PCI-Express: Speed 8.0GT/s Width x4
[ 6.641903] i40e 0000:af:00.1: PCI-Express bandwidth available for this device may be insufficient for optimal performance.
[ 6.641904] i40e 0000:af:00.1: Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.
[ 6.642358] i40e 0000:af:00.1: Features: PF-id[1] VFs: 32 VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[ 6.647360] ata14: SATA max UDMA/133 abar m524288@0x92e00000 port 0x92e00480 irq 129
[ 6.656032] ata5: SATA link down (SStatus 0 SControl 300)
[ 6.663460] i40e 0000:af:00.2: fw 9.130.73618 api 1.15 nvm 9.40 0x8000e34d 1.3438.0 [8086:1572] [8086:0004]
[ 6.779422] ixgbe 0000:86:00.0: Multiqueue Enabled: Rx Queue count = 32, Tx Queue count = 32 XDP Queue count = 0
[ 6.885945] ixgbe 0000:86:00.0: 31.504 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x4 link)
[ 6.938539] i40e 0000:af:00.2: MAC address: 00:00:00:00:01:02
[ 6.946931] i40e 0000:af:00.2: FW LLDP is enabled
[ 6.960081] i40e 0000:af:00.2: PCI-Express: Speed 8.0GT/s Width x4
[ 6.968317] i40e 0000:af:00.2: PCI-Express bandwidth available for this device may be insufficient for optimal performance.
[ 6.976316] i40e 0000:af:00.2: Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.
[ 6.976386] ata9: SATA link down (SStatus 0 SControl 300)
[ 6.984665] i40e 0000:af:00.2: Features: PF-id[2] VFs: 32 VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[ 6.992272] ata13: SATA link down (SStatus 0 SControl 300)
[ 7.007813] ata14: SATA link down (SStatus 0 SControl 300)
[ 7.015524] ata7: SATA link down (SStatus 0 SControl 300)
[ 7.021355] i40e 0000:af:00.3: fw 9.130.73618 api 1.15 nvm 9.40 0x8000e34d 1.3438.0 [8086:1572] [8086:0004]
[ 7.023437] ata11: SATA link down (SStatus 0 SControl 300)
[ 7.040055] ata12: SATA link down (SStatus 0 SControl 300)
[ 7.048211] ata10: SATA link down (SStatus 0 SControl 300)
[ 7.050978] ixgbe 0000:86:00.0: MAC: 4, PHY: 0, PBA No: H86279-000
[ 7.056745] ata8: SATA link down (SStatus 0 SControl 300)
[ 7.075938] ixgbe 0000:86:00.0: a0:36:9f:ba:4f:98
[ 7.079003] tg3 0000:18:00.0 bootnet: renamed from eth0
[ 7.127148] sd 0:0:0:0: [sda] 937703088 512-byte logical blocks: (480 GB/447 GiB)
[ 7.134734] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 7.145438] sd 0:0:0:0: [sda] Write Protect is off
[ 7.152991] sd 0:0:0:0: [sda] Mode Sense: 9b 00 10 08
[ 7.153700] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[ 7.201817] sd 0:0:0:0: [sda] Attached SCSI disk
[ 7.224359] ice 0000:3b:00.0: The DDP package was successfully loaded: ICE OS Default Package version 1.3.30.0
[ 7.227775] ixgbe 0000:86:00.0: Intel(R) 10 Gigabit Network Connection
[ 7.322398] i40e 0000:af:00.3: MAC address: 00:00:00:00:01:03
[ 7.331036] i40e 0000:af:00.3: FW LLDP is enabled
[ 7.344771] i40e 0000:af:00.3: PCI-Express: Speed 8.0GT/s Width x4
[ 7.353126] i40e 0000:af:00.3: PCI-Express bandwidth available for this device may be insufficient for optimal performance.
[ 7.361672] i40e 0000:af:00.3: Please move the device to a different PCI-e link with more lanes and/or higher transfer rate.
[ 7.370720] i40e 0000:af:00.3: Features: PF-id[3] VFs: 32 VSIs: 34 QP: 32 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[ 7.530636] ice 0000:3b:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 7.551813] ice 0000:3b:00.0: PTP init successful
[ 7.680619] ice 0000:3b:00.0: DCB is enabled in the hardware, max number of TCs supported on this port are 8
[ 7.689333] ice 0000:3b:00.0: FW LLDP is disabled, DCBx/LLDP in SW mode.
[ 7.705896] ice 0000:3b:00.0: Commit DCB Configuration to the hardware
[ 7.942218] ixgbe 0000:86:00.1: Multiqueue Enabled: Rx Queue count = 32, Tx Queue count = 32 XDP Queue count = 0
[ 7.965327] ice 0000:3b:00.1: DDP package already present on device: ICE OS Default Package version 1.3.30.0
[ 8.050647] ixgbe 0000:86:00.1: 31.504 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x4 link)
[ 8.173424] ixgbe 0000:86:00.1: MAC: 4, PHY: 0, PBA No: H86279-000
[ 8.182334] ixgbe 0000:86:00.1: a0:36:9f:ba:4f:99
[ 8.262124] ice 0000:3b:00.1: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 8.296774] ice 0000:3b:00.1: PTP init successful
[ 8.339259] ixgbe 0000:86:00.1: Intel(R) 10 Gigabit Network Connection
[ 8.415287] ice 0000:3b:00.1: DCB is enabled in the hardware, max number of TCs supported on this port are 8
[ 8.424020] ice 0000:3b:00.1: FW LLDP is disabled, DCBx/LLDP in SW mode.
[ 8.432850] ice 0000:3b:00.1: Commit DCB Configuration to the hardware
[ 8.688224] ice 0000:3b:00.2: DDP package already present on device: ICE OS Default Package version 1.3.30.0
[ 9.004882] ice 0000:3b:00.2: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 9.039639] ice 0000:3b:00.2: PTP init successful
[ 9.122583] ice 0000:3b:00.2: DCB is enabled in the hardware, max number of TCs supported on this port are 8
[ 9.131361] ice 0000:3b:00.2: FW LLDP is disabled, DCBx/LLDP in SW mode.
[ 9.146892] ice 0000:3b:00.2: Commit DCB Configuration to the hardware
[ 9.366852] ice 0000:3b:00.3: DDP package already present on device: ICE OS Default Package version 1.3.30.0
[ 9.684624] ice 0000:3b:00.3: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:3a:00.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[ 9.706796] ice 0000:3b:00.3: PTP init successful
[ 9.767739] ice 0000:3b:00.3: DCB is enabled in the hardware, max number of TCs supported on this port are 8
[ 9.776990] ice 0000:3b:00.3: FW LLDP is disabled, DCBx/LLDP in SW mode.
[ 9.786330] ice 0000:3b:00.3: Commit DCB Configuration to the hardware
[ 10.422576] pps pps0: new PPS source ptp9
[ 10.431199] ixgbe 0000:86:00.0: registered PHC device on eth0
[ 10.849646] pps pps1: new PPS source ptp10
[ 10.858071] ixgbe 0000:86:00.1: registered PHC device on eth10
[ 11.652478] ice 0000:3b:00.0 eth8: NIC Link is up 25 Gbps Full Duplex, Requested FEC: RS-FEC, Negotiated FEC: RS-FEC, Autoneg Advertised: On, Autoneg Negotiated: True, Flow Control: None
[ 11.866417] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 13.575128] tg3 0000:18:00.0 bootnet: Link is up at 1000 Mbps, full duplex
[ 13.583755] tg3 0000:18:00.0 bootnet: Flow control is on for TX and on for RX
[ 13.592249] tg3 0000:18:00.0 bootnet: EEE is disabled
[ 13.603189] br0: port 1(bootnet) entered blocking state
[ 13.611395] br0: port 1(bootnet) entered disabled state
[ 13.619442] tg3 0000:18:00.0 bootnet: entered allmulticast mode
[ 13.627641] tg3 0000:18:00.0 bootnet: entered promiscuous mode
[ 13.635620] br0: port 1(bootnet) entered blocking state
[ 13.643362] br0: port 1(bootnet) entered forwarding state
[ 15.178793] ixgbe 0000:86:00.0 eth0: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[ 15.720566] ixgbe 0000:86:00.1 eth10: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[ 18.220133] memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
[ 19.343803] printk: systemd: 25 output lines suppressed due to ratelimiting
[ 19.431527] systemd[1]: systemd 239 (239-68.el8_7.4) running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[ 19.445624] systemd[1]: Detected architecture x86-64.
[ 19.452727] systemd[1]: Set hostname to <D-R03-U38-Dell-R740>.
[ 20.473204] systemd[1]: initrd-switch-root.service: Succeeded.
[ 20.479375] systemd[1]: Stopped Switch Root.
[ 20.485742] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[ 20.485995] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[ 20.486041] systemd[1]: Stopped Journal Service.
[ 20.521627] systemd[1]: Starting Journal Service...
[ 20.531478] systemd[1]: Created slice system-sshd\x2dkeygen.slice.
[ 21.225627] sctp: Hash tables configured (bind 1024/1024)
[ 21.687846] ACPI Error: No handler for Region [SYSI] (000000004c2c2343) [IPMI] (20230331/evregion-135)
[ 21.693724] ACPI Error: Region IPMI (ID=7) has no handler (20230331/exfldio-265)
[ 21.699631] ACPI Error: Aborting method \_SB.PMI0._GHL due to previous error (AE_NOT_EXIST) (20230331/psparse-531)
[ 21.705769] ACPI Error: Aborting method \_SB.PMI0._PMC due to previous error (AE_NOT_EXIST) (20230331/psparse-531)
[ 21.711794] ACPI: \_SB_.PMI0: _PMC evaluation failed: AE_NOT_EXIST
[ 21.763041] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[ 22.057064] IPMI message handler: version 39.2
[ 22.076305] ipmi device interface
[ 22.146423] ipmi_si: IPMI System Interface driver
[ 22.152499] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[ 22.158662] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
[ 22.164928] ipmi_si: Adding SMBIOS-specified kcs state machine
[ 22.171275] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[ 22.177610] ipmi_si IPI0001:00: ipmi_platform: [io 0x0ca8] regsize 1 spacing 4 irq 10
[ 22.238838] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[ 22.245390] ipmi_si: Adding ACPI-specified kcs state machine
[ 22.252054] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
[ 22.374954] ipmi_si IPI0001:00: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
[ 22.389259] lpc_ich 0000:00:1f.0: I/O space for ACPI uninitialized
[ 22.396219] lpc_ich 0000:00:1f.0: No MFD cells added
[ 22.398457] ipmi_si IPI0001:00: Using irq 10
[ 22.412383] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[ 22.425763] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 22.433267] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 22.440464] pci 0000:00:1f.1: [8086:a1a0] type 00 class 0x058000
[ 22.447749] pci 0000:00:1f.1: reg 0x10: [mem 0xfd000000-0xfdffffff 64bit]
[ 22.455627] pci 0000:00:1f.1: Adding to iommu group 154
[ 22.483225] i2c i2c-0: 6/24 memory slots populated (from DMI)
[ 22.488371] ipmi_si IPI0001:00: IPMI kcs interface initialized
[ 22.490650] i2c i2c-0: Systems with more than 4 memory slots not supported yet, not instantiating SPD
[ 22.520189] ipmi_ssif: IPMI SSIF Interface driver
[ 22.800905] input: PC Speaker as /devices/platform/pcspkr/input/input3
[ 22.971012] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
[ 22.978395] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 22.985800] RAPL PMU: hw unit of domain dram 2^-16 Joules
[ 23.647951] iTCO_vendor_support: vendor-support=0
[ 23.673204] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[ 23.681070] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 23.757911] eth9 speed is unknown, defaulting to 1000
[ 23.778217] eth9 speed is unknown, defaulting to 1000
[ 23.798226] eth9 speed is unknown, defaulting to 1000
[ 23.823085] eth9 speed is unknown, defaulting to 1000
[ 23.920015] eth11 speed is unknown, defaulting to 1000
[ 23.939182] eth11 speed is unknown, defaulting to 1000
[ 23.959231] eth11 speed is unknown, defaulting to 1000
[ 23.981854] eth11 speed is unknown, defaulting to 1000
[ 24.091699] eth12 speed is unknown, defaulting to 1000
[ 24.111753] eth12 speed is unknown, defaulting to 1000
[ 24.133677] eth12 speed is unknown, defaulting to 1000
[ 24.160106] eth12 speed is unknown, defaulting to 1000
[ 24.161834] eth9 speed is unknown, defaulting to 1000
[ 24.177566] eth11 speed is unknown, defaulting to 1000
[ 24.197533] eth12 speed is unknown, defaulting to 1000
[ 24.245019] EDAC MC0: Giving out device to module skx_edac controller Skylake Socket#0 IMC#0: DEV 0000:3a:0a.0 (INTERRUPT)
[ 24.251558] EDAC MC1: Giving out device to module skx_edac controller Skylake Socket#0 IMC#1: DEV 0000:3a:0c.0 (INTERRUPT)
[ 24.257943] EDAC MC2: Giving out device to module skx_edac controller Skylake Socket#1 IMC#0: DEV 0000:ae:0a.0 (INTERRUPT)
[ 24.264147] EDAC MC3: Giving out device to module skx_edac controller Skylake Socket#1 IMC#1: DEV 0000:ae:0c.0 (INTERRUPT)
[ 24.404228] intel_rapl_common: Found RAPL domain package
[ 24.410303] intel_rapl_common: Found RAPL domain dram
[ 24.416283] intel_rapl_common: package-0:dram:long_term locked by BIOS
[ 24.422338] intel_rapl_common: Found RAPL domain package
[ 24.428321] intel_rapl_common: Found RAPL domain dram
[ 24.434037] intel_rapl_common: package-1:dram:long_term locked by BIOS
[ 26.745962] eth9 speed is unknown, defaulting to 1000
[ 26.746578] eth11 speed is unknown, defaulting to 1000
[ 26.747125] eth12 speed is unknown, defaulting to 1000
[ 26.748124] eth12 speed is unknown, defaulting to 1000
[ 26.748475] eth9 speed is unknown, defaulting to 1000
[ 26.748823] eth11 speed is unknown, defaulting to 1000
[ 26.749247] eth12 speed is unknown, defaulting to 1000
[ 26.805005] eth11 speed is unknown, defaulting to 1000
[ 26.828625] eth9 speed is unknown, defaulting to 1000
[ 27.950551] 8021q: 802.1Q VLAN Support v1.8
[ 27.950590] 8021q: adding VLAN 0 to HW filter on device eth3
[ 27.950604] 8021q: adding VLAN 0 to HW filter on device eth5
[ 27.966891] 8021q: adding VLAN 0 to HW filter on device eth6
[ 27.966902] 8021q: adding VLAN 0 to HW filter on device eth0
[ 27.966914] 8021q: adding VLAN 0 to HW filter on device eth7
[ 27.966924] 8021q: adding VLAN 0 to HW filter on device eth8
[ 27.966934] 8021q: adding VLAN 0 to HW filter on device eth9
[ 27.966947] 8021q: adding VLAN 0 to HW filter on device eth10
[ 27.966959] 8021q: adding VLAN 0 to HW filter on device eth11
[ 27.966969] 8021q: adding VLAN 0 to HW filter on device eth12
[ 29.106855] Key type cifs.spnego registered
[ 29.110952] Key type cifs.idmap registered
[ 29.115691] CIFS: No dialect specified on mount. Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3.1.1), from CIFS (SMB1). To use the less secure SMB1 dialect to access old servers which do not support SMB3.1.1 (or even SMB3 or SMB2.1) specify vers=1.0 on mount.
[ 29.116974] CIFS: Attempting to mount //10.91.4.249/OSimages
[ 29.397105] CIFS: Attempting to mount //10.102.228.23/r
[ 29.422637] CIFS: Attempting to mount //10.91.4.249/Public
[ 29.466838] CIFS: Attempting to mount //10.102.228.123/tempRepos
[ 29.691420] ice 0000:3b:00.0: Commit DCB Configuration to the hardware
[ 30.145015] 8021q: adding VLAN 0 to HW filter on device eth8
[ 30.149986] ice 0000:3b:00.0: Commit DCB Configuration to the hardware
[ 30.642073] 8021q: adding VLAN 0 to HW filter on device eth8
[ 30.910895] msr: Write to unrecognized MSR 0x1b0 by x86_energy_perf (pid: 6958).
[ 30.916131] msr: See https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git/about for details.
[ 52.258015] ixgbe 0000:86:00.0: invalid VPD tag 0xef (size 44478) at offset 0; assume missing optional EEPROM
[ 59.441505] CIFS: Attempting to mount //10.102.228.80/berta/berta-share
[ 61.461632] /dev/sda2: Can't open blockdev
[ 116.544245] ice 0000:3b:00.0: Enabling 1 VFs
[ 116.650113] pci 0000:3b:01.0: [8086:1889] type 00 class 0x020000
[ 116.650152] pci 0000:3b:01.0: enabling Extended Tags
[ 116.651491] pci 0000:3b:01.0: Adding to iommu group 154
[ 116.651728] ice 0000:3b:00.0: Enabling 1 VFs with 17 vectors and 16 queues per VF
[ 116.788792] iavf: Intel(R) Ethernet Adaptive Virtual Function Network Driver
[ 116.788798] Copyright (c) 2013 - 2018 Intel Corporation.
[ 116.789008] iavf 0000:3b:01.0: enabling device (0000 -> 0002)
[ 116.860018] iavf 0000:3b:01.0: Invalid MAC address 00:00:00:00:00:00, using random
[ 116.860924] iavf 0000:3b:01.0: Multiqueue Enabled: Queue pair count = 16
[ 116.861016] iavf 0000:3b:01.0: MAC address: 16:51:7c:03:1a:78
[ 116.861024] iavf 0000:3b:01.0: GRO is enabled
[ 128.196819] VFIO - User Level meta-driver version: 0.3
[ 128.281990] iavf 0000:3b:01.0: Removing device
[ 128.680045] tun: Universal TUN/TAP device driver, 1.6
[ 128.681487] br0: port 2(vnet0) entered blocking state
[ 128.681502] br0: port 2(vnet0) entered disabled state
[ 128.681523] vnet0: entered allmulticast mode
[ 128.681663] vnet0: entered promiscuous mode
[ 128.682109] br0: port 2(vnet0) entered blocking state
[ 128.682121] br0: port 2(vnet0) entered forwarding state
[ 145.183509] vfio-pci 0000:3b:01.0: enabling device (0000 -> 0002)
[ 887.631335] ice 0000:3b:00.0: failed to add default unicast MAC filter 32:64:c0:07:83:53 for VF 0, error -17
[ 887.631351] ice 0000:3b:00.0: failed to rebuild default MAC configuration for VF 0
[ 930.296097] ice 0000:3b:00.0 eth8: Setting MAC aa:bb:cc:dd:01:01 on VF 0. VF driver will be reinitialized
[ 945.446655] ice 0000:3b:00.0: failed to add default unicast MAC filter aa:bb:cc:dd:01:01 for VF 0, error -17
[ 945.446671] ice 0000:3b:00.0: failed to rebuild default MAC configuration for VF 0
[-- Attachment #3: dmesg_VM.txt --]
[-- Type: text/plain, Size: 53913 bytes --]
[ 0.000000] Linux version 6.5.0-rc1_next-queue_dev-queue-00374-gd61af0a06c70 (root@localhost.localdomain) (gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-16), GNU ld version 2.30-117.el8) #1 SMP PREEMPT_DYNAMIC Mon Jul 17 06:19:58 CEST 2023
[ 0.000000] Command line: vmlinuz initrd=initrd.img root=172.20.0.20:/diskless/host/mac-52-54-00-aa-aa-aa/upstream-kernel/RHEL/8/7/rhel-87-upstream-kernel-next-zfs-latest rw selinux=0 net.ifnames=0 biosdevname=0 ifname=bootnet:52:54:00:aa:aa:aa bridge=br0:bootnet ip=br0:dhcp::52:54:00:aa:aa:aa nomodeset intel_iommu=on rd.shell crashkernel=512M
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000002ffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000030000-0x000000000004ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000050000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007e8edfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007e8ee000-0x000000007eb6dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007eb6e000-0x000000007eb7dfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000007eb7e000-0x000000007ebfdfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007ebfe000-0x000000007effffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007f000000-0x000000007fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000101fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0x7d5f9018-0x7d602a57] usable ==> usable
[ 0.000000] e820: update [mem 0x7d5f9018-0x7d602a57] usable ==> usable
[ 0.000000] e820: update [mem 0x7d5ce018-0x7d5f8857] usable ==> usable
[ 0.000000] e820: update [mem 0x7d5ce018-0x7d5f8857] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000002ffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000000030000-0x000000000004ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000050000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x000000000009ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000007d5ce017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007d5ce018-0x000000007d5f8857] usable
[ 0.000000] reserve setup_data: [mem 0x000000007d5f8858-0x000000007d5f9017] usable
[ 0.000000] reserve setup_data: [mem 0x000000007d5f9018-0x000000007d602a57] usable
[ 0.000000] reserve setup_data: [mem 0x000000007d602a58-0x000000007e8edfff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007e8ee000-0x000000007eb6dfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000007eb6e000-0x000000007eb7dfff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000007eb7e000-0x000000007ebfdfff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000007ebfe000-0x000000007effffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007f000000-0x000000007fffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000b0000000-0x00000000bfffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000101fffffff] usable
[ 0.000000] efi: EFI v2.7 by EDK II
[ 0.000000] efi: SMBIOS=0x7e9d6000 ACPI=0x7eb7d000 ACPI 2.0=0x7eb7d014 MEMATTR=0x7d60b018 INITRD=0x7d60fc18
[ 0.000000] SMBIOS 2.8 present.
[ 0.000000] DMI: Red Hat KVM/RHEL-AV, BIOS 0.0.0 02/06/2015
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000001] kvm-clock: using sched offset of 96743961319 cycles
[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[ 0.000005] tsc: Detected 2095.076 MHz processor
[ 0.000102] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000104] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000111] last_pfn = 0x1020000 max_arch_pfn = 0x400000000
[ 0.000142] MTRR map: 4 entries (2 fixed + 2 variable; max 18), built from 8 variable MTRRs
[ 0.000145] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000181] last_pfn = 0x7f000 max_arch_pfn = 0x400000000
[ 0.012702] Using GB pages for direct mapping
[ 0.012948] Secure boot disabled
[ 0.012949] RAMDISK: [mem 0xec87e5000-0xf743f1fff]
[ 0.014166] ACPI: Early table checksum verification disabled
[ 0.014172] ACPI: RSDP 0x000000007EB7D014 000024 (v02 BOCHS )
[ 0.014177] ACPI: XSDT 0x000000007EB7C0E8 00004C (v01 BOCHS BXPC 00000001 01000013)
[ 0.014182] ACPI: FACP 0x000000007EB78000 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)
[ 0.014188] ACPI: DSDT 0x000000007EB79000 0027A5 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[ 0.014192] ACPI: FACS 0x000000007EBDC000 000040
[ 0.014196] ACPI: APIC 0x000000007EB77000 0000F0 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[ 0.014199] ACPI: MCFG 0x000000007EB76000 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)
[ 0.014203] ACPI: WAET 0x000000007EB75000 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
[ 0.014206] ACPI: BGRT 0x000000007EB74000 000038 (v01 INTEL EDK2 00000002 01000013)
[ 0.014209] ACPI: Reserving FACP table memory at [mem 0x7eb78000-0x7eb780f3]
[ 0.014211] ACPI: Reserving DSDT table memory at [mem 0x7eb79000-0x7eb7b7a4]
[ 0.014212] ACPI: Reserving FACS table memory at [mem 0x7ebdc000-0x7ebdc03f]
[ 0.014213] ACPI: Reserving APIC table memory at [mem 0x7eb77000-0x7eb770ef]
[ 0.014213] ACPI: Reserving MCFG table memory at [mem 0x7eb76000-0x7eb7603b]
[ 0.014214] ACPI: Reserving WAET table memory at [mem 0x7eb75000-0x7eb75027]
[ 0.014215] ACPI: Reserving BGRT table memory at [mem 0x7eb74000-0x7eb74037]
[ 0.014652] No NUMA configuration found
[ 0.014653] Faking a node at [mem 0x0000000000000000-0x000000101fffffff]
[ 0.014661] NODE_DATA(0) allocated [mem 0xec87ba000-0xec87e4fff]
[ 0.014877] Reserving 512MB of memory at 1440MB for crashkernel (System RAM: 63980MB)
[ 0.014941] Zone ranges:
[ 0.014941] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.014943] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.014945] Normal [mem 0x0000000100000000-0x000000101fffffff]
[ 0.014946] Device empty
[ 0.014947] Movable zone start for each node
[ 0.014949] Early memory node ranges
[ 0.014950] node 0: [mem 0x0000000000001000-0x000000000002ffff]
[ 0.014951] node 0: [mem 0x0000000000050000-0x000000000009efff]
[ 0.014952] node 0: [mem 0x0000000000100000-0x000000007e8edfff]
[ 0.014954] node 0: [mem 0x000000007ebfe000-0x000000007effffff]
[ 0.014954] node 0: [mem 0x0000000100000000-0x000000101fffffff]
[ 0.014960] Initmem setup node 0 [mem 0x0000000000001000-0x000000101fffffff]
[ 0.014973] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.014975] On node 0, zone DMA: 32 pages in unavailable ranges
[ 0.015013] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.019520] On node 0, zone DMA32: 784 pages in unavailable ranges
[ 0.019926] On node 0, zone Normal: 4096 pages in unavailable ranges
[ 0.020927] ACPI: PM-Timer IO Port: 0x608
[ 0.020940] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[ 0.020979] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[ 0.020982] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.020983] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[ 0.020985] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.020986] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[ 0.020987] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[ 0.020990] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.020999] e820: update [mem 0x7d48c000-0x7d494fff] usable ==> reserved
[ 0.021008] TSC deadline timer available
[ 0.021009] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[ 0.021035] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.021037] PM: hibernation: Registered nosave memory: [mem 0x00030000-0x0004ffff]
[ 0.021038] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.021039] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.021040] PM: hibernation: Registered nosave memory: [mem 0x7d48c000-0x7d494fff]
[ 0.021042] PM: hibernation: Registered nosave memory: [mem 0x7d5ce000-0x7d5cefff]
[ 0.021043] PM: hibernation: Registered nosave memory: [mem 0x7d5f8000-0x7d5f8fff]
[ 0.021044] PM: hibernation: Registered nosave memory: [mem 0x7d5f9000-0x7d5f9fff]
[ 0.021045] PM: hibernation: Registered nosave memory: [mem 0x7d602000-0x7d602fff]
[ 0.021046] PM: hibernation: Registered nosave memory: [mem 0x7e8ee000-0x7eb6dfff]
[ 0.021047] PM: hibernation: Registered nosave memory: [mem 0x7eb6e000-0x7eb7dfff]
[ 0.021047] PM: hibernation: Registered nosave memory: [mem 0x7eb7e000-0x7ebfdfff]
[ 0.021048] PM: hibernation: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[ 0.021049] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xafffffff]
[ 0.021050] PM: hibernation: Registered nosave memory: [mem 0xb0000000-0xbfffffff]
[ 0.021050] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xffffffff]
[ 0.021052] [mem 0xc0000000-0xffffffff] available for PCI devices
[ 0.021053] Booting paravirtualized kernel on KVM
[ 0.021055] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.026047] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[ 0.027058] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
[ 0.027065] pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
[ 0.027067] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.027111] kvm-guest: PV spinlocks enabled
[ 0.027115] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
[ 0.027119] Kernel command line: vmlinuz initrd=initrd.img root=172.20.0.20:/diskless/host/mac-52-54-00-aa-aa-aa/upstream-kernel/RHEL/8/7/rhel-87-upstream-kernel-next-zfs-latest rw selinux=0 net.ifnames=0 biosdevname=0 ifname=bootnet:52:54:00:aa:aa:aa bridge=br0:bootnet ip=br0:dhcp::52:54:00:aa:aa:aa nomodeset intel_iommu=on rd.shell crashkernel=512M
[ 0.027263] Booted with the nomodeset parameter. Only the system framebuffer will be available
[ 0.027277] DMAR: IOMMU enabled
[ 0.027307] Unknown kernel command line parameters "vmlinuz biosdevname=0 ifname=bootnet:52:54:00:aa:aa:aa bridge=br0:bootnet ip=br0:dhcp::52:54:00:aa:aa:aa", will be passed to user space.
[ 0.027338] random: crng init done
[ 0.036259] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[ 0.040706] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.040989] Fallback order for Node 0: 0
[ 0.040994] Built 1 zonelists, mobility grouping on. Total pages: 16120924
[ 0.040995] Policy zone: Normal
[ 0.040998] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.041001] software IO TLB: area num 16.
[ 0.084490] Memory: 1568992K/65515960K available (16384K kernel code, 6101K rwdata, 6716K rodata, 4056K init, 17692K bss, 7451876K reserved, 0K cma-reserved)
[ 0.084716] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[ 0.084731] Kernel/User page tables isolation: enabled
[ 0.084766] ftrace: allocating 49685 entries in 195 pages
[ 0.093477] ftrace: allocated 195 pages with 4 groups
[ 0.093572] Dynamic Preempt: full
[ 0.093638] rcu: Preemptible hierarchical RCU implementation.
[ 0.093638] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[ 0.093640] Trampoline variant of Tasks RCU enabled.
[ 0.093640] Rude variant of Tasks RCU enabled.
[ 0.093640] Tracing variant of Tasks RCU enabled.
[ 0.093641] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.093642] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[ 0.096563] NR_IRQS: 524544, nr_irqs: 552, preallocated irqs: 16
[ 0.096768] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.096844] Console: colour dummy device 80x25
[ 0.096846] printk: console [tty0] enabled
[ 0.097103] ACPI: Core revision 20230331
[ 0.097159] APIC: Switch to symmetric I/O mode setup
[ 0.097427] x2apic enabled
[ 0.097692] Switched APIC routing to physical x2apic.
[ 0.098693] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e33052aadd, max_idle_ns: 440795310221 ns
[ 0.098702] Calibrating delay loop (skipped) preset value.. 4190.15 BogoMIPS (lpj=2095076)
[ 0.098792] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.098852] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.098855] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.098861] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.098866] Spectre V2 : Mitigation: IBRS
[ 0.098869] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.098873] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.098876] RETBleed: Mitigation: IBRS
[ 0.098880] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.098884] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.098898] MDS: Mitigation: Clear CPU buffers
[ 0.098901] TAA: Mitigation: Clear CPU buffers
[ 0.098903] MMIO Stale Data: Vulnerable: Clear CPU buffers attempted, no microcode
[ 0.098930] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.098935] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.098938] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.098941] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[ 0.098944] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[ 0.098947] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[ 0.098950] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.098954] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.098958] x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
[ 0.098961] x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
[ 0.098964] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[ 0.098968] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
[ 0.098971] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[ 0.099698] Freeing SMP alternatives memory: 40K
[ 0.099698] pid_max: default: 32768 minimum: 301
[ 0.099698] LSM: initializing lsm=capability,yama,bpf,integrity
[ 0.099698] Yama: becoming mindful.
[ 0.099698] LSM support for eBPF active
[ 0.099698] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.099698] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.099698] smpboot: CPU0: Intel Xeon Processor (Skylake, IBRS) (family: 0x6, model: 0x55, stepping: 0x4)
[ 0.099698] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.099698] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.099698] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.099698] Performance Events: unsupported p6 CPU model 85 no PMU driver, software events only.
[ 0.099698] signal: max sigframe size: 3632
[ 0.099698] rcu: Hierarchical SRCU implementation.
[ 0.099698] rcu: Max phase no-delay instances is 400.
[ 0.099698] NMI watchdog: Perf NMI watchdog permanently disabled
[ 0.099698] smp: Bringing up secondary CPUs ...
[ 0.099698] smpboot: x86: Booting SMP configuration:
[ 0.099698] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15
[ 0.002923] smpboot: CPU 1 Converting physical 0 to logical die 1
[ 0.002923] smpboot: CPU 2 Converting physical 0 to logical die 2
[ 0.002923] smpboot: CPU 3 Converting physical 0 to logical die 3
[ 0.002923] smpboot: CPU 4 Converting physical 0 to logical die 4
[ 0.002923] smpboot: CPU 5 Converting physical 0 to logical die 5
[ 0.002923] smpboot: CPU 6 Converting physical 0 to logical die 6
[ 0.002923] smpboot: CPU 7 Converting physical 0 to logical die 7
[ 0.002923] smpboot: CPU 8 Converting physical 0 to logical die 8
[ 0.002923] smpboot: CPU 9 Converting physical 0 to logical die 9
[ 0.002923] smpboot: CPU 10 Converting physical 0 to logical die 10
[ 0.002923] smpboot: CPU 11 Converting physical 0 to logical die 11
[ 0.002923] smpboot: CPU 12 Converting physical 0 to logical die 12
[ 0.002923] smpboot: CPU 13 Converting physical 0 to logical die 13
[ 0.002923] smpboot: CPU 14 Converting physical 0 to logical die 14
[ 0.002923] smpboot: CPU 15 Converting physical 0 to logical die 15
[ 0.117900] smp: Brought up 1 node, 16 CPUs
[ 0.117943] smpboot: Max logical packages: 16
[ 0.117952] smpboot: Total of 16 processors activated (67042.43 BogoMIPS)
[ 0.179480] node 0 deferred pages initialised in 60ms
[ 0.181747] devtmpfs: initialized
[ 0.181787] x86/mm: Memory block size: 512MB
[ 0.183704] ACPI: PM: Registering ACPI NVS region [mem 0x7eb7e000-0x7ebfdfff] (524288 bytes)
[ 0.183783] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.183792] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.183945] pinctrl core: initialized pinctrl subsystem
[ 0.184865] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.185086] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.185095] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.185102] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.185126] audit: initializing netlink subsys (disabled)
[ 0.185140] audit: type=2000 audit(1689683351.657:1): state=initialized audit_enabled=0 res=1
[ 0.185140] thermal_sys: Registered thermal governor 'fair_share'
[ 0.185140] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.185140] thermal_sys: Registered thermal governor 'step_wise'
[ 0.185140] thermal_sys: Registered thermal governor 'user_space'
[ 0.185140] cpuidle: using governor menu
[ 0.185140] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.185992] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000)
[ 0.186002] PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved as E820 entry
[ 0.186020] PCI: Using configuration type 1 for base access
[ 0.186605] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.188784] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.188784] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.188784] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.188784] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.188816] cryptd: max_cpu_qlen set to 1000
[ 0.189796] fbcon: Taking over console
[ 0.189830] ACPI: Added _OSI(Module Device)
[ 0.189833] ACPI: Added _OSI(Processor Device)
[ 0.189836] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.189839] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.191128] ACPI: 1 ACPI AML tables successfully acquired and loaded
[ 0.191946] ACPI: Interpreter enabled
[ 0.191960] ACPI: PM: (supports S0 S5)
[ 0.191963] ACPI: Using IOAPIC for interrupt routing
[ 0.191989] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.191994] PCI: Using E820 reservations for host bridge windows
[ 0.192123] ACPI: Enabled 2 GPEs in block 00 to 3F
[ 0.195173] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.195184] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.195228] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR DPC]
[ 0.195290] acpi PNP0A08:00: _OSC: OS now controls [SHPCHotplug PME AER PCIeCapability]
[ 0.195526] PCI host bridge to bus 0000:00
[ 0.195530] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.195534] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.195538] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.195543] pci_bus 0000:00: root bus resource [mem 0x80000000-0xafffffff window]
[ 0.195547] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
[ 0.195551] pci_bus 0000:00: root bus resource [mem 0x1800000000-0x1fffffffff window]
[ 0.195555] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.195615] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
[ 0.196150] pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000
[ 0.209725] pci 0000:00:01.0: reg 0x10: [mem 0xc4000000-0xc7ffffff]
[ 0.220724] pci 0000:00:01.0: reg 0x14: [mem 0xc0000000-0xc3ffffff]
[ 0.232723] pci 0000:00:01.0: reg 0x18: [mem 0xc8844000-0xc8845fff]
[ 0.243722] pci 0000:00:01.0: reg 0x1c: [io 0x92c0-0x92df]
[ 0.274723] pci 0000:00:01.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[ 0.274849] pci 0000:00:01.0: BAR 0: assigned to efifb
[ 0.274885] pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.275359] pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400
[ 0.276479] pci 0000:00:02.0: reg 0x10: [mem 0xc884b000-0xc884bfff]
[ 0.282492] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400
[ 0.283690] pci 0000:00:02.1: reg 0x10: [mem 0xc884a000-0xc884afff]
[ 0.286439] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400
[ 0.288704] pci 0000:00:02.2: reg 0x10: [mem 0xc8849000-0xc8849fff]
[ 0.296647] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400
[ 0.299360] pci 0000:00:02.3: reg 0x10: [mem 0xc8848000-0xc8848fff]
[ 0.308655] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
[ 0.309164] pci 0000:00:1b.0: reg 0x10: [mem 0xc8840000-0xc8843fff]
[ 0.311650] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
[ 0.315950] pci 0000:00:1d.0: reg 0x20: [io 0x92a0-0x92bf]
[ 0.316911] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
[ 0.319902] pci 0000:00:1d.1: reg 0x20: [io 0x9280-0x929f]
[ 0.320844] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
[ 0.323154] pci 0000:00:1d.2: reg 0x20: [io 0x9260-0x927f]
[ 0.325809] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
[ 0.328704] pci 0000:00:1d.7: reg 0x10: [mem 0xc8847000-0xc8847fff]
[ 0.331087] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[ 0.331627] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
[ 0.331916] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
[ 0.336511] pci 0000:00:1f.2: reg 0x20: [io 0x9240-0x925f]
[ 0.337532] pci 0000:00:1f.2: reg 0x24: [mem 0xc8846000-0xc8846fff]
[ 0.342262] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
[ 0.344300] pci 0000:00:1f.3: reg 0x20: [io 0x9200-0x923f]
[ 0.345744] acpiphp: Slot [0] registered
[ 0.345925] pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000
[ 0.347414] pci 0000:01:00.0: reg 0x14: [mem 0xc8600000-0xc8600fff]
[ 0.350703] pci 0000:01:00.0: reg 0x20: [mem 0x1800000000-0x1800003fff 64bit pref]
[ 0.351377] pci 0000:01:00.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[ 0.356206] pci 0000:00:02.0: PCI bridge to [bus 01]
[ 0.356230] pci 0000:00:02.0: bridge window [io 0x9000-0x9fff]
[ 0.356251] pci 0000:00:02.0: bridge window [mem 0xc8600000-0xc87fffff]
[ 0.356287] pci 0000:00:02.0: bridge window [mem 0x1800000000-0x18000fffff 64bit pref]
[ 0.356915] acpiphp: Slot [0-2] registered
[ 0.357092] pci 0000:02:00.0: [1af4:1043] type 00 class 0x078000
[ 0.358376] pci 0000:02:00.0: reg 0x14: [mem 0xc8400000-0xc8400fff]
[ 0.360402] pci 0000:02:00.0: reg 0x20: [mem 0x1800100000-0x1800103fff 64bit pref]
[ 0.362552] pci 0000:00:02.1: PCI bridge to [bus 02]
[ 0.362575] pci 0000:00:02.1: bridge window [io 0x8000-0x8fff]
[ 0.362596] pci 0000:00:02.1: bridge window [mem 0xc8400000-0xc85fffff]
[ 0.362633] pci 0000:00:02.1: bridge window [mem 0x1800100000-0x18001fffff 64bit pref]
[ 0.363124] acpiphp: Slot [0-3] registered
[ 0.363288] pci 0000:03:00.0: [1af4:1045] type 00 class 0x00ff00
[ 0.369062] pci 0000:03:00.0: reg 0x20: [mem 0x1800200000-0x1800203fff 64bit pref]
[ 0.371839] pci 0000:00:02.2: PCI bridge to [bus 03]
[ 0.371873] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff]
[ 0.371904] pci 0000:00:02.2: bridge window [mem 0xc8200000-0xc83fffff]
[ 0.371960] pci 0000:00:02.2: bridge window [mem 0x1800200000-0x18002fffff 64bit pref]
[ 0.372931] acpiphp: Slot [0-4] registered
[ 0.373175] pci 0000:04:00.0: [8086:1889] type 00 class 0x020000
[ 0.376698] pci 0000:04:00.0: reg 0x10: [mem 0x1800300000-0x180031ffff 64bit pref]
[ 0.382369] pci 0000:04:00.0: reg 0x1c: [mem 0x1800320000-0x1800323fff 64bit pref]
[ 0.387507] pci 0000:04:00.0: enabling Extended Tags
[ 0.389115] pci 0000:00:02.3: PCI bridge to [bus 04]
[ 0.389138] pci 0000:00:02.3: bridge window [io 0x6000-0x6fff]
[ 0.389159] pci 0000:00:02.3: bridge window [mem 0xc8000000-0xc81fffff]
[ 0.389196] pci 0000:00:02.3: bridge window [mem 0x1800300000-0x18003fffff 64bit pref]
[ 0.392260] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[ 0.392342] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[ 0.392418] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[ 0.392493] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[ 0.392567] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[ 0.392640] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[ 0.392698] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[ 0.392698] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[ 0.392698] ACPI: PCI: Interrupt link GSIA configured for IRQ 16
[ 0.392698] ACPI: PCI: Interrupt link GSIB configured for IRQ 17
[ 0.392698] ACPI: PCI: Interrupt link GSIC configured for IRQ 18
[ 0.392698] ACPI: PCI: Interrupt link GSID configured for IRQ 19
[ 0.392698] ACPI: PCI: Interrupt link GSIE configured for IRQ 20
[ 0.392698] ACPI: PCI: Interrupt link GSIF configured for IRQ 21
[ 0.392698] ACPI: PCI: Interrupt link GSIG configured for IRQ 22
[ 0.392698] ACPI: PCI: Interrupt link GSIH configured for IRQ 23
[ 0.394047] iommu: Default domain type: Passthrough
[ 0.394047] SCSI subsystem initialized
[ 0.394047] ACPI: bus type USB registered
[ 0.394047] usbcore: registered new interface driver usbfs
[ 0.394047] usbcore: registered new interface driver hub
[ 0.394047] usbcore: registered new device driver usb
[ 0.394069] pps_core: LinuxPPS API ver. 1 registered
[ 0.394072] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.394078] PTP clock support registered
[ 0.394740] EDAC MC: Ver: 3.0.0
[ 0.395100] efivars: Registered efivars operations
[ 0.396464] NetLabel: Initializing
[ 0.396475] NetLabel: domain hash size = 128
[ 0.396484] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.396558] NetLabel: unlabeled traffic allowed by default
[ 0.396569] PCI: Using ACPI for IRQ routing
[ 0.473260] PCI: pci_cache_line_size set to 64 bytes
[ 0.473291] pci 0000:00:01.0: can't claim BAR 3 [io 0x92c0-0x92df]: address conflict with PCI Bus 0000:01 [io 0x9000-0x9fff]
[ 0.473392] pci 0000:00:1d.0: can't claim BAR 4 [io 0x92a0-0x92bf]: address conflict with PCI Bus 0000:01 [io 0x9000-0x9fff]
[ 0.473407] pci 0000:00:1d.1: can't claim BAR 4 [io 0x9280-0x929f]: address conflict with PCI Bus 0000:01 [io 0x9000-0x9fff]
[ 0.473422] pci 0000:00:1d.2: can't claim BAR 4 [io 0x9260-0x927f]: address conflict with PCI Bus 0000:01 [io 0x9000-0x9fff]
[ 0.473455] pci 0000:00:1f.2: can't claim BAR 4 [io 0x9240-0x925f]: address conflict with PCI Bus 0000:01 [io 0x9000-0x9fff]
[ 0.473469] pci 0000:00:1f.3: can't claim BAR 4 [io 0x9200-0x923f]: address conflict with PCI Bus 0000:01 [io 0x9000-0x9fff]
[ 0.473625] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.473628] e820: reserve RAM buffer [mem 0x7d48c000-0x7fffffff]
[ 0.473629] e820: reserve RAM buffer [mem 0x7d5ce018-0x7fffffff]
[ 0.473631] e820: reserve RAM buffer [mem 0x7d5f9018-0x7fffffff]
[ 0.473632] e820: reserve RAM buffer [mem 0x7e8ee000-0x7fffffff]
[ 0.473638] e820: reserve RAM buffer [mem 0x7f000000-0x7fffffff]
[ 0.473844] pci 0000:00:01.0: vgaarb: setting as boot VGA device
[ 0.473844] pci 0000:00:01.0: vgaarb: bridge control possible
[ 0.473844] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.473844] vgaarb: loaded
[ 0.476704] clocksource: Switched to clocksource kvm-clock
[ 0.494451] VFS: Disk quotas dquot_6.6.0
[ 0.494472] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.494560] pnp: PnP ACPI init
[ 0.494753] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved
[ 0.494955] pnp: PnP ACPI: found 5 devices
[ 0.504639] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.504719] NET: Registered PF_INET protocol family
[ 0.505515] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.508010] tcp_listen_portaddr_hash hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 0.508390] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.508411] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.509074] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes, linear)
[ 0.510065] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.511592] MPTCP token hash table entries: 65536 (order: 9, 3145728 bytes, linear)
[ 0.512090] UDP hash table entries: 32768 (order: 9, 3145728 bytes, linear)
[ 0.512767] UDP-Lite hash table entries: 32768 (order: 9, 3145728 bytes, linear)
[ 0.513592] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.514192] RPC: Registered named UNIX socket transport module.
[ 0.514196] RPC: Registered udp transport module.
[ 0.514199] RPC: Registered tcp transport module.
[ 0.514201] RPC: Registered tcp-with-tls transport module.
[ 0.514204] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.514208] NET: Registered PF_XDP protocol family
[ 0.514217] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfffc0000-0xffffffff pref]: no compatible bridge window
[ 0.514236] pci 0000:00:1f.3: BAR 4: assigned [io 0x1000-0x103f]
[ 0.515121] pci 0000:00:01.0: BAR 3: assigned [io 0x1040-0x105f]
[ 0.515947] pci 0000:00:1d.0: BAR 4: assigned [io 0x1060-0x107f]
[ 0.516765] pci 0000:00:1d.1: BAR 4: assigned [io 0x1080-0x109f]
[ 0.517598] pci 0000:00:1d.2: BAR 4: assigned [io 0x10a0-0x10bf]
[ 0.518441] pci 0000:00:1f.2: BAR 4: assigned [io 0x10c0-0x10df]
[ 0.519258] pci 0000:01:00.0: BAR 6: assigned [mem 0xc8640000-0xc867ffff pref]
[ 0.519264] pci 0000:00:02.0: PCI bridge to [bus 01]
[ 0.519275] pci 0000:00:02.0: bridge window [io 0x9000-0x9fff]
[ 0.520581] pci 0000:00:02.0: bridge window [mem 0xc8600000-0xc87fffff]
[ 0.521440] pci 0000:00:02.0: bridge window [mem 0x1800000000-0x18000fffff 64bit pref]
[ 0.523102] pci 0000:00:02.1: PCI bridge to [bus 02]
[ 0.523116] pci 0000:00:02.1: bridge window [io 0x8000-0x8fff]
[ 0.524374] pci 0000:00:02.1: bridge window [mem 0xc8400000-0xc85fffff]
[ 0.525200] pci 0000:00:02.1: bridge window [mem 0x1800100000-0x18001fffff 64bit pref]
[ 0.528702] pci 0000:00:02.2: PCI bridge to [bus 03]
[ 0.528716] pci 0000:00:02.2: bridge window [io 0x7000-0x7fff]
[ 0.530420] pci 0000:00:02.2: bridge window [mem 0xc8200000-0xc83fffff]
[ 0.530915] pci 0000:00:02.2: bridge window [mem 0x1800200000-0x18002fffff 64bit pref]
[ 0.531898] pci 0000:00:02.3: PCI bridge to [bus 04]
[ 0.531911] pci 0000:00:02.3: bridge window [io 0x6000-0x6fff]
[ 0.532587] pci 0000:00:02.3: bridge window [mem 0xc8000000-0xc81fffff]
[ 0.534474] pci 0000:00:02.3: bridge window [mem 0x1800300000-0x18003fffff 64bit pref]
[ 0.535683] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.535690] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.535694] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.535698] pci_bus 0000:00: resource 7 [mem 0x80000000-0xafffffff window]
[ 0.535702] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
[ 0.535705] pci_bus 0000:00: resource 9 [mem 0x1800000000-0x1fffffffff window]
[ 0.535710] pci_bus 0000:01: resource 0 [io 0x9000-0x9fff]
[ 0.535713] pci_bus 0000:01: resource 1 [mem 0xc8600000-0xc87fffff]
[ 0.535717] pci_bus 0000:01: resource 2 [mem 0x1800000000-0x18000fffff 64bit pref]
[ 0.535722] pci_bus 0000:02: resource 0 [io 0x8000-0x8fff]
[ 0.535725] pci_bus 0000:02: resource 1 [mem 0xc8400000-0xc85fffff]
[ 0.535729] pci_bus 0000:02: resource 2 [mem 0x1800100000-0x18001fffff 64bit pref]
[ 0.535732] pci_bus 0000:03: resource 0 [io 0x7000-0x7fff]
[ 0.535735] pci_bus 0000:03: resource 1 [mem 0xc8200000-0xc83fffff]
[ 0.535739] pci_bus 0000:03: resource 2 [mem 0x1800200000-0x18002fffff 64bit pref]
[ 0.535743] pci_bus 0000:04: resource 0 [io 0x6000-0x6fff]
[ 0.535746] pci_bus 0000:04: resource 1 [mem 0xc8000000-0xc81fffff]
[ 0.535749] pci_bus 0000:04: resource 2 [mem 0x1800300000-0x18003fffff 64bit pref]
[ 0.536349] ACPI: \_SB_.GSIA: Enabled at IRQ 16
[ 0.537309] ACPI: \_SB_.GSIB: Enabled at IRQ 17
[ 0.540526] ACPI: \_SB_.GSIC: Enabled at IRQ 18
[ 0.541259] ACPI: \_SB_.GSID: Enabled at IRQ 19
[ 0.541862] PCI: CLS 0 bytes, default 64
[ 0.542038] Trying to unpack rootfs image as initramfs...
[ 0.542215] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.542245] software IO TLB: mapped [mem 0x0000000056000000-0x000000005a000000] (64MB)
[ 0.542353] ACPI: bus type thunderbolt registered
[ 0.542917] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e33052aadd, max_idle_ns: 440795310221 ns
[ 0.556106] Initialise system trusted keyrings
[ 0.556156] Key type blacklist registered
[ 0.556734] workingset: timestamp_bits=36 max_order=24 bucket_order=0
[ 0.556822] zbud: loaded
[ 0.557996] NFS: Registering the id_resolver key type
[ 0.558038] Key type id_resolver registered
[ 0.558047] Key type id_legacy registered
[ 0.558086] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 0.558103] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[ 0.558585] integrity: Platform Keyring initialized
[ 0.575386] NET: Registered PF_ALG protocol family
[ 0.575396] Key type asymmetric registered
[ 0.575401] Asymmetric key parser 'x509' registered
[ 0.575427] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 0.575739] io scheduler mq-deadline registered
[ 0.575743] io scheduler kyber registered
[ 0.575757] io scheduler bfq registered
[ 0.578420] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 0.579859] ACPI: \_SB_.GSIG: Enabled at IRQ 22
[ 0.581010] pcieport 0000:00:02.0: PME: Signaling with IRQ 24
[ 0.581485] pcieport 0000:00:02.0: AER: enabled with IRQ 24
[ 0.583104] pcieport 0000:00:02.1: PME: Signaling with IRQ 25
[ 0.583547] pcieport 0000:00:02.1: AER: enabled with IRQ 25
[ 0.585120] pcieport 0000:00:02.2: PME: Signaling with IRQ 26
[ 0.585570] pcieport 0000:00:02.2: AER: enabled with IRQ 26
[ 0.587132] pcieport 0000:00:02.3: PME: Signaling with IRQ 27
[ 0.587648] pcieport 0000:00:02.3: AER: enabled with IRQ 27
[ 0.588033] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.588075] efifb: probing for efifb
[ 0.588093] efifb: framebuffer at 0xc4000000, using 1876k, total 1875k
[ 0.588098] efifb: mode is 800x600x32, linelength=3200, pages=1
[ 0.588102] efifb: scrolling: redraw
[ 0.588104] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.588390] Console: switching to colour frame buffer device 100x37
[ 0.589509] fb0: EFI VGA frame buffer device
[ 0.589542] unchecked MSR access error: RDMSR from 0xe2 at rIP: 0xffffffffa1555acd (intel_idle_init_cstates_icpu.constprop.7+0x5ed/0x880)
[ 0.589576] Call Trace:
[ 0.589590] <TASK>
[ 0.589603] ? ex_handler_msr+0xf6/0x150
[ 0.589618] ? fixup_exception+0x1b1/0x340
[ 0.589628] ? exc_general_protection+0x118/0x430
[ 0.589641] ? asm_exc_general_protection+0x26/0x30
[ 0.589651] ? __pfx_ignore_unknown_bootoption+0x10/0x10
[ 0.589663] ? __pfx_intel_idle_init+0x10/0x10
[ 0.589672] ? intel_idle_init_cstates_icpu.constprop.7+0x5ed/0x880
[ 0.589874] ? intel_idle_cpuidle_driver_init.constprop.6+0x1f/0x230
[ 0.590063] ? __pfx_intel_idle_init+0x10/0x10
[ 0.590275] ? __pfx_ignore_unknown_bootoption+0x10/0x10
[ 0.590438] intel_idle_init+0x1e4/0x420
[ 0.590597] ? __pfx_efifb_driver_init+0x10/0x10
[ 0.590754] ? __pfx_intel_idle_init+0x10/0x10
[ 0.590912] do_one_initcall+0x47/0x2f0
[ 0.591086] kernel_init_freeable+0x311/0x450
[ 0.591308] ? __pfx_kernel_init+0x10/0x10
[ 0.591480] kernel_init+0x1a/0x140
[ 0.591669] ret_from_fork+0x29/0x50
[ 0.591936] </TASK>
[ 0.595725] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 0.598367] ACPI: button: Power Button [PWRF]
[ 0.610371] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.611476] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.613829] Non-volatile memory driver v1.3
[ 0.619197] rdac: device handler registered
[ 0.620196] hp_sw: device handler registered
[ 0.620368] emc: device handler registered
[ 0.620742] alua: device handler registered
[ 0.623458] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 0.623887] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
[ 0.625085] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 0.625877] uhci_hcd 0000:00:1d.0: irq 16, io port 0x00001060
[ 0.630571] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.05
[ 0.631462] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.631973] usb usb1: Product: UHCI Host Controller
[ 0.632395] usb usb1: Manufacturer: Linux 6.5.0-rc1_next-queue_dev-queue-00374-gd61af0a06c70 uhci_hcd
[ 0.633331] usb usb1: SerialNumber: 0000:00:1d.0
[ 0.634308] hub 1-0:1.0: USB hub found
[ 0.634765] hub 1-0:1.0: 2 ports detected
[ 0.636176] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 0.636969] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 0.638512] ehci-pci 0000:00:1d.7: irq 19, io mem 0xc8847000
[ 0.646137] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 0.647039] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
[ 0.647644] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.648353] usb usb2: Product: EHCI Host Controller
[ 0.649051] usb usb2: Manufacturer: Linux 6.5.0-rc1_next-queue_dev-queue-00374-gd61af0a06c70 ehci_hcd
[ 0.650347] usb usb2: SerialNumber: 0000:00:1d.7
[ 0.651453] hub 2-0:1.0: USB hub found
[ 0.652231] hub 2-0:1.0: 6 ports detected
[ 0.675120] hub 1-0:1.0: USB hub found
[ 0.675866] hub 1-0:1.0: 2 ports detected
[ 0.676815] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 0.677872] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 0.678602] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 0.679723] uhci_hcd 0000:00:1d.1: irq 17, io port 0x00001080
[ 0.680695] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.05
[ 0.681343] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.682059] usb usb3: Product: UHCI Host Controller
[ 0.682735] usb usb3: Manufacturer: Linux 6.5.0-rc1_next-queue_dev-queue-00374-gd61af0a06c70 uhci_hcd
[ 0.684072] usb usb3: SerialNumber: 0000:00:1d.1
[ 0.685853] hub 3-0:1.0: USB hub found
[ 0.686678] hub 3-0:1.0: 2 ports detected
[ 0.688564] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 0.689013] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 0.689406] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 0.689877] uhci_hcd 0000:00:1d.2: irq 18, io port 0x000010a0
[ 0.690520] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.05
[ 0.690817] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.691134] usb usb4: Product: UHCI Host Controller
[ 0.691464] usb usb4: Manufacturer: Linux 6.5.0-rc1_next-queue_dev-queue-00374-gd61af0a06c70 uhci_hcd
[ 0.692051] usb usb4: SerialNumber: 0000:00:1d.2
[ 0.692617] hub 4-0:1.0: USB hub found
[ 0.692919] hub 4-0:1.0: 2 ports detected
[ 0.696201] usbcore: registered new interface driver usbserial_generic
[ 0.696896] usbserial: USB Serial support registered for generic
[ 0.697515] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 0.699434] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.699903] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.700429] mousedev: PS/2 mouse device common for all mice
[ 0.701063] rtc_cmos 00:03: RTC can wake from S4
[ 0.702409] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[ 0.703282] rtc_cmos 00:03: registered as rtc0
[ 0.704188] rtc_cmos 00:03: setting system clock to 2023-07-18T12:29:11 UTC (1689683351)
[ 0.704933] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram
[ 0.705404] intel_pstate: CPU model not supported
[ 0.707139] hid: raw HID events driver (C) Jiri Kosina
[ 0.707487] usbcore: registered new interface driver usbhid
[ 0.707712] usbhid: USB HID core driver
[ 0.707989] drop_monitor: Initializing network drop monitor service
[ 0.708463] Initializing XFRM netlink socket
[ 0.708737] NET: Registered PF_INET6 protocol family
[ 0.709872] Segment Routing with IPv6
[ 0.710175] In-situ OAM (IOAM) with IPv6
[ 0.710432] NET: Registered PF_PACKET protocol family
[ 0.710895] Key type dns_resolver registered
[ 0.711121] mpls_gso: MPLS GSO support
[ 0.715981] No MBM correction factor available
[ 0.716299] IPI shorthand broadcast: enabled
[ 0.716483] AVX2 version of gcm_enc/dec engaged.
[ 0.717280] AES CTR mode by8 optimization enabled
[ 0.719874] sched_clock: Marking stable (717015490, 1923780)->(1080284105, -361344835)
[ 0.720520] registered taskstats version 1
[ 0.722699] Loading compiled-in X.509 certificates
[ 0.764640] Loaded X.509 cert 'Build time autogenerated kernel key: 92bc005b62f861392621c6c8912a63a8c70537f8'
[ 0.769851] page_owner is disabled
[ 0.892098] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 1.037369] usb 2-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
[ 1.038446] usb 2-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
[ 1.039240] usb 2-1: Product: QEMU USB Tablet
[ 1.039987] usb 2-1: Manufacturer: QEMU
[ 1.040847] usb 2-1: SerialNumber: 28754-0000:00:1d.7-1
[ 1.053664] input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/0003:0627:0001.0001/input/input4
[ 1.055359] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:1d.7-1/input0
[ 1.568008] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3
[ 2.352888] Freeing initrd memory: 2814004K
[ 2.366365] Key type encrypted registered
[ 2.369652] ima: No TPM chip found, activating TPM-bypass!
[ 2.370409] Loading compiled-in module X.509 certificates
[ 2.372689] Loaded X.509 cert 'Build time autogenerated kernel key: 92bc005b62f861392621c6c8912a63a8c70537f8'
[ 2.373959] ima: Allocated hash algorithm: sha256
[ 2.374645] ima: No architecture policies found
[ 2.375344] evm: Initialising EVM extended attributes:
[ 2.375979] evm: security.selinux
[ 2.376598] evm: security.SMACK64 (disabled)
[ 2.377227] evm: security.SMACK64EXEC (disabled)
[ 2.377825] evm: security.SMACK64TRANSMUTE (disabled)
[ 2.378466] evm: security.SMACK64MMAP (disabled)
[ 2.379088] evm: security.apparmor (disabled)
[ 2.379777] evm: security.ima
[ 2.380560] evm: security.capability
[ 2.381217] evm: HMAC attrs: 0x1
[ 2.528418] clk: Disabling unused clocks
[ 2.533477] Freeing unused decrypted memory: 2036K
[ 2.535892] Freeing unused kernel image (initmem) memory: 4056K
[ 2.555977] Write protecting the kernel read-only data: 24576k
[ 2.559318] Freeing unused kernel image (rodata/data gap) memory: 1476K
[ 2.560277] Run /init as init process
[ 2.560915] with arguments:
[ 2.560944] /init
[ 2.560948] vmlinuz
[ 2.560952] with environment:
[ 2.560954] HOME=/
[ 2.560957] TERM=linux
[ 2.560960] biosdevname=0
[ 2.560963] ifname=bootnet:52:54:00:aa:aa:aa
[ 2.560966] bridge=br0:bootnet
[ 2.560969] ip=br0:dhcp::52:54:00:aa:aa:aa
[ 2.614982] systemd[1]: systemd 239 (239-68.el8_7.4) running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[ 2.616233] systemd[1]: Detected virtualization kvm.
[ 2.616515] systemd[1]: Detected architecture x86-64.
[ 2.616776] systemd[1]: Running in initial RAM disk.
[ 2.638483] systemd[1]: No hostname configured.
[ 2.639185] systemd[1]: Set hostname to <localhost>.
[ 2.639981] systemd[1]: Initializing machine ID from KVM UUID.
[ 2.742651] systemd[1]: Listening on Open-iSCSI iscsid Socket.
[ 2.743886] systemd[1]: Listening on Journal Socket.
[ 2.744602] systemd[1]: Reached target Slices.
[ 2.802111] Loading iSCSI transport class v2.0-870.
[ 2.804071] fuse: init (API version 7.38)
[ 3.124999] iscsi: registered transport (tcp)
[ 3.176340] iscsi: registered transport (qla4xxx)
[ 3.176833] QLogic iSCSI HBA Driver
[ 3.189644] libcxgbi:libcxgbi_init_module: Chelsio iSCSI driver library libcxgbi v0.9.1-ko (Apr. 2015)
[ 3.286077] Chelsio T4-T6 iSCSI Driver cxgb4i v0.9.5-ko (Apr. 2015)
[ 3.286530] iscsi: registered transport (cxgb4i)
[ 3.297833] cnic: QLogic cnicDriver v2.5.22 (July 20, 2015)
[ 3.308421] QLogic NetXtreme II iSCSI Driver bnx2i v2.7.10.1 (Jul 16, 2014)
[ 3.308682] iscsi: registered transport (bnx2i)
[ 3.329142] iscsi: registered transport (be2iscsi)
[ 3.329571] In beiscsi_module_init, tt=0000000018c4d2e2
[ 3.573657] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 3.574408] device-mapper: uevent: version 1.0.3
[ 3.574894] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 4.211407] libata version 3.00 loaded.
[ 4.221808] iavf: Intel(R) Ethernet Adaptive Virtual Function Network Driver
[ 4.222147] Copyright (c) 2013 - 2018 Intel Corporation.
[ 4.225599] virtio_net virtio0 bootnet: renamed from eth0
[ 4.227144] ahci 0000:00:1f.2: version 3.0
[ 4.231296] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
[ 4.231710] ahci 0000:00:1f.2: flags: 64bit ncq only
[ 4.233232] scsi host0: ahci
[ 4.233765] scsi host1: ahci
[ 4.234252] scsi host2: ahci
[ 4.234689] scsi host3: ahci
[ 4.235149] scsi host4: ahci
[ 4.235567] scsi host5: ahci
[ 4.235855] ata1: SATA max UDMA/133 abar m4096@0xc8846000 port 0xc8846100 irq 33
[ 4.236110] ata2: SATA max UDMA/133 abar m4096@0xc8846000 port 0xc8846180 irq 33
[ 4.236320] ata3: SATA max UDMA/133 abar m4096@0xc8846000 port 0xc8846200 irq 33
[ 4.236530] ata4: SATA max UDMA/133 abar m4096@0xc8846000 port 0xc8846280 irq 33
[ 4.236733] ata5: SATA max UDMA/133 abar m4096@0xc8846000 port 0xc8846300 irq 33
[ 4.236940] ata6: SATA max UDMA/133 abar m4096@0xc8846000 port 0xc8846380 irq 33
[ 4.257653] ACPI: bus type drm_connector registered
[ 4.294080] iavf 0000:04:00.0: Invalid MAC address 00:00:00:00:00:00, using random
[ 4.298172] iavf 0000:04:00.0: Multiqueue Enabled: Queue pair count = 16
[ 4.299282] iavf 0000:04:00.0: MAC address: 32:64:c0:07:83:53
[ 4.299811] iavf 0000:04:00.0: GRO is enabled
[ 4.548051] ata4: SATA link down (SStatus 0 SControl 300)
[ 4.549509] ata2: SATA link down (SStatus 0 SControl 300)
[ 4.550564] ata6: SATA link down (SStatus 0 SControl 300)
[ 4.551802] ata1: SATA link down (SStatus 0 SControl 300)
[ 4.552982] ata5: SATA link down (SStatus 0 SControl 300)
[ 4.554203] ata3: SATA link down (SStatus 0 SControl 300)
[ 5.044713] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 5.057608] br0: port 1(bootnet) entered blocking state
[ 5.057849] br0: port 1(bootnet) entered disabled state
[ 5.058104] virtio_net virtio0 bootnet: entered allmulticast mode
[ 5.058467] virtio_net virtio0 bootnet: entered promiscuous mode
[ 5.070292] iavf 0000:04:00.0 eth0: NIC Link is Up Speed is 25 Gbps Full Duplex
[ 5.226200] br0: port 1(bootnet) entered blocking state
[ 5.227109] br0: port 1(bootnet) entered forwarding state
[ 6.582527] memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
[ 7.510424] printk: systemd: 26 output lines suppressed due to ratelimiting
[ 7.580719] systemd[1]: systemd 239 (239-68.el8_7.4) running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=legacy)
[ 7.582296] systemd[1]: Detected virtualization kvm.
[ 7.582710] systemd[1]: Detected architecture x86-64.
[ 8.786273] systemd[1]: initrd-switch-root.service: Succeeded.
[ 8.787986] systemd[1]: Stopped Switch Root.
[ 8.789122] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[ 8.789238] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[ 8.789302] systemd[1]: Stopped Journal Service.
[ 8.804814] systemd[1]: Starting Journal Service...
[ 8.806484] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 9.386446] sctp: Hash tables configured (bind 512/512)
[ 10.151329] lpc_ich 0000:00:1f.0: I/O space for GPIO uninitialized
[ 10.162546] input: PC Speaker as /devices/platform/pcspkr/input/input5
[ 10.199896] i801_smbus 0000:00:1f.3: Enabling SMBus device
[ 10.200380] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 10.200770] i2c i2c-0: 4/4 memory slots populated (from DMI)
[ 10.201009] i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
[ 10.695622] RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
[ 10.947191] snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x3/0x0/0x0/0x0/0x0) type:line
[ 10.948000] snd_hda_codec_generic hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 10.948334] snd_hda_codec_generic hdaudioC0D0: hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 10.948625] snd_hda_codec_generic hdaudioC0D0: mono: mono_out=0x0
[ 10.948905] snd_hda_codec_generic hdaudioC0D0: inputs:
[ 10.949207] snd_hda_codec_generic hdaudioC0D0: Line=0x5
[ 11.392064] iTCO_vendor_support: vendor-support=0
[ 11.403557] iTCO_wdt iTCO_wdt.1.auto: Found a ICH9 TCO device (Version=2, TCOBASE=0x0660)
[ 11.404262] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[ 14.958069] 8021q: 802.1Q VLAN Support v1.8
[ 14.958351] 8021q: adding VLAN 0 to HW filter on device bootnet
[ 14.960978] 8021q: adding VLAN 0 to HW filter on device eth0
[ 16.289149] Key type cifs.spnego registered
[ 16.289541] Key type cifs.idmap registered
[ 16.290686] CIFS: No dialect specified on mount. Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3.1.1), from CIFS (SMB1). To use the less secure SMB1 dialect to access old servers which do not support SMB3.1.1 (or even SMB3 or SMB2.1) specify vers=1.0 on mount.
[ 16.290704] CIFS: Attempting to mount //10.91.4.249/OSimages
[ 16.499075] CIFS: Attempting to mount //10.102.228.23/r
[ 16.520355] CIFS: Attempting to mount //10.102.228.123/tempRepos
[ 16.546497] CIFS: Attempting to mount //10.91.4.249/Public
[ 40.499043] input: spice vdagent tablet as /devices/virtual/input/input6
[ 644.488087] iavf 0000:04:00.0: Hardware reset detected
[ 644.715500] iavf 0000:04:00.0 eth0: NIC Link is Up Speed is 25 Gbps Full Duplex
[ 687.151423] iavf 0000:04:00.0: Reset indication received from the PF
[ 687.151437] iavf 0000:04:00.0: Scheduling reset task
[ 687.297438] iavf 0000:04:00.0 eth0: NIC Link is Up Speed is 25 Gbps Full Duplex
[ 702.333195] iavf 0000:04:00.0: Multiqueue Enabled: Queue pair count = 2
[ 702.428115] iavf 0000:04:00.0 eth0: NIC Link is Up Speed is 25 Gbps Full Duplex
[-- Attachment #4: dmesg1.png --]
[-- Type: image/png, Size: 32399 bytes --]
[-- Attachment #5: dmesg2.png --]
[-- Type: image/png, Size: 159149 bytes --]
[-- Attachment #6: Type: text/plain, Size: 162 bytes --]
_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-07-20 18:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-12 20:47 [Intel-wired-lan] [PATCH iwl-next v2] ice: replace ice_vf_recreate_vsi() with ice_vf_reconfig_vsi() Jacob Keller
2023-07-12 21:08 ` Przemek Kitszel
2023-07-12 21:57 ` Keller, Jacob E
2023-07-20 17:48 ` Romanowski, Rafal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox