diff mbox series

[net,v4] i40e: Fix crash when rebuild fails in i40e_xdp_setup

Message ID 20230118153926.1335517-1-kamil.maziarz@intel.com
State Changes Requested
Delegated to: Anthony Nguyen
Headers show
Series [net,v4] i40e: Fix crash when rebuild fails in i40e_xdp_setup | expand

Commit Message

Kamil Maziarz Jan. 18, 2023, 3:39 p.m. UTC
From: Sylwester Dziedziuch <sylwesterx.dziedziuch@intel.com>

When attaching XDP program on i40e driver there was a reset and rebuild of
the interface to reconfigure the queues for XDP operation. If one of the
steps of rebuild failed then the interface was left in incorrect state that
could lead to a crash. If rebuild failed while getting capabilities from HW
such crash occurs:

capability discovery failed, err I40E_ERR_ADMIN_QUEUE_TIMEOUT aq_err OK
BUG: unable to handle kernel NULL pointer dereference at
0000000000000000 Call Trace:
? i40e_reconfig_rss_queues+0x120/0x120 [i40e]
  dev_xdp_install+0x70/0x100
  dev_xdp_attach+0x1d7/0x530
  dev_change_xdp_fd+0x1f4/0x230
  do_setlink+0x45f/0xf30
  ? irq_work_interrupt+0xa/0x20
  ? __nla_validate_parse+0x12d/0x1a0
  rtnl_setlink+0xb5/0x120
  rtnetlink_rcv_msg+0x2b1/0x360
  ? sock_has_perm+0x80/0xa0
  ? rtnl_calcit.isra.42+0x120/0x120
  netlink_rcv_skb+0x4c/0x120
  netlink_unicast+0x196/0x230
  netlink_sendmsg+0x204/0x3d0
  sock_sendmsg+0x4c/0x50
  __sys_sendto+0xee/0x160
  ? handle_mm_fault+0xc1/0x1e0
  ? syscall_trace_enter+0x1fb/0x2c0
  ? __sys_setsockopt+0xd6/0x1d0
  __x64_sys_sendto+0x24/0x30
  do_syscall_64+0x5b/0x1a0
  entry_SYSCALL_64_after_hwframe+0x65/0xca
  RIP: 0033:0x7f3535d99781

Fix this by removing reset and rebuild from i40e_xdp_setup and replace it by
interface down, reconfigure queues and interface up. This way if any step fails
the interface will remain in a correct state.

Fixes: 0c8493d90b6b ("i40e: add XDP support for pass and drop actions")
Signed-off-by: Sylwester Dziedziuch <sylwesterx.dziedziuch@intel.com>
Signed-off-by: Piotr Raczynski <piotr.raczynski@intel.com>
Signed-off-by: Andrii Staikov <andrii.staikov@intel.com>
Signed-off-by: Kamil Maziarz <kamil.maziarz@intel.com>
---
v2: don't reinitialize rings while hotswapping program
---
v3: error code 'ret' set to -EIO
---
v4: fixed the subject
---
 drivers/net/ethernet/intel/i40e/i40e_main.c | 145 +++++++++++++++-----
 1 file changed, 109 insertions(+), 36 deletions(-)

Comments

Kuruvinakunnel, George Feb. 1, 2023, 2:04 a.m. UTC | #1
Hi,

We are encountering a system crash on attaching XDP to interface on net-queue. We have confirmed that the crash is not seen with this patch removed. The stack trace is attached. 

Please review. 

Thanks, 
George K. 

> -----Original Message-----
> From: Intel-wired-lan <intel-wired-lan-bounces@osuosl.org> On Behalf Of Kamil
> Maziarz
> Sent: Wednesday, January 18, 2023 9:09 PM
> To: intel-wired-lan@lists.osuosl.org
> Cc: Maziarz, Kamil <kamil.maziarz@intel.com>; Sylwester Dziedziuch
> <sylwesterx.dziedziuch@intel.com>; Staikov, Andrii <andrii.staikov@intel.com>
> Subject: [Intel-wired-lan] [PATCH net v4] i40e: Fix crash when rebuild fails in
> i40e_xdp_setup
> 
> From: Sylwester Dziedziuch <sylwesterx.dziedziuch@intel.com>
> 
> When attaching XDP program on i40e driver there was a reset and rebuild of the
> interface to reconfigure the queues for XDP operation. If one of the steps of
> rebuild failed then the interface was left in incorrect state that could lead to a
> crash. If rebuild failed while getting capabilities from HW such crash occurs:
> 
> capability discovery failed, err I40E_ERR_ADMIN_QUEUE_TIMEOUT aq_err OK
> BUG: unable to handle kernel NULL pointer dereference at
> 0000000000000000 Call Trace:
> ? i40e_reconfig_rss_queues+0x120/0x120 [i40e]
>   dev_xdp_install+0x70/0x100
>   dev_xdp_attach+0x1d7/0x530
>   dev_change_xdp_fd+0x1f4/0x230
>   do_setlink+0x45f/0xf30
>   ? irq_work_interrupt+0xa/0x20
>   ? __nla_validate_parse+0x12d/0x1a0
>   rtnl_setlink+0xb5/0x120
>   rtnetlink_rcv_msg+0x2b1/0x360
>   ? sock_has_perm+0x80/0xa0
>   ? rtnl_calcit.isra.42+0x120/0x120
>   netlink_rcv_skb+0x4c/0x120
>   netlink_unicast+0x196/0x230
>   netlink_sendmsg+0x204/0x3d0
>   sock_sendmsg+0x4c/0x50
>   __sys_sendto+0xee/0x160
>   ? handle_mm_fault+0xc1/0x1e0
>   ? syscall_trace_enter+0x1fb/0x2c0
>   ? __sys_setsockopt+0xd6/0x1d0
>   __x64_sys_sendto+0x24/0x30
>   do_syscall_64+0x5b/0x1a0
>   entry_SYSCALL_64_after_hwframe+0x65/0xca
>   RIP: 0033:0x7f3535d99781
> 
> Fix this by removing reset and rebuild from i40e_xdp_setup and replace it by
> interface down, reconfigure queues and interface up. This way if any step fails the
> interface will remain in a correct state.
> 
> Fixes: 0c8493d90b6b ("i40e: add XDP support for pass and drop actions")
> Signed-off-by: Sylwester Dziedziuch <sylwesterx.dziedziuch@intel.com>
> Signed-off-by: Piotr Raczynski <piotr.raczynski@intel.com>
> Signed-off-by: Andrii Staikov <andrii.staikov@intel.com>
> Signed-off-by: Kamil Maziarz <kamil.maziarz@intel.com>
> ---
> v2: don't reinitialize rings while hotswapping program
> ---
> v3: error code 'ret' set to -EIO
> ---
> v4: fixed the subject
> ---
>  drivers/net/ethernet/intel/i40e/i40e_main.c | 145 +++++++++++++++-----
>  1 file changed, 109 insertions(+), 36 deletions(-)
> 
> diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c
> b/drivers/net/ethernet/intel/i40e/i40e_main.c
> index 53d0083e35da..94ff72d38e06 100644
> --- a/drivers/net/ethernet/intel/i40e/i40e_main.c
> +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
> @@ -50,6 +50,8 @@ static int i40e_veb_get_bw_info(struct i40e_veb *veb);
> static int i40e_get_capabilities(struct i40e_pf *pf,
>  				 enum i40e_admin_queue_opc list_type);  static
> bool i40e_is_total_port_shutdown_enabled(struct i40e_pf *pf);
> +static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi,
> +					      bool is_xdp);
> 
>  /* i40e_pci_tbl - PCI Device ID Table
>   *
> @@ -3563,11 +3565,17 @@ static int i40e_configure_rx_ring(struct i40e_ring
> *ring)
>  	/* clear the context structure first */
>  	memset(&rx_ctx, 0, sizeof(rx_ctx));
> 
> -	if (ring->vsi->type == I40E_VSI_MAIN)
> -		xdp_rxq_info_unreg_mem_model(&ring->xdp_rxq);
> +	if (ring->vsi->type == I40E_VSI_MAIN) {
> +		if (!xdp_rxq_info_is_reg(&ring->xdp_rxq))
> +			xdp_rxq_info_reg(&ring->xdp_rxq, ring->netdev,
> +					 ring->queue_index,
> +					 ring->q_vector->napi.napi_id);
> +	}
> 
>  	ring->xsk_pool = i40e_xsk_pool(ring);
>  	if (ring->xsk_pool) {
> +		xdp_rxq_info_unreg_mem_model(&ring->xdp_rxq);
> +
>  		ring->rx_buf_len =
>  		  xsk_pool_get_rx_frame_size(ring->xsk_pool);
>  		/* For AF_XDP ZC, we disallow packets to span on @@ -13305,6
> +13313,34 @@ static netdev_features_t i40e_features_check(struct sk_buff *skb,
>  	return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);  }
> 
> +/**
> + * i40e_vsi_assign_bpf_prog - set or clear bpf prog pointer on VSI
> + * @vsi: VSI to changed
> + * @prog: XDP program
> + **/
> +static void i40e_vsi_assign_bpf_prog(struct i40e_vsi *vsi,
> +						 struct bpf_prog *prog)
> +{
> +	int i;
> +
> +	for (i = 0; i < vsi->num_queue_pairs; i++)
> +		WRITE_ONCE(vsi->rx_rings[i]->xdp_prog, vsi->xdp_prog); }
> +
> +/**
> + * i40e_vsi_rx_napi_schedule - Schedule napi on RX queues from VSI
> + * @vsi: VSI to schedule napi on
> + */
> +static void i40e_vsi_rx_napi_schedule(struct i40e_vsi *vsi) {
> +	int i;
> +
> +	for (i = 0; i < vsi->num_queue_pairs; i++)
> +		if (vsi->xdp_rings[i]->xsk_pool)
> +			(void)i40e_xsk_wakeup(vsi->netdev, i,
> +					      XDP_WAKEUP_RX);
> +}
> +
>  /**
>   * i40e_xdp_setup - add/remove an XDP program
>   * @vsi: VSI to changed
> @@ -13315,10 +13351,12 @@ static int i40e_xdp_setup(struct i40e_vsi *vsi,
> struct bpf_prog *prog,
>  			  struct netlink_ext_ack *extack)
>  {
>  	int frame_size = vsi->netdev->mtu + ETH_HLEN + ETH_FCS_LEN +
> VLAN_HLEN;
> +	bool is_xdp_enabled = i40e_enabled_xdp_vsi(vsi);
> +	bool if_running = netif_running(vsi->netdev);
> +	bool need_reinit = is_xdp_enabled != !!prog;
>  	struct i40e_pf *pf = vsi->back;
>  	struct bpf_prog *old_prog;
> -	bool need_reset;
> -	int i;
> +	int ret = 0;
> 
>  	/* Don't allow frames that span over multiple buffers */
>  	if (frame_size > i40e_calculate_vsi_rx_buf_len(vsi)) { @@ -13326,35
> +13364,59 @@ static int i40e_xdp_setup(struct i40e_vsi *vsi, struct bpf_prog
> *prog,
>  		return -EINVAL;
>  	}
> 
> -	/* When turning XDP on->off/off->on we reset and rebuild the rings. */
> -	need_reset = (i40e_enabled_xdp_vsi(vsi) != !!prog);
> -
> -	if (need_reset)
> -		i40e_prep_for_reset(pf);
> -
>  	/* VSI shall be deleted in a moment, just return EINVAL */
>  	if (test_bit(__I40E_IN_REMOVE, pf->state))
>  		return -EINVAL;
> 
>  	old_prog = xchg(&vsi->xdp_prog, prog);
> 
> -	if (need_reset) {
> -		if (!prog)
> -			/* Wait until ndo_xsk_wakeup completes. */
> -			synchronize_rcu();
> -		i40e_reset_and_rebuild(pf, true, true);
> +	if (!need_reinit)
> +		goto assign_prog;
> +
> +	if (if_running && !test_and_set_bit(__I40E_VSI_DOWN, vsi->state))
> +		i40e_down(vsi);
> +
> +	vsi = i40e_vsi_reinit_setup(vsi, true);
> +
> +	if (!vsi) {
> +		NL_SET_ERR_MSG_MOD(extack, "Failed to reinitialize VSI
> during XDP setup");
> +		ret = -EIO;
> +		goto err_vsi_setup;
>  	}
> 
> -	if (!i40e_enabled_xdp_vsi(vsi) && prog) {
> -		if (i40e_realloc_rx_bi_zc(vsi, true))
> -			return -ENOMEM;
> -	} else if (i40e_enabled_xdp_vsi(vsi) && !prog) {
> -		if (i40e_realloc_rx_bi_zc(vsi, false))
> -			return -ENOMEM;
> +	/* allocate descriptors */
> +	ret = i40e_vsi_setup_tx_resources(vsi);
> +	if (ret) {
> +		NL_SET_ERR_MSG_MOD(extack, "Failed to configure TX
> resources during XDP setup");
> +		goto err_setup_tx;
> +	}
> +	ret = i40e_vsi_setup_rx_resources(vsi);
> +	if (ret) {
> +		NL_SET_ERR_MSG_MOD(extack, "Failed to configure RX
> resources during XDP setup");
> +		goto err_setup_rx;
>  	}
> 
> -	for (i = 0; i < vsi->num_queue_pairs; i++)
> -		WRITE_ONCE(vsi->rx_rings[i]->xdp_prog, vsi->xdp_prog);
> +	if (!is_xdp_enabled && prog)
> +		ret = i40e_realloc_rx_bi_zc(vsi, true);
> +	else if (is_xdp_enabled && !prog)
> +		ret = i40e_realloc_rx_bi_zc(vsi, false);
> +
> +	if (ret) {
> +		NL_SET_ERR_MSG_MOD(extack, "Failed to reallocate RX
> resources during XDP setup");
> +		goto err_vsi_setup;
> +	}
> +
> +	if (if_running) {
> +		ret = i40e_up(vsi);
> +
> +		if (ret) {
> +			NL_SET_ERR_MSG_MOD(extack, "Failed to open VSI
> during XDP setup");
> +			goto err_vsi_setup;
> +		}
> +	}
> +
> +assign_prog:
> +	i40e_vsi_assign_bpf_prog(vsi, prog);
> 
>  	if (old_prog)
>  		bpf_prog_put(old_prog);
> @@ -13362,13 +13424,20 @@ static int i40e_xdp_setup(struct i40e_vsi *vsi,
> struct bpf_prog *prog,
>  	/* Kick start the NAPI context if there is an AF_XDP socket open
>  	 * on that queue id. This so that receiving will start.
>  	 */
> -	if (need_reset && prog)
> -		for (i = 0; i < vsi->num_queue_pairs; i++)
> -			if (vsi->xdp_rings[i]->xsk_pool)
> -				(void)i40e_xsk_wakeup(vsi->netdev, i,
> -						      XDP_WAKEUP_RX);
> +	if (need_reinit && prog)
> +		i40e_vsi_rx_napi_schedule(vsi);
> 
>  	return 0;
> +
> +err_setup_rx:
> +	i40e_vsi_free_rx_resources(vsi);
> +err_setup_tx:
> +	i40e_vsi_free_tx_resources(vsi);
> +err_vsi_setup:
> +	i40e_do_reset(pf, I40E_PF_RESET_FLAG, true);
> +	i40e_vsi_assign_bpf_prog(vsi, old_prog);
> +
> +	return ret;
>  }
> 
>  /**
> @@ -14310,13 +14379,14 @@ static int i40e_vsi_setup_vectors(struct i40e_vsi
> *vsi)
>  /**
>   * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
>   * @vsi: pointer to the vsi.
> + * @is_xdp: flag indicating if this is reinit during XDP setup
>   *
>   * This re-allocates a vsi's queue resources.
>   *
>   * Returns pointer to the successfully allocated and configured VSI sw struct
>   * on success, otherwise returns NULL on failure.
>   **/
> -static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
> +static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi,
> +bool is_xdp)
>  {
>  	u16 alloc_queue_pairs;
>  	struct i40e_pf *pf;
> @@ -14352,12 +14422,14 @@ static struct i40e_vsi *i40e_vsi_reinit_setup(struct
> i40e_vsi *vsi)
>  	/* Update the FW view of the VSI. Force a reset of TC and queue
>  	 * layout configurations.
>  	 */
> -	enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
> -	pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
> -	pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
> -	i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
> -	if (vsi->type == I40E_VSI_MAIN)
> -		i40e_rm_default_mac_filter(vsi, pf->hw.mac.perm_addr);
> +	if (!is_xdp) {
> +		enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
> +		pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
> +		pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
> +		i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
> +		if (vsi->type == I40E_VSI_MAIN)
> +			i40e_rm_default_mac_filter(vsi, pf->hw.mac.perm_addr);
> +	}
> 
>  	/* assign it some queues */
>  	ret = i40e_alloc_rings(vsi);
> @@ -15123,7 +15195,8 @@ static int i40e_setup_pf_switch(struct i40e_pf *pf,
> bool reinit, bool lock_acqui
>  		if (pf->lan_vsi == I40E_NO_VSI)
>  			vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
>  		else if (reinit)
> -			vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
> +			vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi],
> +						    false);
>  		if (!vsi) {
>  			dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
>  			i40e_cloud_filter_exit(pf);
> --
> 2.25.1
> 
> _______________________________________________
> Intel-wired-lan mailing list
> Intel-wired-lan@osuosl.org
> https://lists.osuosl.org/mailman/listinfo/intel-wired-lan
[    0.000000] Linux version 6.2.0-rc2-09th-Jan_23_Next-Queue+ (root@localhost.localdomain) (gcc (GCC) 11.2.1 20220127 (Red Hat 11.2.1-9), GNU ld version 2.35.2-17.el9) #1 SMP PREEMPT_DYNAMIC Tue Jan 10 04:07:40 IST 2023
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-6.2.0-rc2-09th-Jan_23_Next-Queue+ root=/dev/mapper/rhel-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/rhel-swap rd.lvm.lv=rhel/root rd.lvm.lv=rhel/swap rhgb quiet
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: xstate_offset[5]:  960, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]: 1024, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1536, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2560, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 3632
[    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-0x000000005cd6bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000005cd6c000-0x000000005cf92fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005cf93000-0x000000005d27dfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000005d27e000-0x000000005f6eefff] usable
[    0.000000] BIOS-e820: [mem 0x000000005f6ef000-0x000000005f749fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000005f74a000-0x000000005f7b1fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005f7b2000-0x000000005f7e0fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000005f7e1000-0x0000000063898fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000063899000-0x000000006394cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006394d000-0x0000000063fadfff] usable
[    0.000000] BIOS-e820: [mem 0x0000000063fae000-0x0000000064036fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000064037000-0x0000000064332fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000064333000-0x0000000064b34fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000064b35000-0x0000000064c14fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000064c15000-0x0000000065c14fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000065c15000-0x000000006756cfff] usable
[    0.000000] BIOS-e820: [mem 0x000000006756d000-0x000000006786cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000006786d000-0x000000006829cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000006829d000-0x000000006839cfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000006839d000-0x000000006f7fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000006f800000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x63c4c018-0x63c54057] usable ==> usable
[    0.000000] e820: update [mem 0x63c4c018-0x63c54057] usable ==> usable
[    0.000000] e820: update [mem 0x5b4ec018-0x5b524e57] usable ==> usable
[    0.000000] e820: update [mem 0x5b4ec018-0x5b524e57] usable ==> usable
[    0.000000] e820: update [mem 0x5b4b3018-0x5b4ebe57] usable ==> usable
[    0.000000] e820: update [mem 0x5b4b3018-0x5b4ebe57] usable ==> usable
[    0.000000] e820: update [mem 0x5b47a018-0x5b4b2857] usable ==> usable
[    0.000000] e820: update [mem 0x5b47a018-0x5b4b2857] usable ==> usable
[    0.000000] e820: update [mem 0x5b441018-0x5b479857] usable ==> usable
[    0.000000] e820: update [mem 0x5b441018-0x5b479857] usable ==> usable
[    0.000000] e820: update [mem 0x5ae41018-0x5ae79857] usable ==> usable
[    0.000000] e820: update [mem 0x5ae41018-0x5ae79857] usable ==> usable
[    0.000000] e820: update [mem 0x5ae08018-0x5ae40857] usable ==> usable
[    0.000000] e820: update [mem 0x5ae08018-0x5ae40857] usable ==> usable
[    0.000000] e820: update [mem 0x5adab018-0x5ae07e57] usable ==> usable
[    0.000000] e820: update [mem 0x5adab018-0x5ae07e57] 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-0x000000005adab017] usable
[    0.000000] reserve setup_data: [mem 0x000000005adab018-0x000000005ae07e57] usable
[    0.000000] reserve setup_data: [mem 0x000000005ae07e58-0x000000005ae08017] usable
[    0.000000] reserve setup_data: [mem 0x000000005ae08018-0x000000005ae40857] usable
[    0.000000] reserve setup_data: [mem 0x000000005ae40858-0x000000005ae41017] usable
[    0.000000] reserve setup_data: [mem 0x000000005ae41018-0x000000005ae79857] usable
[    0.000000] reserve setup_data: [mem 0x000000005ae79858-0x000000005b441017] usable
[    0.000000] reserve setup_data: [mem 0x000000005b441018-0x000000005b479857] usable
[    0.000000] reserve setup_data: [mem 0x000000005b479858-0x000000005b47a017] usable
[    0.000000] reserve setup_data: [mem 0x000000005b47a018-0x000000005b4b2857] usable
[    0.000000] reserve setup_data: [mem 0x000000005b4b2858-0x000000005b4b3017] usable
[    0.000000] reserve setup_data: [mem 0x000000005b4b3018-0x000000005b4ebe57] usable
[    0.000000] reserve setup_data: [mem 0x000000005b4ebe58-0x000000005b4ec017] usable
[    0.000000] reserve setup_data: [mem 0x000000005b4ec018-0x000000005b524e57] usable
[    0.000000] reserve setup_data: [mem 0x000000005b524e58-0x000000005cd6bfff] usable
[    0.000000] reserve setup_data: [mem 0x000000005cd6c000-0x000000005cf92fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000005cf93000-0x000000005d27dfff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000005d27e000-0x000000005f6eefff] usable
[    0.000000] reserve setup_data: [mem 0x000000005f6ef000-0x000000005f749fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000005f74a000-0x000000005f7b1fff] usable
[    0.000000] reserve setup_data: [mem 0x000000005f7b2000-0x000000005f7e0fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000005f7e1000-0x0000000063898fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000063899000-0x000000006394cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000006394d000-0x0000000063c4c017] usable
[    0.000000] reserve setup_data: [mem 0x0000000063c4c018-0x0000000063c54057] usable
[    0.000000] reserve setup_data: [mem 0x0000000063c54058-0x0000000063fadfff] usable
[    0.000000] reserve setup_data: [mem 0x0000000063fae000-0x0000000064036fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000064037000-0x0000000064332fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000064333000-0x0000000064b34fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000064b35000-0x0000000064c14fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000064c15000-0x0000000065c14fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000065c15000-0x000000006756cfff] usable
[    0.000000] reserve setup_data: [mem 0x000000006756d000-0x000000006786cfff] reserved
[    0.000000] reserve setup_data: [mem 0x000000006786d000-0x000000006829cfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000006829d000-0x000000006839cfff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000006839d000-0x000000006f7fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000006f800000-0x000000008fffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000207fffffff] usable
[    0.000000] efi: EFI v2.60 by EDK II BIOS ID:SE5C620.86B.02.01.0013.121520200651
[    0.000000] efi: SMBIOS=0x67669000 ACPI=0x6839c000 ACPI 2.0=0x6839c014 MEMATTR=0x63c5b018 MOKvar=0x67668000 RNG=0x682b3018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem353: MMIO range=[0x80000000-0x8fffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0x80000000-0x8fffffff] reserved
[    0.000000] efi: Not removing mem354: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: Intel Corporation S2600BPB/S2600BPB, BIOS SE5C620.86B.02.01.0013.121520200651 12/15/2020
[    0.000000] tsc: Detected 2400.000 MHz processor
[    0.000015] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000018] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000044] last_pfn = 0x2080000 max_arch_pfn = 0x400000000
[    0.000052] total RAM covered: 131056M
[    0.000214] Found optimal setting for mtrr clean up
[    0.000214]  gran_size: 64K 	chunk_size: 32M 	num_reg: 8  	lose cover RAM: 0G
[    0.000219] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000793] e820: update [mem 0x7f000000-0xffffffff] usable ==> reserved
[    0.000798] last_pfn = 0x6f800 max_arch_pfn = 0x400000000
[    0.010407] Using GB pages for direct mapping
[    0.011931] Secure boot disabled
[    0.011932] RAMDISK: [mem 0x3bd4c000-0x43be2fff]
[    0.011935] ACPI: Early table checksum verification disabled
[    0.011938] ACPI: RSDP 0x000000006839C014 000024 (v02 INTEL )
[    0.011942] ACPI: XSDT 0x00000000682BB188 0000FC (v01 INTEL  S2600BP  00000000 INTL 20091013)
[    0.011949] ACPI: FACP 0x0000000068399000 00010C (v05 INTEL  S2600BP  00000000 INTL 20091013)
[    0.011955] ACPI: DSDT 0x000000005CF93000 2EA92A (v02 INTEL  S2600BP  00000003 INTL 20091013)
[    0.011958] ACPI: FACS 0x00000000681E6000 000040
[    0.011961] ACPI: SSDT 0x000000006839A000 0004B0 (v02 INTEL  S2600BP  00000000 MSFT 0100000D)
[    0.011964] ACPI: UEFI 0x000000006824A000 000042 (v01 INTEL  S2600BP  00000002 INTL 20091013)
[    0.011968] ACPI: UEFI 0x00000000681E8000 00005C (v01 INTEL  RstUefiV 00000000      00000000)
[    0.011971] ACPI: HPET 0x0000000068398000 000038 (v01 INTEL  S2600BP  00000001 INTL 20091013)
[    0.011974] ACPI: APIC 0x0000000068396000 0016DE (v03 INTEL  S2600BP  00000000 INTL 20091013)
[    0.011978] ACPI: MCFG 0x0000000068395000 00003C (v01 INTEL  S2600BP  00000001 INTL 20091013)
[    0.011981] ACPI: MSCT 0x0000000068394000 000090 (v01 INTEL  S2600BP  00000001 INTL 20091013)
[    0.011984] ACPI: PCAT 0x0000000068393000 000088 (v02 INTEL  S2600BP  00000002 INTL 20091013)
[    0.011987] ACPI: PCCT 0x0000000068392000 00006E (v01 INTEL  S2600BP  00000002 INTL 20091013)
[    0.011990] ACPI: RASF 0x0000000068391000 000030 (v01 INTEL  S2600BP  00000001 INTL 20091013)
[    0.011994] ACPI: SLIT 0x0000000068390000 00042C (v01 INTEL  S2600BP  00000001 INTL 20091013)
[    0.011997] ACPI: SRAT 0x000000006838D000 002D30 (v03 INTEL  S2600BP  00000002 INTL 20091013)
[    0.012001] ACPI: SPMI 0x000000006838C000 000041 (v05 INTEL  S2600BP  00000001 INTL 20091013)
[    0.012004] ACPI: WDDT 0x000000006838B000 000040 (v01 INTEL  S2600BP  00000000 INTL 20091013)
[    0.012007] ACPI: WSMT 0x000000006838A000 000028 (v01 INTEL  S2600BP  00000000 INTL 20091013)
[    0.012010] ACPI: OEM4 0x00000000682E7000 0A27C4 (v02 INTEL  CPU  CST 00003000 INTL 20140828)
[    0.012013] ACPI: OEM1 0x00000000682BC000 02A2C4 (v02 INTEL  CPU EIST 00003000 INTL 20140828)
[    0.012017] ACPI: OEM2 0x000000005F7B2000 02EA84 (v02 INTEL  CPU  HWP 00003000 INTL 20140828)
[    0.012020] ACPI: SSDT 0x000000005F716000 033990 (v02 INTEL  S2600BP  00004000 INTL 20091013)
[    0.012023] ACPI: OEM3 0x000000005F6EF000 026664 (v02 INTEL  CPU  TST 00003000 INTL 20140828)
[    0.012027] ACPI: SSDT 0x00000000682B8000 002B10 (v02 INTEL  S2600BP  00000002 INTL 20091013)
[    0.012030] ACPI: HEST 0x000000006839B000 0000A8 (v01 INTEL  S2600BP  00000001 INTL 00000001)
[    0.012033] ACPI: BERT 0x00000000682B7000 000030 (v01 INTEL  S2600BP  00000001 INTL 00000001)
[    0.012036] ACPI: ERST 0x00000000682B6000 000230 (v01 INTEL  S2600BP  00000001 INTL 00000001)
[    0.012040] ACPI: EINJ 0x00000000682B5000 000150 (v01 INTEL  S2600BP  00000001 INTL 00000001)
[    0.012043] ACPI: BGRT 0x00000000682B4000 000038 (v01 INTEL  S2600BP  00000002 INTL 20091013)
[    0.012045] ACPI: Reserving FACP table memory at [mem 0x68399000-0x6839910b]
[    0.012047] ACPI: Reserving DSDT table memory at [mem 0x5cf93000-0x5d27d929]
[    0.012048] ACPI: Reserving FACS table memory at [mem 0x681e6000-0x681e603f]
[    0.012049] ACPI: Reserving SSDT table memory at [mem 0x6839a000-0x6839a4af]
[    0.012050] ACPI: Reserving UEFI table memory at [mem 0x6824a000-0x6824a041]
[    0.012052] ACPI: Reserving UEFI table memory at [mem 0x681e8000-0x681e805b]
[    0.012053] ACPI: Reserving HPET table memory at [mem 0x68398000-0x68398037]
[    0.012054] ACPI: Reserving APIC table memory at [mem 0x68396000-0x683976dd]
[    0.012055] ACPI: Reserving MCFG table memory at [mem 0x68395000-0x6839503b]
[    0.012056] ACPI: Reserving MSCT table memory at [mem 0x68394000-0x6839408f]
[    0.012057] ACPI: Reserving PCAT table memory at [mem 0x68393000-0x68393087]
[    0.012058] ACPI: Reserving PCCT table memory at [mem 0x68392000-0x6839206d]
[    0.012059] ACPI: Reserving RASF table memory at [mem 0x68391000-0x6839102f]
[    0.012060] ACPI: Reserving SLIT table memory at [mem 0x68390000-0x6839042b]
[    0.012061] ACPI: Reserving SRAT table memory at [mem 0x6838d000-0x6838fd2f]
[    0.012062] ACPI: Reserving SPMI table memory at [mem 0x6838c000-0x6838c040]
[    0.012063] ACPI: Reserving WDDT table memory at [mem 0x6838b000-0x6838b03f]
[    0.012064] ACPI: Reserving WSMT table memory at [mem 0x6838a000-0x6838a027]
[    0.012066] ACPI: Reserving OEM4 table memory at [mem 0x682e7000-0x683897c3]
[    0.012067] ACPI: Reserving OEM1 table memory at [mem 0x682bc000-0x682e62c3]
[    0.012068] ACPI: Reserving OEM2 table memory at [mem 0x5f7b2000-0x5f7e0a83]
[    0.012069] ACPI: Reserving SSDT table memory at [mem 0x5f716000-0x5f74998f]
[    0.012070] ACPI: Reserving OEM3 table memory at [mem 0x5f6ef000-0x5f715663]
[    0.012071] ACPI: Reserving SSDT table memory at [mem 0x682b8000-0x682bab0f]
[    0.012073] ACPI: Reserving HEST table memory at [mem 0x6839b000-0x6839b0a7]
[    0.012074] ACPI: Reserving BERT table memory at [mem 0x682b7000-0x682b702f]
[    0.012075] ACPI: Reserving ERST table memory at [mem 0x682b6000-0x682b622f]
[    0.012076] ACPI: Reserving EINJ table memory at [mem 0x682b5000-0x682b514f]
[    0.012077] ACPI: Reserving BGRT table memory at [mem 0x682b4000-0x682b4037]
[    0.012118] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.012120] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.012121] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.012122] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.012123] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.012124] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.012124] SRAT: PXM 0 -> APIC 0x0c -> Node 0
[    0.012125] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.012126] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.012127] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.012128] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.012129] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.012130] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.012131] SRAT: PXM 0 -> APIC 0x20 -> Node 0
[    0.012131] SRAT: PXM 0 -> APIC 0x22 -> Node 0
[    0.012132] SRAT: PXM 0 -> APIC 0x24 -> Node 0
[    0.012133] SRAT: PXM 0 -> APIC 0x26 -> Node 0
[    0.012134] SRAT: PXM 0 -> APIC 0x28 -> Node 0
[    0.012134] SRAT: PXM 0 -> APIC 0x2a -> Node 0
[    0.012135] SRAT: PXM 0 -> APIC 0x32 -> Node 0
[    0.012136] SRAT: PXM 0 -> APIC 0x34 -> Node 0
[    0.012137] SRAT: PXM 0 -> APIC 0x36 -> Node 0
[    0.012138] SRAT: PXM 0 -> APIC 0x38 -> Node 0
[    0.012138] SRAT: PXM 0 -> APIC 0x3a -> Node 0
[    0.012139] SRAT: PXM 1 -> APIC 0x40 -> Node 1
[    0.012140] SRAT: PXM 1 -> APIC 0x42 -> Node 1
[    0.012141] SRAT: PXM 1 -> APIC 0x44 -> Node 1
[    0.012142] SRAT: PXM 1 -> APIC 0x46 -> Node 1
[    0.012142] SRAT: PXM 1 -> APIC 0x48 -> Node 1
[    0.012143] SRAT: PXM 1 -> APIC 0x4a -> Node 1
[    0.012144] SRAT: PXM 1 -> APIC 0x4c -> Node 1
[    0.012145] SRAT: PXM 1 -> APIC 0x50 -> Node 1
[    0.012146] SRAT: PXM 1 -> APIC 0x52 -> Node 1
[    0.012146] SRAT: PXM 1 -> APIC 0x54 -> Node 1
[    0.012147] SRAT: PXM 1 -> APIC 0x56 -> Node 1
[    0.012148] SRAT: PXM 1 -> APIC 0x58 -> Node 1
[    0.012149] SRAT: PXM 1 -> APIC 0x5a -> Node 1
[    0.012150] SRAT: PXM 1 -> APIC 0x60 -> Node 1
[    0.012150] SRAT: PXM 1 -> APIC 0x62 -> Node 1
[    0.012151] SRAT: PXM 1 -> APIC 0x64 -> Node 1
[    0.012152] SRAT: PXM 1 -> APIC 0x66 -> Node 1
[    0.012153] SRAT: PXM 1 -> APIC 0x68 -> Node 1
[    0.012153] SRAT: PXM 1 -> APIC 0x6a -> Node 1
[    0.012154] SRAT: PXM 1 -> APIC 0x72 -> Node 1
[    0.012155] SRAT: PXM 1 -> APIC 0x74 -> Node 1
[    0.012156] SRAT: PXM 1 -> APIC 0x76 -> Node 1
[    0.012157] SRAT: PXM 1 -> APIC 0x78 -> Node 1
[    0.012157] SRAT: PXM 1 -> APIC 0x7a -> Node 1
[    0.012158] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.012159] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.012160] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.012161] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.012162] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.012162] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.012163] SRAT: PXM 0 -> APIC 0x0d -> Node 0
[    0.012164] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.012165] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.012166] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.012167] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.012168] SRAT: PXM 0 -> APIC 0x19 -> Node 0
[    0.012168] SRAT: PXM 0 -> APIC 0x1b -> Node 0
[    0.012169] SRAT: PXM 0 -> APIC 0x21 -> Node 0
[    0.012170] SRAT: PXM 0 -> APIC 0x23 -> Node 0
[    0.012171] SRAT: PXM 0 -> APIC 0x25 -> Node 0
[    0.012172] SRAT: PXM 0 -> APIC 0x27 -> Node 0
[    0.012172] SRAT: PXM 0 -> APIC 0x29 -> Node 0
[    0.012173] SRAT: PXM 0 -> APIC 0x2b -> Node 0
[    0.012174] SRAT: PXM 0 -> APIC 0x33 -> Node 0
[    0.012175] SRAT: PXM 0 -> APIC 0x35 -> Node 0
[    0.012176] SRAT: PXM 0 -> APIC 0x37 -> Node 0
[    0.012176] SRAT: PXM 0 -> APIC 0x39 -> Node 0
[    0.012177] SRAT: PXM 0 -> APIC 0x3b -> Node 0
[    0.012178] SRAT: PXM 1 -> APIC 0x41 -> Node 1
[    0.012179] SRAT: PXM 1 -> APIC 0x43 -> Node 1
[    0.012179] SRAT: PXM 1 -> APIC 0x45 -> Node 1
[    0.012180] SRAT: PXM 1 -> APIC 0x47 -> Node 1
[    0.012181] SRAT: PXM 1 -> APIC 0x49 -> Node 1
[    0.012182] SRAT: PXM 1 -> APIC 0x4b -> Node 1
[    0.012183] SRAT: PXM 1 -> APIC 0x4d -> Node 1
[    0.012183] SRAT: PXM 1 -> APIC 0x51 -> Node 1
[    0.012184] SRAT: PXM 1 -> APIC 0x53 -> Node 1
[    0.012185] SRAT: PXM 1 -> APIC 0x55 -> Node 1
[    0.012186] SRAT: PXM 1 -> APIC 0x57 -> Node 1
[    0.012186] SRAT: PXM 1 -> APIC 0x59 -> Node 1
[    0.012187] SRAT: PXM 1 -> APIC 0x5b -> Node 1
[    0.012188] SRAT: PXM 1 -> APIC 0x61 -> Node 1
[    0.012189] SRAT: PXM 1 -> APIC 0x63 -> Node 1
[    0.012190] SRAT: PXM 1 -> APIC 0x65 -> Node 1
[    0.012190] SRAT: PXM 1 -> APIC 0x67 -> Node 1
[    0.012191] SRAT: PXM 1 -> APIC 0x69 -> Node 1
[    0.012192] SRAT: PXM 1 -> APIC 0x6b -> Node 1
[    0.012193] SRAT: PXM 1 -> APIC 0x73 -> Node 1
[    0.012193] SRAT: PXM 1 -> APIC 0x75 -> Node 1
[    0.012194] SRAT: PXM 1 -> APIC 0x77 -> Node 1
[    0.012195] SRAT: PXM 1 -> APIC 0x79 -> Node 1
[    0.012196] SRAT: PXM 1 -> APIC 0x7b -> Node 1
[    0.012221] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.012223] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x107fffffff]
[    0.012225] ACPI: SRAT: Node 1 PXM 1 [mem 0x1080000000-0x207fffffff]
[    0.012236] NUMA: Initialized distance table, cnt=2
[    0.012240] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x107fffffff] -> [mem 0x00000000-0x107fffffff]
[    0.012255] NODE_DATA(0) allocated [mem 0x107ffd5000-0x107fffffff]
[    0.012282] NODE_DATA(1) allocated [mem 0x207ffd2000-0x207fffcfff]
[    0.012588] Reserving 512MB of memory at 432MB for crashkernel (System RAM: 130762MB)
[    0.012789] Zone ranges:
[    0.012790]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.012792]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.012794]   Normal   [mem 0x0000000100000000-0x000000207fffffff]
[    0.012796]   Device   empty
[    0.012797] Movable zone start for each node
[    0.012800] Early memory node ranges
[    0.012801]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.012802]   node   0: [mem 0x0000000000100000-0x000000005cd6bfff]
[    0.012804]   node   0: [mem 0x000000005d27e000-0x000000005f6eefff]
[    0.012805]   node   0: [mem 0x000000005f74a000-0x000000005f7b1fff]
[    0.012806]   node   0: [mem 0x000000005f7e1000-0x0000000063898fff]
[    0.012807]   node   0: [mem 0x000000006394d000-0x0000000063fadfff]
[    0.012807]   node   0: [mem 0x0000000064037000-0x0000000064332fff]
[    0.012808]   node   0: [mem 0x0000000064b35000-0x0000000064c14fff]
[    0.012809]   node   0: [mem 0x0000000065c15000-0x000000006756cfff]
[    0.012810]   node   0: [mem 0x000000006839d000-0x000000006f7fffff]
[    0.012811]   node   0: [mem 0x0000000100000000-0x000000107fffffff]
[    0.012820]   node   1: [mem 0x0000001080000000-0x000000207fffffff]
[    0.012830] Initmem setup node 0 [mem 0x0000000000001000-0x000000107fffffff]
[    0.012834] Initmem setup node 1 [mem 0x0000001080000000-0x000000207fffffff]
[    0.012839] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.012895] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.018294] On node 0, zone DMA32: 1298 pages in unavailable ranges
[    0.018299] On node 0, zone DMA32: 91 pages in unavailable ranges
[    0.018538] On node 0, zone DMA32: 47 pages in unavailable ranges
[    0.018566] On node 0, zone DMA32: 180 pages in unavailable ranges
[    0.018584] On node 0, zone DMA32: 137 pages in unavailable ranges
[    0.018625] On node 0, zone DMA32: 2050 pages in unavailable ranges
[    0.018788] On node 0, zone DMA32: 4096 pages in unavailable ranges
[    0.019269] On node 0, zone DMA32: 3632 pages in unavailable ranges
[    0.019823] On node 0, zone Normal: 2048 pages in unavailable ranges
[    0.020431] ACPI: PM-Timer IO Port: 0x508
[    0.020475] ACPI: X2APIC_NMI (uid[0xffffffff] high level lint[0x1])
[    0.020479] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
[    0.020500] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[    0.020505] IOAPIC[1]: apic_id 9, version 32, address 0xfec01000, GSI 24-31
[    0.020510] IOAPIC[2]: apic_id 10, version 32, address 0xfec08000, GSI 32-39
[    0.020514] IOAPIC[3]: apic_id 11, version 32, address 0xfec10000, GSI 40-47
[    0.020519] IOAPIC[4]: apic_id 12, version 32, address 0xfec18000, GSI 48-55
[    0.020523] IOAPIC[5]: apic_id 15, version 32, address 0xfec20000, GSI 72-79
[    0.020528] IOAPIC[6]: apic_id 16, version 32, address 0xfec28000, GSI 80-87
[    0.020533] IOAPIC[7]: apic_id 17, version 32, address 0xfec30000, GSI 88-95
[    0.020538] IOAPIC[8]: apic_id 18, version 32, address 0xfec38000, GSI 96-103
[    0.020543] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.020546] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.020558] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.020559] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.020576] e820: update [mem 0x5b5e7000-0x5b6c8fff] usable ==> reserved
[    0.020608] TSC deadline timer available
[    0.020609] smpboot: Allowing 96 CPUs, 0 hotplug CPUs
[    0.020663] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.020666] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.020669] PM: hibernation: Registered nosave memory: [mem 0x5adab000-0x5adabfff]
[    0.020672] PM: hibernation: Registered nosave memory: [mem 0x5ae07000-0x5ae07fff]
[    0.020673] PM: hibernation: Registered nosave memory: [mem 0x5ae08000-0x5ae08fff]
[    0.020675] PM: hibernation: Registered nosave memory: [mem 0x5ae40000-0x5ae40fff]
[    0.020676] PM: hibernation: Registered nosave memory: [mem 0x5ae41000-0x5ae41fff]
[    0.020679] PM: hibernation: Registered nosave memory: [mem 0x5ae79000-0x5ae79fff]
[    0.020682] PM: hibernation: Registered nosave memory: [mem 0x5b441000-0x5b441fff]
[    0.020684] PM: hibernation: Registered nosave memory: [mem 0x5b479000-0x5b479fff]
[    0.020685] PM: hibernation: Registered nosave memory: [mem 0x5b47a000-0x5b47afff]
[    0.020688] PM: hibernation: Registered nosave memory: [mem 0x5b4b2000-0x5b4b2fff]
[    0.020689] PM: hibernation: Registered nosave memory: [mem 0x5b4b3000-0x5b4b3fff]
[    0.020691] PM: hibernation: Registered nosave memory: [mem 0x5b4eb000-0x5b4ebfff]
[    0.020692] PM: hibernation: Registered nosave memory: [mem 0x5b4ec000-0x5b4ecfff]
[    0.020695] PM: hibernation: Registered nosave memory: [mem 0x5b524000-0x5b524fff]
[    0.020698] PM: hibernation: Registered nosave memory: [mem 0x5b5e7000-0x5b6c8fff]
[    0.020701] PM: hibernation: Registered nosave memory: [mem 0x5cd6c000-0x5cf92fff]
[    0.020701] PM: hibernation: Registered nosave memory: [mem 0x5cf93000-0x5d27dfff]
[    0.020704] PM: hibernation: Registered nosave memory: [mem 0x5f6ef000-0x5f749fff]
[    0.020707] PM: hibernation: Registered nosave memory: [mem 0x5f7b2000-0x5f7e0fff]
[    0.020710] PM: hibernation: Registered nosave memory: [mem 0x63899000-0x6394cfff]
[    0.020713] PM: hibernation: Registered nosave memory: [mem 0x63c4c000-0x63c4cfff]
[    0.020716] PM: hibernation: Registered nosave memory: [mem 0x63c54000-0x63c54fff]
[    0.020719] PM: hibernation: Registered nosave memory: [mem 0x63fae000-0x64036fff]
[    0.020722] PM: hibernation: Registered nosave memory: [mem 0x64333000-0x64b34fff]
[    0.020725] PM: hibernation: Registered nosave memory: [mem 0x64c15000-0x65c14fff]
[    0.020728] PM: hibernation: Registered nosave memory: [mem 0x6756d000-0x6786cfff]
[    0.020729] PM: hibernation: Registered nosave memory: [mem 0x6786d000-0x6829cfff]
[    0.020729] PM: hibernation: Registered nosave memory: [mem 0x6829d000-0x6839cfff]
[    0.020733] PM: hibernation: Registered nosave memory: [mem 0x6f800000-0x7fffffff]
[    0.020733] PM: hibernation: Registered nosave memory: [mem 0x80000000-0xfdffffff]
[    0.020734] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.020735] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xffffffff]
[    0.020737] [mem 0x80000000-0xfdffffff] available for PCI devices
[    0.020738] Booting paravirtualized kernel on bare hardware
[    0.020741] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.027734] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:96 nr_cpu_ids:96 nr_node_ids:2
[    0.034229] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    0.034248] pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
[    0.034251] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.034262] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 48 49 50 51 52 53 54 55 
[    0.034271] pcpu-alloc: [0] 56 57 58 59 60 61 62 63 [0] 64 65 66 67 68 69 70 71 
[    0.034281] pcpu-alloc: [1] 24 25 26 27 28 29 30 31 [1] 32 33 34 35 36 37 38 39 
[    0.034290] pcpu-alloc: [1] 40 41 42 43 44 45 46 47 [1] 72 73 74 75 76 77 78 79 
[    0.034300] pcpu-alloc: [1] 80 81 82 83 84 85 86 87 [1] 88 89 90 91 92 93 94 95 
[    0.034376] Fallback order for Node 0: 0 1 
[    0.034380] Fallback order for Node 1: 1 0 
[    0.034389] Built 2 zonelists, mobility grouping on.  Total pages: 32950985
[    0.034391] Policy zone: Normal
[    0.034392] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-6.2.0-rc2-09th-Jan_23_Next-Queue+ root=/dev/mapper/rhel-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/rhel-swap rd.lvm.lv=rhel/root rd.lvm.lv=rhel/swap rhgb quiet
[    0.034538] Unknown kernel command line parameters "rhgb BOOT_IMAGE=(hd0,gpt2)/vmlinuz-6.2.0-rc2-09th-Jan_23_Next-Queue+", will be passed to user space.
[    0.036902] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.036906] software IO TLB: area num 128.
[    0.110969] Memory: 1045448K/133900880K available (16384K kernel code, 5550K rwdata, 10820K rodata, 3856K init, 6212K bss, 3164908K reserved, 0K cma-reserved)
[    0.112170] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=96, Nodes=2
[    0.112310] ftrace: allocating 45908 entries in 180 pages
[    0.124344] ftrace: allocated 180 pages with 4 groups
[    0.125429] Dynamic Preempt: voluntary
[    0.125812] rcu: Preemptible hierarchical RCU implementation.
[    0.125813] rcu: 	RCU event tracing is enabled.
[    0.125814] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=96.
[    0.125816] 	Trampoline variant of Tasks RCU enabled.
[    0.125817] 	Rude variant of Tasks RCU enabled.
[    0.125818] 	Tracing variant of Tasks RCU enabled.
[    0.125819] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.125820] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=96
[    0.131509] NR_IRQS: 524544, nr_irqs: 2552, preallocated irqs: 16
[    0.131856] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.132283] Console: colour dummy device 80x25
[    0.132286] printk: console [tty0] enabled
[    0.132591] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.132597] ACPI: Core revision 20221020
[    0.136609] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.136660] APIC: Switch to symmetric I/O mode setup
[    0.136876] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.136984] Switched APIC routing to physical flat.
[    0.137943] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.142634] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22983777dd9, max_idle_ns: 440795300422 ns
[    0.142640] Calibrating delay loop (skipped), value calculated using timer frequency.. 4800.00 BogoMIPS (lpj=2400000)
[    0.142643] pid_max: default: 98304 minimum: 768
[    0.153860] LSM: initializing lsm=lockdown,capability,yama,integrity,selinux,bpf
[    0.153899] Yama: becoming mindful.
[    0.153925] SELinux:  Initializing.
[    0.154140] LSM support for eBPF active
[    0.165154] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    0.170691] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, vmalloc hugepage)
[    0.170933] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
[    0.171119] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
[    0.172128] x86/cpu: VMX (outside TXT) disabled by BIOS
[    0.172138] CPU0: Thermal monitoring enabled (TM1)
[    0.172210] process: using mwait in idle threads
[    0.172213] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.172214] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.172221] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.172224] Spectre V2 : Mitigation: Enhanced IBRS
[    0.172225] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.172226] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[    0.172227] RETBleed: Mitigation: Enhanced IBRS
[    0.172229] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.172231] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.172239] TAA: Mitigation: TSX disabled
[    0.172240] MMIO Stale Data: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.195848] Freeing SMP alternatives memory: 36K
[    0.196781] smpboot: CPU0: Intel(R) Xeon(R) Platinum 8260L CPU @ 2.40GHz (family: 0x6, model: 0x55, stepping: 0x7)
[    0.197015] cblist_init_generic: Setting adjustable number of callback queues.
[    0.197028] cblist_init_generic: Setting shift to 7 and lim to 1.
[    0.197055] cblist_init_generic: Setting shift to 7 and lim to 1.
[    0.197085] cblist_init_generic: Setting shift to 7 and lim to 1.
[    0.197100] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.197141] ... version:                4
[    0.197142] ... bit width:              48
[    0.197143] ... generic registers:      4
[    0.197144] ... value mask:             0000ffffffffffff
[    0.197145] ... max period:             00007fffffffffff
[    0.197146] ... fixed-purpose events:   3
[    0.197148] ... event mask:             000000070000000f
[    0.197341] Estimated ratio of average max frequency by base frequency (times 1024): 1578
[    0.197365] rcu: Hierarchical SRCU implementation.
[    0.197366] rcu: 	Max phase no-delay instances is 400.
[    0.204114] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.205400] smp: Bringing up secondary CPUs ...
[    0.205503] x86: Booting SMP configuration:
[    0.205504] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
[    0.278809] .... node  #1, CPUs:   #24
[    0.005700] smpboot: CPU 24 Converting physical 0 to logical die 1
[    0.342752]  #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35 #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    0.416328] .... node  #0, CPUs:   #48
[    0.417870] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[    0.417870]  #49 #50 #51 #52 #53 #54 #55 #56 #57 #58 #59 #60 #61 #62 #63 #64 #65 #66 #67 #68 #69 #70 #71
[    0.491828] .... node  #1, CPUs:   #72 #73 #74 #75 #76 #77 #78 #79 #80 #81 #82 #83 #84 #85 #86 #87 #88 #89 #90 #91 #92 #93 #94 #95
[    0.568859] smp: Brought up 2 nodes, 96 CPUs
[    0.568859] smpboot: Max logical packages: 2
[    0.568859] smpboot: Total of 96 processors activated (461130.72 BogoMIPS)
[    0.632066] node 1 deferred pages initialised in 61ms
[    0.688799] node 0 deferred pages initialised in 117ms
[    0.695393] devtmpfs: initialized
[    0.695393] x86/mm: Memory block size: 2048MB
[    0.696733] ACPI: PM: Registering ACPI NVS region [mem 0x6786d000-0x6829cfff] (10682368 bytes)
[    0.697017] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.697078] futex hash table entries: 32768 (order: 9, 2097152 bytes, vmalloc)
[    0.697709] pinctrl core: initialized pinctrl subsystem
[    0.699275] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.699410] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.699422] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.699432] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.699468] audit: initializing netlink subsys (disabled)
[    0.699476] audit: type=2000 audit(1673357739.562:1): state=initialized audit_enabled=0 res=1
[    0.699855] thermal_sys: Registered thermal governor 'fair_share'
[    0.699857] thermal_sys: Registered thermal governor 'step_wise'
[    0.699858] thermal_sys: Registered thermal governor 'user_space'
[    0.699894] cpuidle: using governor menu
[    0.699894] Detected 1 PCC Subspaces
[    0.699894] Registering PCC driver as Mailbox controller
[    0.699894] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.699894] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.700754] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[    0.700760] PCI: not using MMCONFIG
[    0.700762] PCI: Using configuration type 1 for base access
[    0.705752] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.705757] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.705757] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.705757] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.705757] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.706774] cryptd: max_cpu_qlen set to 1000
[    0.707982] ACPI: Added _OSI(Module Device)
[    0.707984] ACPI: Added _OSI(Processor Device)
[    0.707985] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.707986] ACPI: Added _OSI(Processor Aggregator Device)
[    0.783031] ACPI: 4 ACPI AML tables successfully acquired and loaded
[    0.788120] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.811654] ACPI: Dynamic OEM Table Load:
[    0.835715] ACPI: Dynamic OEM Table Load:
[    0.852198] ACPI: Dynamic OEM Table Load:
[    0.890078] ACPI: Dynamic OEM Table Load:
[    1.041439] ACPI: Interpreter enabled
[    1.041463] ACPI: PM: (supports S0 S5)
[    1.041464] ACPI: Using IOAPIC for interrupt routing
[    1.041494] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
[    1.052285] [Firmware Info]: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] not reserved in ACPI motherboard resources
[    1.052289] PCI: not using MMCONFIG
[    1.052328] HEST: Table parsing has been initialized.
[    1.052647] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[    1.052651] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.052652] PCI: Using E820 reservations for host bridge windows
[    1.065102] ACPI: Enabled 7 GPEs in block 00 to 7F
[    1.124508] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-16])
[    1.124517] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.124520] acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.124557] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.124564] acpi PNP0A08:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    1.126430] PCI host bridge to bus 0000:00
[    1.126432] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    1.126435] pci_bus 0000:00: root bus resource [io  0x1000-0x3fff window]
[    1.126438] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.126440] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
[    1.126441] pci_bus 0000:00: root bus resource [mem 0xfe010000-0xfe010fff window]
[    1.126443] pci_bus 0000:00: root bus resource [mem 0x90000000-0x9d7fffff window]
[    1.126444] pci_bus 0000:00: root bus resource [mem 0x380000000000-0x383fffffffff window]
[    1.126446] pci_bus 0000:00: root bus resource [bus 00-16]
[    1.126470] pci 0000:00:00.0: [8086:2020] type 00 class 0x060000
[    1.126593] pci 0000:00:04.0: [8086:2021] type 00 class 0x088000
[    1.126603] pci 0000:00:04.0: reg 0x10: [mem 0x383ffff2c000-0x383ffff2ffff 64bit]
[    1.126697] pci 0000:00:04.1: [8086:2021] type 00 class 0x088000
[    1.126707] pci 0000:00:04.1: reg 0x10: [mem 0x383ffff28000-0x383ffff2bfff 64bit]
[    1.126798] pci 0000:00:04.2: [8086:2021] type 00 class 0x088000
[    1.126807] pci 0000:00:04.2: reg 0x10: [mem 0x383ffff24000-0x383ffff27fff 64bit]
[    1.126896] pci 0000:00:04.3: [8086:2021] type 00 class 0x088000
[    1.126905] pci 0000:00:04.3: reg 0x10: [mem 0x383ffff20000-0x383ffff23fff 64bit]
[    1.126993] pci 0000:00:04.4: [8086:2021] type 00 class 0x088000
[    1.127002] pci 0000:00:04.4: reg 0x10: [mem 0x383ffff1c000-0x383ffff1ffff 64bit]
[    1.127090] pci 0000:00:04.5: [8086:2021] type 00 class 0x088000
[    1.127099] pci 0000:00:04.5: reg 0x10: [mem 0x383ffff18000-0x383ffff1bfff 64bit]
[    1.127184] pci 0000:00:04.6: [8086:2021] type 00 class 0x088000
[    1.127193] pci 0000:00:04.6: reg 0x10: [mem 0x383ffff14000-0x383ffff17fff 64bit]
[    1.127279] pci 0000:00:04.7: [8086:2021] type 00 class 0x088000
[    1.127288] pci 0000:00:04.7: reg 0x10: [mem 0x383ffff10000-0x383ffff13fff 64bit]
[    1.127374] pci 0000:00:05.0: [8086:2024] type 00 class 0x088000
[    1.127458] pci 0000:00:05.2: [8086:2025] type 00 class 0x088000
[    1.127527] pci 0000:00:05.4: [8086:2026] type 00 class 0x080020
[    1.127534] pci 0000:00:05.4: reg 0x10: [mem 0x9220a000-0x9220afff]
[    1.127610] pci 0000:00:08.0: [8086:2014] type 00 class 0x088000
[    1.127684] pci 0000:00:08.1: [8086:2015] type 00 class 0x110100
[    1.127734] pci 0000:00:08.2: [8086:2016] type 00 class 0x088000
[    1.127809] pci 0000:00:11.0: [8086:a1ec] type 00 class 0xff0000
[    1.127905] pci 0000:00:11.1: [8086:a1ed] type 00 class 0xff0000
[    1.128006] pci 0000:00:11.5: [8086:a1d2] type 00 class 0x010601
[    1.128019] pci 0000:00:11.5: reg 0x10: [mem 0x92206000-0x92207fff]
[    1.128026] pci 0000:00:11.5: reg 0x14: [mem 0x92209000-0x922090ff]
[    1.128034] pci 0000:00:11.5: reg 0x18: [io  0x3068-0x306f]
[    1.128041] pci 0000:00:11.5: reg 0x1c: [io  0x3074-0x3077]
[    1.128048] pci 0000:00:11.5: reg 0x20: [io  0x3040-0x305f]
[    1.128056] pci 0000:00:11.5: reg 0x24: [mem 0x92180000-0x921fffff]
[    1.128093] pci 0000:00:11.5: PME# supported from D3hot
[    1.128363] pci 0000:00:14.0: [8086:a1af] type 00 class 0x0c0330
[    1.128381] pci 0000:00:14.0: reg 0x10: [mem 0x383ffff00000-0x383ffff0ffff 64bit]
[    1.128445] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    1.128705] pci 0000:00:14.2: [8086:a1b1] type 00 class 0x118000
[    1.128722] pci 0000:00:14.2: reg 0x10: [mem 0x383ffff34000-0x383ffff34fff 64bit]
[    1.128858] pci 0000:00:16.0: [8086:a1ba] type 00 class 0x078000
[    1.128881] pci 0000:00:16.0: reg 0x10: [mem 0x383ffff33000-0x383ffff33fff 64bit]
[    1.128965] pci 0000:00:16.0: PME# supported from D3hot
[    1.129041] pci 0000:00:16.1: [8086:a1bb] type 00 class 0x078000
[    1.129064] pci 0000:00:16.1: reg 0x10: [mem 0x383ffff32000-0x383ffff32fff 64bit]
[    1.129148] pci 0000:00:16.1: PME# supported from D3hot
[    1.129230] pci 0000:00:16.4: [8086:a1be] type 00 class 0x078000
[    1.129253] pci 0000:00:16.4: reg 0x10: [mem 0x383ffff31000-0x383ffff31fff 64bit]
[    1.129337] pci 0000:00:16.4: PME# supported from D3hot
[    1.129415] pci 0000:00:17.0: [8086:a182] type 00 class 0x010601
[    1.129427] pci 0000:00:17.0: reg 0x10: [mem 0x92204000-0x92205fff]
[    1.129435] pci 0000:00:17.0: reg 0x14: [mem 0x92208000-0x922080ff]
[    1.129442] pci 0000:00:17.0: reg 0x18: [io  0x3060-0x3067]
[    1.129449] pci 0000:00:17.0: reg 0x1c: [io  0x3070-0x3073]
[    1.129457] pci 0000:00:17.0: reg 0x20: [io  0x3020-0x303f]
[    1.129464] pci 0000:00:17.0: reg 0x24: [mem 0x92100000-0x9217ffff]
[    1.129501] pci 0000:00:17.0: PME# supported from D3hot
[    1.129765] pci 0000:00:1c.0: [8086:a195] type 01 class 0x060400
[    1.129829] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.130338] pci 0000:00:1f.0: [8086:a1c1] type 00 class 0x060100
[    1.130627] pci 0000:00:1f.2: [8086:a1a1] type 00 class 0x058000
[    1.130640] pci 0000:00:1f.2: reg 0x10: [mem 0x92200000-0x92203fff]
[    1.130875] pci 0000:00:1f.4: [8086:a1a3] type 00 class 0x0c0500
[    1.130892] pci 0000:00:1f.4: reg 0x10: [mem 0x383ffff30000-0x383ffff300ff 64bit]
[    1.130909] pci 0000:00:1f.4: reg 0x20: [io  0x3000-0x301f]
[    1.130982] pci 0000:00:1f.5: [8086:a1a4] type 00 class 0x0c8000
[    1.130998] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    1.131150] pci 0000:01:00.0: [1a03:1150] type 01 class 0x060400
[    1.131205] pci 0000:01:00.0: enabling Extended Tags
[    1.131256] pci 0000:01:00.0: supports D1 D2
[    1.131257] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.131342] pci 0000:00:1c.0: PCI bridge to [bus 01-02]
[    1.131345] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    1.131348] pci 0000:00:1c.0:   bridge window [mem 0x91000000-0x920fffff]
[    1.131387] pci_bus 0000:02: extended config space not accessible
[    1.131408] pci 0000:02:00.0: [1a03:2000] type 00 class 0x030000
[    1.131429] pci 0000:02:00.0: reg 0x10: [mem 0x91000000-0x91ffffff]
[    1.131441] pci 0000:02:00.0: reg 0x14: [mem 0x92000000-0x9201ffff]
[    1.131453] pci 0000:02:00.0: reg 0x18: [io  0x2000-0x207f]
[    1.131505] pci 0000:02:00.0: BAR 0: assigned to efifb
[    1.131546] pci 0000:02:00.0: supports D1 D2
[    1.131547] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.131637] pci 0000:01:00.0: PCI bridge to [bus 02]
[    1.131644] pci 0000:01:00.0:   bridge window [io  0x2000-0x2fff]
[    1.131649] pci 0000:01:00.0:   bridge window [mem 0x91000000-0x920fffff]
[    1.131667] pci_bus 0000:00: on NUMA node 0
[    1.131939] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    1.132012] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    1.132082] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    1.132152] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    1.132221] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[    1.132290] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[    1.132359] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[    1.132428] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[    1.132791] ACPI: PCI Root Bridge [PC01] (domain 0000 [bus 17-39])
[    1.132795] acpi PNP0A08:01: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.132797] acpi PNP0A08:01: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.132858] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.132864] acpi PNP0A08:01: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    1.133267] PCI host bridge to bus 0000:17
[    1.133269] pci_bus 0000:17: root bus resource [io  0x4000-0x5fff window]
[    1.133271] pci_bus 0000:17: root bus resource [mem 0x9d800000-0xaaffffff window]
[    1.133273] pci_bus 0000:17: root bus resource [mem 0x384000000000-0x387fffffffff window]
[    1.133275] pci_bus 0000:17: root bus resource [bus 17-39]
[    1.133290] pci 0000:17:01.0: [8086:2031] type 01 class 0x060400
[    1.133313] pci 0000:17:01.0: enabling Extended Tags
[    1.133338] pci 0000:17:01.0: PME# supported from D0 D3hot D3cold
[    1.133420] pci 0000:17:05.0: [8086:2034] type 00 class 0x088000
[    1.133489] pci 0000:17:05.2: [8086:2035] type 00 class 0x088000
[    1.133554] pci 0000:17:05.4: [8086:2036] type 00 class 0x080020
[    1.133562] pci 0000:17:05.4: reg 0x10: [mem 0x9e500000-0x9e500fff]
[    1.133632] pci 0000:17:08.0: [8086:208d] type 00 class 0x088000
[    1.133696] pci 0000:17:08.1: [8086:208d] type 00 class 0x088000
[    1.133740] pci 0000:17:08.2: [8086:208d] type 00 class 0x088000
[    1.133784] pci 0000:17:08.3: [8086:208d] type 00 class 0x088000
[    1.133828] pci 0000:17:08.4: [8086:208d] type 00 class 0x088000
[    1.133871] pci 0000:17:08.5: [8086:208d] type 00 class 0x088000
[    1.133914] pci 0000:17:08.6: [8086:208d] type 00 class 0x088000
[    1.133957] pci 0000:17:08.7: [8086:208d] type 00 class 0x088000
[    1.134001] pci 0000:17:09.0: [8086:208d] type 00 class 0x088000
[    1.134061] pci 0000:17:09.1: [8086:208d] type 00 class 0x088000
[    1.134104] pci 0000:17:09.2: [8086:208d] type 00 class 0x088000
[    1.134148] pci 0000:17:09.3: [8086:208d] type 00 class 0x088000
[    1.134194] pci 0000:17:09.4: [8086:208d] type 00 class 0x088000
[    1.134237] pci 0000:17:09.5: [8086:208d] type 00 class 0x088000
[    1.134280] pci 0000:17:09.6: [8086:208d] type 00 class 0x088000
[    1.134325] pci 0000:17:09.7: [8086:208d] type 00 class 0x088000
[    1.134370] pci 0000:17:0a.0: [8086:208d] type 00 class 0x088000
[    1.134432] pci 0000:17:0a.1: [8086:208d] type 00 class 0x088000
[    1.134476] pci 0000:17:0a.2: [8086:208d] type 00 class 0x088000
[    1.134520] pci 0000:17:0a.3: [8086:208d] type 00 class 0x088000
[    1.134565] pci 0000:17:0a.4: [8086:208d] type 00 class 0x088000
[    1.134608] pci 0000:17:0a.5: [8086:208d] type 00 class 0x088000
[    1.134653] pci 0000:17:0a.6: [8086:208d] type 00 class 0x088000
[    1.134698] pci 0000:17:0a.7: [8086:208d] type 00 class 0x088000
[    1.134743] pci 0000:17:0b.0: [8086:208d] type 00 class 0x088000
[    1.134805] pci 0000:17:0b.1: [8086:208d] type 00 class 0x088000
[    1.134849] pci 0000:17:0b.2: [8086:208d] type 00 class 0x088000
[    1.134893] pci 0000:17:0b.3: [8086:208d] type 00 class 0x088000
[    1.134942] pci 0000:17:0e.0: [8086:208e] type 00 class 0x088000
[    1.135002] pci 0000:17:0e.1: [8086:208e] type 00 class 0x088000
[    1.135050] pci 0000:17:0e.2: [8086:208e] type 00 class 0x088000
[    1.135093] pci 0000:17:0e.3: [8086:208e] type 00 class 0x088000
[    1.135137] pci 0000:17:0e.4: [8086:208e] type 00 class 0x088000
[    1.135179] pci 0000:17:0e.5: [8086:208e] type 00 class 0x088000
[    1.135222] pci 0000:17:0e.6: [8086:208e] type 00 class 0x088000
[    1.135266] pci 0000:17:0e.7: [8086:208e] type 00 class 0x088000
[    1.135311] pci 0000:17:0f.0: [8086:208e] type 00 class 0x088000
[    1.135371] pci 0000:17:0f.1: [8086:208e] type 00 class 0x088000
[    1.135414] pci 0000:17:0f.2: [8086:208e] type 00 class 0x088000
[    1.135457] pci 0000:17:0f.3: [8086:208e] type 00 class 0x088000
[    1.135503] pci 0000:17:0f.4: [8086:208e] type 00 class 0x088000
[    1.135546] pci 0000:17:0f.5: [8086:208e] type 00 class 0x088000
[    1.135590] pci 0000:17:0f.6: [8086:208e] type 00 class 0x088000
[    1.135636] pci 0000:17:0f.7: [8086:208e] type 00 class 0x088000
[    1.135681] pci 0000:17:10.0: [8086:208e] type 00 class 0x088000
[    1.135742] pci 0000:17:10.1: [8086:208e] type 00 class 0x088000
[    1.135786] pci 0000:17:10.2: [8086:208e] type 00 class 0x088000
[    1.135830] pci 0000:17:10.3: [8086:208e] type 00 class 0x088000
[    1.135874] pci 0000:17:10.4: [8086:208e] type 00 class 0x088000
[    1.135917] pci 0000:17:10.5: [8086:208e] type 00 class 0x088000
[    1.135960] pci 0000:17:10.6: [8086:208e] type 00 class 0x088000
[    1.136004] pci 0000:17:10.7: [8086:208e] type 00 class 0x088000
[    1.136048] pci 0000:17:11.0: [8086:208e] type 00 class 0x088000
[    1.136113] pci 0000:17:11.1: [8086:208e] type 00 class 0x088000
[    1.136157] pci 0000:17:11.2: [8086:208e] type 00 class 0x088000
[    1.136201] pci 0000:17:11.3: [8086:208e] type 00 class 0x088000
[    1.136257] pci 0000:17:1d.0: [8086:2054] type 00 class 0x088000
[    1.136319] pci 0000:17:1d.1: [8086:2055] type 00 class 0x088000
[    1.136364] pci 0000:17:1d.2: [8086:2056] type 00 class 0x088000
[    1.136409] pci 0000:17:1d.3: [8086:2057] type 00 class 0x088000
[    1.136457] pci 0000:17:1e.0: [8086:2080] type 00 class 0x088000
[    1.136518] pci 0000:17:1e.1: [8086:2081] type 00 class 0x088000
[    1.136562] pci 0000:17:1e.2: [8086:2082] type 00 class 0x088000
[    1.136683] pci 0000:17:1e.3: [8086:2083] type 00 class 0x088000
[    1.136729] pci 0000:17:1e.4: [8086:2084] type 00 class 0x088000
[    1.136773] pci 0000:17:1e.5: [8086:2085] type 00 class 0x088000
[    1.136818] pci 0000:17:1e.6: [8086:2086] type 00 class 0x088000
[    1.136901] pci 0000:18:00.0: [8086:1563] type 00 class 0x020000
[    1.136916] pci 0000:18:00.0: reg 0x10: [mem 0x9dc00000-0x9dffffff 64bit pref]
[    1.136939] pci 0000:18:00.0: reg 0x20: [mem 0x9e004000-0x9e007fff 64bit pref]
[    1.136947] pci 0000:18:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    1.136993] pci 0000:18:00.0: PME# supported from D0 D3hot D3cold
[    1.137053] pci 0000:18:00.1: [8086:1563] type 00 class 0x020000
[    1.137069] pci 0000:18:00.1: reg 0x10: [mem 0x9d800000-0x9dbfffff 64bit pref]
[    1.137091] pci 0000:18:00.1: reg 0x20: [mem 0x9e000000-0x9e003fff 64bit pref]
[    1.137099] pci 0000:18:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    1.137143] pci 0000:18:00.1: PME# supported from D0 D3hot D3cold
[    1.137192] pci 0000:17:01.0: PCI bridge to [bus 18-19]
[    1.137196] pci 0000:17:01.0:   bridge window [mem 0x9e100000-0x9e4fffff]
[    1.137199] pci 0000:17:01.0:   bridge window [mem 0x9d800000-0x9e0fffff 64bit pref]
[    1.137207] pci_bus 0000:17: on NUMA node 0
[    1.137324] ACPI: PCI Root Bridge [PC02] (domain 0000 [bus 3a-5c])
[    1.137328] acpi PNP0A08:02: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.137330] acpi PNP0A08:02: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.137389] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.137395] acpi PNP0A08:02: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    1.137720] PCI host bridge to bus 0000:3a
[    1.137722] pci_bus 0000:3a: root bus resource [io  0x6000-0x7fff window]
[    1.137724] pci_bus 0000:3a: root bus resource [mem 0xab000000-0xb87fffff window]
[    1.137725] pci_bus 0000:3a: root bus resource [mem 0x388000000000-0x38bfffffffff window]
[    1.137727] pci_bus 0000:3a: root bus resource [bus 3a-5c]
[    1.137740] pci 0000:3a:00.0: [8086:2030] type 01 class 0x060400
[    1.137762] pci 0000:3a:00.0: enabling Extended Tags
[    1.137787] pci 0000:3a:00.0: PME# supported from D0 D3hot D3cold
[    1.137867] pci 0000:3a:05.0: [8086:2034] type 00 class 0x088000
[    1.137935] pci 0000:3a:05.2: [8086:2035] type 00 class 0x088000
[    1.137999] pci 0000:3a:05.4: [8086:2036] type 00 class 0x080020
[    1.138007] pci 0000:3a:05.4: reg 0x10: [mem 0xb0400000-0xb0400fff]
[    1.138077] pci 0000:3a:08.0: [8086:2066] type 00 class 0x088000
[    1.138154] pci 0000:3a:09.0: [8086:2066] type 00 class 0x088000
[    1.138232] pci 0000:3a:0a.0: [8086:2040] type 00 class 0x088000
[    1.138318] pci 0000:3a:0a.1: [8086:2041] type 00 class 0x088000
[    1.138374] pci 0000:3a:0a.2: [8086:2042] type 00 class 0x088000
[    1.138428] pci 0000:3a:0a.3: [8086:2043] type 00 class 0x088000
[    1.138483] pci 0000:3a:0a.4: [8086:2044] type 00 class 0x088000
[    1.138539] pci 0000:3a:0a.5: [8086:2045] type 00 class 0x088000
[    1.138597] pci 0000:3a:0a.6: [8086:2046] type 00 class 0x088000
[    1.138653] pci 0000:3a:0a.7: [8086:2047] type 00 class 0x088000
[    1.138710] pci 0000:3a:0b.0: [8086:2048] type 00 class 0x088000
[    1.138784] pci 0000:3a:0b.1: [8086:2049] type 00 class 0x088000
[    1.138839] pci 0000:3a:0b.2: [8086:204a] type 00 class 0x088000
[    1.138894] pci 0000:3a:0b.3: [8086:204b] type 00 class 0x088000
[    1.138951] pci 0000:3a:0c.0: [8086:2040] type 00 class 0x088000
[    1.139024] pci 0000:3a:0c.1: [8086:2041] type 00 class 0x088000
[    1.139080] pci 0000:3a:0c.2: [8086:2042] type 00 class 0x088000
[    1.139135] pci 0000:3a:0c.3: [8086:2043] type 00 class 0x088000
[    1.139190] pci 0000:3a:0c.4: [8086:2044] type 00 class 0x088000
[    1.139244] pci 0000:3a:0c.5: [8086:2045] type 00 class 0x088000
[    1.139299] pci 0000:3a:0c.6: [8086:2046] type 00 class 0x088000
[    1.139354] pci 0000:3a:0c.7: [8086:2047] type 00 class 0x088000
[    1.139409] pci 0000:3a:0d.0: [8086:2048] type 00 class 0x088000
[    1.139483] pci 0000:3a:0d.1: [8086:2049] type 00 class 0x088000
[    1.139537] pci 0000:3a:0d.2: [8086:204a] type 00 class 0x088000
[    1.139592] pci 0000:3a:0d.3: [8086:204b] type 00 class 0x088000
[    1.139695] pci 0000:3b:00.0: [8086:37c0] type 01 class 0x060400
[    1.139709] pci 0000:3b:00.0: reg 0x10: [mem 0xb0300000-0xb031ffff 64bit]
[    1.139716] pci 0000:3b:00.0: reg 0x38: [mem 0xfff00000-0xffffffff pref]
[    1.139761] pci 0000:3b:00.0: PME# supported from D0 D3hot D3cold
[    1.139773] pci 0000:3b:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:3a:00.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    1.139848] pci 0000:3a:00.0: PCI bridge to [bus 3b-3e]
[    1.139851] pci 0000:3a:00.0:   bridge window [mem 0xb0300000-0xb03fffff]
[    1.139855] pci 0000:3a:00.0:   bridge window [mem 0xab000000-0xb02fffff 64bit pref]
[    1.139909] pci 0000:3c:03.0: [8086:37c5] type 01 class 0x060400
[    1.139983] pci 0000:3c:03.0: PME# supported from D0 D3hot D3cold
[    1.140075] pci 0000:3b:00.0: PCI bridge to [bus 3c-3e]
[    1.140082] pci 0000:3b:00.0:   bridge window [mem 0xab000000-0xb02fffff 64bit pref]
[    1.140138] pci 0000:3d:00.0: [8086:37d0] type 00 class 0x020000
[    1.140155] pci 0000:3d:00.0: reg 0x10: [mem 0xae000000-0xaeffffff 64bit pref]
[    1.140173] pci 0000:3d:00.0: reg 0x1c: [mem 0xb0018000-0xb001ffff 64bit pref]
[    1.140188] pci 0000:3d:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    1.140195] pci 0000:3d:00.0: enabling Extended Tags
[    1.140242] pci 0000:3d:00.0: PME# supported from D0 D3hot
[    1.140323] pci 0000:3d:00.1: [8086:37d0] type 00 class 0x020000
[    1.140340] pci 0000:3d:00.1: reg 0x10: [mem 0xad000000-0xadffffff 64bit pref]
[    1.140358] pci 0000:3d:00.1: reg 0x1c: [mem 0xb0010000-0xb0017fff 64bit pref]
[    1.140373] pci 0000:3d:00.1: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    1.140379] pci 0000:3d:00.1: enabling Extended Tags
[    1.140427] pci 0000:3d:00.1: PME# supported from D0 D3hot
[    1.140496] pci 0000:3d:00.2: [8086:37d0] type 00 class 0x020000
[    1.140513] pci 0000:3d:00.2: reg 0x10: [mem 0xac000000-0xacffffff 64bit pref]
[    1.140531] pci 0000:3d:00.2: reg 0x1c: [mem 0xb0008000-0xb000ffff 64bit pref]
[    1.140545] pci 0000:3d:00.2: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    1.140552] pci 0000:3d:00.2: enabling Extended Tags
[    1.140599] pci 0000:3d:00.2: PME# supported from D0 D3hot
[    1.140673] pci 0000:3d:00.3: [8086:37d0] type 00 class 0x020000
[    1.140690] pci 0000:3d:00.3: reg 0x10: [mem 0xab000000-0xabffffff 64bit pref]
[    1.140708] pci 0000:3d:00.3: reg 0x1c: [mem 0xb0000000-0xb0007fff 64bit pref]
[    1.140722] pci 0000:3d:00.3: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    1.140729] pci 0000:3d:00.3: enabling Extended Tags
[    1.140776] pci 0000:3d:00.3: PME# supported from D0 D3hot
[    1.140865] pci 0000:3c:03.0: PCI bridge to [bus 3d-3e]
[    1.140874] pci 0000:3c:03.0:   bridge window [mem 0xab000000-0xb02fffff 64bit pref]
[    1.140888] pci_bus 0000:3a: on NUMA node 0
[    1.140995] ACPI: PCI Root Bridge [PC03] (domain 0000 [bus 5d-7f])
[    1.140998] acpi PNP0A08:03: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.141000] acpi PNP0A08:03: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.141062] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.141091] acpi PNP0A08:03: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    1.141395] PCI host bridge to bus 0000:5d
[    1.141397] pci_bus 0000:5d: root bus resource [io  0x8000-0x9fff window]
[    1.141399] pci_bus 0000:5d: root bus resource [mem 0xb8800000-0xc5ffffff window]
[    1.141400] pci_bus 0000:5d: root bus resource [mem 0x38c000000000-0x38ffffffffff window]
[    1.141402] pci_bus 0000:5d: root bus resource [bus 5d-7f]
[    1.141415] pci 0000:5d:00.0: [8086:2030] type 01 class 0x060400
[    1.141438] pci 0000:5d:00.0: enabling Extended Tags
[    1.141465] pci 0000:5d:00.0: PME# supported from D0 D3hot D3cold
[    1.141542] pci 0000:5d:05.0: [8086:2034] type 00 class 0x088000
[    1.141614] pci 0000:5d:05.2: [8086:2035] type 00 class 0x088000
[    1.141684] pci 0000:5d:05.4: [8086:2036] type 00 class 0x080020
[    1.141692] pci 0000:5d:05.4: reg 0x10: [mem 0xb8a00000-0xb8a00fff]
[    1.141769] pci 0000:5d:0e.0: [8086:2058] type 00 class 0x110100
[    1.141843] pci 0000:5d:0e.1: [8086:2059] type 00 class 0x088000
[    1.141903] pci 0000:5d:0f.0: [8086:2058] type 00 class 0x110100
[    1.141974] pci 0000:5d:0f.1: [8086:2059] type 00 class 0x088000
[    1.142032] pci 0000:5d:10.0: [8086:2058] type 00 class 0x110100
[    1.142105] pci 0000:5d:10.1: [8086:2059] type 00 class 0x088000
[    1.142167] pci 0000:5d:12.0: [8086:204c] type 00 class 0x110100
[    1.142239] pci 0000:5d:12.1: [8086:204d] type 00 class 0x110100
[    1.142283] pci 0000:5d:12.2: [8086:204e] type 00 class 0x088000
[    1.142330] pci 0000:5d:12.4: [8086:204c] type 00 class 0x110100
[    1.142384] pci 0000:5d:12.5: [8086:204d] type 00 class 0x110100
[    1.142432] pci 0000:5d:15.0: [8086:2018] type 00 class 0x088000
[    1.142494] pci 0000:5d:15.1: [8086:2088] type 00 class 0x110100
[    1.142541] pci 0000:5d:16.0: [8086:2018] type 00 class 0x088000
[    1.142602] pci 0000:5d:16.1: [8086:2088] type 00 class 0x110100
[    1.142648] pci 0000:5d:16.4: [8086:2018] type 00 class 0x088000
[    1.142694] pci 0000:5d:16.5: [8086:2088] type 00 class 0x110100
[    1.142740] pci 0000:5d:17.0: [8086:2018] type 00 class 0x088000
[    1.142800] pci 0000:5d:17.1: [8086:2088] type 00 class 0x110100
[    1.142893] pci 0000:5e:00.0: working around ROM BAR overlap defect
[    1.142894] pci 0000:5e:00.0: [8086:1533] type 00 class 0x020000
[    1.142914] pci 0000:5e:00.0: reg 0x10: [mem 0xb8800000-0xb88fffff]
[    1.142945] pci 0000:5e:00.0: reg 0x1c: [mem 0xb8900000-0xb8903fff]
[    1.142977] pci 0000:5e:00.0: reg 0x30: [mem 0xfff00000-0xffffffff pref]
[    1.143046] pci 0000:5e:00.0: PME# supported from D0 D3hot D3cold
[    1.143116] pci 0000:5d:00.0: PCI bridge to [bus 5e]
[    1.143119] pci 0000:5d:00.0:   bridge window [mem 0xb8800000-0xb89fffff]
[    1.143128] pci_bus 0000:5d: on NUMA node 0
[    1.143278] ACPI: PCI Root Bridge [PC06] (domain 0000 [bus 80-84])
[    1.143281] acpi PNP0A08:06: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.143283] acpi PNP0A08:06: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.143344] acpi PNP0A08:06: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.143373] acpi PNP0A08:06: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    1.143542] PCI host bridge to bus 0000:80
[    1.143544] pci_bus 0000:80: root bus resource [io  0xa000-0xbfff window]
[    1.143546] pci_bus 0000:80: root bus resource [mem 0xc6000000-0xd37fffff window]
[    1.143547] pci_bus 0000:80: root bus resource [mem 0x390000000000-0x393fffffffff window]
[    1.143549] pci_bus 0000:80: root bus resource [bus 80-84]
[    1.143569] pci 0000:80:04.0: [8086:2021] type 00 class 0x088000
[    1.143578] pci 0000:80:04.0: reg 0x10: [mem 0x393ffff1c000-0x393ffff1ffff 64bit]
[    1.143668] pci 0000:80:04.1: [8086:2021] type 00 class 0x088000
[    1.143677] pci 0000:80:04.1: reg 0x10: [mem 0x393ffff18000-0x393ffff1bfff 64bit]
[    1.143759] pci 0000:80:04.2: [8086:2021] type 00 class 0x088000
[    1.143767] pci 0000:80:04.2: reg 0x10: [mem 0x393ffff14000-0x393ffff17fff 64bit]
[    1.143846] pci 0000:80:04.3: [8086:2021] type 00 class 0x088000
[    1.143855] pci 0000:80:04.3: reg 0x10: [mem 0x393ffff10000-0x393ffff13fff 64bit]
[    1.143934] pci 0000:80:04.4: [8086:2021] type 00 class 0x088000
[    1.143942] pci 0000:80:04.4: reg 0x10: [mem 0x393ffff0c000-0x393ffff0ffff 64bit]
[    1.144021] pci 0000:80:04.5: [8086:2021] type 00 class 0x088000
[    1.144029] pci 0000:80:04.5: reg 0x10: [mem 0x393ffff08000-0x393ffff0bfff 64bit]
[    1.144106] pci 0000:80:04.6: [8086:2021] type 00 class 0x088000
[    1.144115] pci 0000:80:04.6: reg 0x10: [mem 0x393ffff04000-0x393ffff07fff 64bit]
[    1.144192] pci 0000:80:04.7: [8086:2021] type 00 class 0x088000
[    1.144200] pci 0000:80:04.7: reg 0x10: [mem 0x393ffff00000-0x393ffff03fff 64bit]
[    1.144276] pci 0000:80:05.0: [8086:2024] type 00 class 0x088000
[    1.144353] pci 0000:80:05.2: [8086:2025] type 00 class 0x088000
[    1.144414] pci 0000:80:05.4: [8086:2026] type 00 class 0x080020
[    1.144421] pci 0000:80:05.4: reg 0x10: [mem 0xc6000000-0xc6000fff]
[    1.144488] pci 0000:80:08.0: [8086:2014] type 00 class 0x088000
[    1.144552] pci 0000:80:08.1: [8086:2015] type 00 class 0x110100
[    1.144596] pci 0000:80:08.2: [8086:2016] type 00 class 0x088000
[    1.144655] pci_bus 0000:80: on NUMA node 1
[    1.144745] ACPI: PCI Root Bridge [PC07] (domain 0000 [bus 85-ad])
[    1.144748] acpi PNP0A08:07: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.144750] acpi PNP0A08:07: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.144807] acpi PNP0A08:07: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.144836] acpi PNP0A08:07: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    1.145241] PCI host bridge to bus 0000:85
[    1.145243] pci_bus 0000:85: root bus resource [io  0xc000-0xdfff window]
[    1.145244] pci_bus 0000:85: root bus resource [mem 0xd3800000-0xe0ffffff window]
[    1.145246] pci_bus 0000:85: root bus resource [mem 0x394000000000-0x397fffffffff window]
[    1.145248] pci_bus 0000:85: root bus resource [bus 85-ad]
[    1.145260] pci 0000:85:05.0: [8086:2034] type 00 class 0x088000
[    1.145327] pci 0000:85:05.2: [8086:2035] type 00 class 0x088000
[    1.145401] pci 0000:85:05.4: [8086:2036] type 00 class 0x080020
[    1.145408] pci 0000:85:05.4: reg 0x10: [mem 0xd3800000-0xd3800fff]
[    1.145473] pci 0000:85:08.0: [8086:208d] type 00 class 0x088000
[    1.145537] pci 0000:85:08.1: [8086:208d] type 00 class 0x088000
[    1.145579] pci 0000:85:08.2: [8086:208d] type 00 class 0x088000
[    1.145621] pci 0000:85:08.3: [8086:208d] type 00 class 0x088000
[    1.145664] pci 0000:85:08.4: [8086:208d] type 00 class 0x088000
[    1.145704] pci 0000:85:08.5: [8086:208d] type 00 class 0x088000
[    1.145745] pci 0000:85:08.6: [8086:208d] type 00 class 0x088000
[    1.145789] pci 0000:85:08.7: [8086:208d] type 00 class 0x088000
[    1.145831] pci 0000:85:09.0: [8086:208d] type 00 class 0x088000
[    1.145890] pci 0000:85:09.1: [8086:208d] type 00 class 0x088000
[    1.145931] pci 0000:85:09.2: [8086:208d] type 00 class 0x088000
[    1.145972] pci 0000:85:09.3: [8086:208d] type 00 class 0x088000
[    1.146012] pci 0000:85:09.4: [8086:208d] type 00 class 0x088000
[    1.146052] pci 0000:85:09.5: [8086:208d] type 00 class 0x088000
[    1.146092] pci 0000:85:09.6: [8086:208d] type 00 class 0x088000
[    1.146132] pci 0000:85:09.7: [8086:208d] type 00 class 0x088000
[    1.146173] pci 0000:85:0a.0: [8086:208d] type 00 class 0x088000
[    1.146232] pci 0000:85:0a.1: [8086:208d] type 00 class 0x088000
[    1.146273] pci 0000:85:0a.2: [8086:208d] type 00 class 0x088000
[    1.146313] pci 0000:85:0a.3: [8086:208d] type 00 class 0x088000
[    1.146354] pci 0000:85:0a.4: [8086:208d] type 00 class 0x088000
[    1.146394] pci 0000:85:0a.5: [8086:208d] type 00 class 0x088000
[    1.146433] pci 0000:85:0a.6: [8086:208d] type 00 class 0x088000
[    1.146474] pci 0000:85:0a.7: [8086:208d] type 00 class 0x088000
[    1.146515] pci 0000:85:0b.0: [8086:208d] type 00 class 0x088000
[    1.146578] pci 0000:85:0b.1: [8086:208d] type 00 class 0x088000
[    1.146621] pci 0000:85:0b.2: [8086:208d] type 00 class 0x088000
[    1.146664] pci 0000:85:0b.3: [8086:208d] type 00 class 0x088000
[    1.146710] pci 0000:85:0e.0: [8086:208e] type 00 class 0x088000
[    1.146769] pci 0000:85:0e.1: [8086:208e] type 00 class 0x088000
[    1.146810] pci 0000:85:0e.2: [8086:208e] type 00 class 0x088000
[    1.146851] pci 0000:85:0e.3: [8086:208e] type 00 class 0x088000
[    1.146891] pci 0000:85:0e.4: [8086:208e] type 00 class 0x088000
[    1.146930] pci 0000:85:0e.5: [8086:208e] type 00 class 0x088000
[    1.146970] pci 0000:85:0e.6: [8086:208e] type 00 class 0x088000
[    1.147010] pci 0000:85:0e.7: [8086:208e] type 00 class 0x088000
[    1.147050] pci 0000:85:0f.0: [8086:208e] type 00 class 0x088000
[    1.147108] pci 0000:85:0f.1: [8086:208e] type 00 class 0x088000
[    1.147148] pci 0000:85:0f.2: [8086:208e] type 00 class 0x088000
[    1.147187] pci 0000:85:0f.3: [8086:208e] type 00 class 0x088000
[    1.147231] pci 0000:85:0f.4: [8086:208e] type 00 class 0x088000
[    1.147271] pci 0000:85:0f.5: [8086:208e] type 00 class 0x088000
[    1.147311] pci 0000:85:0f.6: [8086:208e] type 00 class 0x088000
[    1.147352] pci 0000:85:0f.7: [8086:208e] type 00 class 0x088000
[    1.147393] pci 0000:85:10.0: [8086:208e] type 00 class 0x088000
[    1.147452] pci 0000:85:10.1: [8086:208e] type 00 class 0x088000
[    1.147492] pci 0000:85:10.2: [8086:208e] type 00 class 0x088000
[    1.147532] pci 0000:85:10.3: [8086:208e] type 00 class 0x088000
[    1.147572] pci 0000:85:10.4: [8086:208e] type 00 class 0x088000
[    1.147613] pci 0000:85:10.5: [8086:208e] type 00 class 0x088000
[    1.147656] pci 0000:85:10.6: [8086:208e] type 00 class 0x088000
[    1.147698] pci 0000:85:10.7: [8086:208e] type 00 class 0x088000
[    1.147740] pci 0000:85:11.0: [8086:208e] type 00 class 0x088000
[    1.147798] pci 0000:85:11.1: [8086:208e] type 00 class 0x088000
[    1.147839] pci 0000:85:11.2: [8086:208e] type 00 class 0x088000
[    1.147879] pci 0000:85:11.3: [8086:208e] type 00 class 0x088000
[    1.147932] pci 0000:85:1d.0: [8086:2054] type 00 class 0x088000
[    1.147990] pci 0000:85:1d.1: [8086:2055] type 00 class 0x088000
[    1.148032] pci 0000:85:1d.2: [8086:2056] type 00 class 0x088000
[    1.148073] pci 0000:85:1d.3: [8086:2057] type 00 class 0x088000
[    1.148118] pci 0000:85:1e.0: [8086:2080] type 00 class 0x088000
[    1.148175] pci 0000:85:1e.1: [8086:2081] type 00 class 0x088000
[    1.148216] pci 0000:85:1e.2: [8086:2082] type 00 class 0x088000
[    1.148257] pci 0000:85:1e.3: [8086:2083] type 00 class 0x088000
[    1.148297] pci 0000:85:1e.4: [8086:2084] type 00 class 0x088000
[    1.148339] pci 0000:85:1e.5: [8086:2085] type 00 class 0x088000
[    1.148380] pci 0000:85:1e.6: [8086:2086] type 00 class 0x088000
[    1.148421] pci_bus 0000:85: on NUMA node 1
[    1.148547] ACPI: PCI Root Bridge [PC08] (domain 0000 [bus ae-d6])
[    1.148551] acpi PNP0A08:08: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.148553] acpi PNP0A08:08: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.148611] acpi PNP0A08:08: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.148641] acpi PNP0A08:08: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    1.148960] PCI host bridge to bus 0000:ae
[    1.148961] pci_bus 0000:ae: root bus resource [io  0xe000-0xefff window]
[    1.148963] pci_bus 0000:ae: root bus resource [mem 0xe1000000-0xee7fffff window]
[    1.148965] pci_bus 0000:ae: root bus resource [mem 0x398000000000-0x39bfffffffff window]
[    1.148967] pci_bus 0000:ae: root bus resource [bus ae-d6]
[    1.148978] pci 0000:ae:05.0: [8086:2034] type 00 class 0x088000
[    1.149043] pci 0000:ae:05.2: [8086:2035] type 00 class 0x088000
[    1.149103] pci 0000:ae:05.4: [8086:2036] type 00 class 0x080020
[    1.149110] pci 0000:ae:05.4: reg 0x10: [mem 0xe1000000-0xe1000fff]
[    1.149174] pci 0000:ae:08.0: [8086:2066] type 00 class 0x088000
[    1.149247] pci 0000:ae:09.0: [8086:2066] type 00 class 0x088000
[    1.149321] pci 0000:ae:0a.0: [8086:2040] type 00 class 0x088000
[    1.149389] pci 0000:ae:0a.1: [8086:2041] type 00 class 0x088000
[    1.149443] pci 0000:ae:0a.2: [8086:2042] type 00 class 0x088000
[    1.149494] pci 0000:ae:0a.3: [8086:2043] type 00 class 0x088000
[    1.149545] pci 0000:ae:0a.4: [8086:2044] type 00 class 0x088000
[    1.149596] pci 0000:ae:0a.5: [8086:2045] type 00 class 0x088000
[    1.149648] pci 0000:ae:0a.6: [8086:2046] type 00 class 0x088000
[    1.149701] pci 0000:ae:0a.7: [8086:2047] type 00 class 0x088000
[    1.149752] pci 0000:ae:0b.0: [8086:2048] type 00 class 0x088000
[    1.149821] pci 0000:ae:0b.1: [8086:2049] type 00 class 0x088000
[    1.149871] pci 0000:ae:0b.2: [8086:204a] type 00 class 0x088000
[    1.149923] pci 0000:ae:0b.3: [8086:204b] type 00 class 0x088000
[    1.149975] pci 0000:ae:0c.0: [8086:2040] type 00 class 0x088000
[    1.150049] pci 0000:ae:0c.1: [8086:2041] type 00 class 0x088000
[    1.150101] pci 0000:ae:0c.2: [8086:2042] type 00 class 0x088000
[    1.150153] pci 0000:ae:0c.3: [8086:2043] type 00 class 0x088000
[    1.150205] pci 0000:ae:0c.4: [8086:2044] type 00 class 0x088000
[    1.150268] pci 0000:ae:0c.5: [8086:2045] type 00 class 0x088000
[    1.150320] pci 0000:ae:0c.6: [8086:2046] type 00 class 0x088000
[    1.150373] pci 0000:ae:0c.7: [8086:2047] type 00 class 0x088000
[    1.150425] pci 0000:ae:0d.0: [8086:2048] type 00 class 0x088000
[    1.150495] pci 0000:ae:0d.1: [8086:2049] type 00 class 0x088000
[    1.150547] pci 0000:ae:0d.2: [8086:204a] type 00 class 0x088000
[    1.150599] pci 0000:ae:0d.3: [8086:204b] type 00 class 0x088000
[    1.150661] pci_bus 0000:ae: on NUMA node 1
[    1.150766] ACPI: PCI Root Bridge [PC09] (domain 0000 [bus d7-ff])
[    1.150769] acpi PNP0A08:09: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
[    1.150771] acpi PNP0A08:09: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[    1.150829] acpi PNP0A08:09: FADT indicates ASPM is unsupported, using BIOS configuration
[    1.150857] acpi PNP0A08:09: fail to add MMCONFIG information, can't access extended configuration space under this bridge
[    1.151177] PCI host bridge to bus 0000:d7
[    1.151178] pci_bus 0000:d7: root bus resource [io  0xf000-0xffff window]
[    1.151180] pci_bus 0000:d7: root bus resource [mem 0xee800000-0xfbffffff window]
[    1.151182] pci_bus 0000:d7: root bus resource [mem 0x39c000000000-0x39ffffffffff window]
[    1.151184] pci_bus 0000:d7: root bus resource [bus d7-ff]
[    1.151195] pci 0000:d7:05.0: [8086:2034] type 00 class 0x088000
[    1.151263] pci 0000:d7:05.2: [8086:2035] type 00 class 0x088000
[    1.151328] pci 0000:d7:05.4: [8086:2036] type 00 class 0x080020
[    1.151335] pci 0000:d7:05.4: reg 0x10: [mem 0xee800000-0xee800fff]
[    1.151408] pci 0000:d7:0e.0: [8086:2058] type 00 class 0x110100
[    1.151480] pci 0000:d7:0e.1: [8086:2059] type 00 class 0x088000
[    1.151535] pci 0000:d7:0f.0: [8086:2058] type 00 class 0x110100
[    1.151607] pci 0000:d7:0f.1: [8086:2059] type 00 class 0x088000
[    1.151662] pci 0000:d7:10.0: [8086:2058] type 00 class 0x110100
[    1.151734] pci 0000:d7:10.1: [8086:2059] type 00 class 0x088000
[    1.151790] pci 0000:d7:12.0: [8086:204c] type 00 class 0x110100
[    1.151858] pci 0000:d7:12.1: [8086:204d] type 00 class 0x110100
[    1.151901] pci 0000:d7:12.2: [8086:204e] type 00 class 0x088000
[    1.151944] pci 0000:d7:12.4: [8086:204c] type 00 class 0x110100
[    1.151994] pci 0000:d7:12.5: [8086:204d] type 00 class 0x110100
[    1.152037] pci 0000:d7:15.0: [8086:2018] type 00 class 0x088000
[    1.152097] pci 0000:d7:15.1: [8086:2088] type 00 class 0x110100
[    1.152141] pci 0000:d7:16.0: [8086:2018] type 00 class 0x088000
[    1.152199] pci 0000:d7:16.1: [8086:2088] type 00 class 0x110100
[    1.152241] pci 0000:d7:16.4: [8086:2018] type 00 class 0x088000
[    1.152282] pci 0000:d7:16.5: [8086:2088] type 00 class 0x110100
[    1.152326] pci 0000:d7:17.0: [8086:2018] type 00 class 0x088000
[    1.152385] pci 0000:d7:17.1: [8086:2088] type 00 class 0x110100
[    1.152431] pci_bus 0000:d7: on NUMA node 1
[    1.152891] iommu: Default domain type: Translated 
[    1.152891] iommu: DMA domain TLB invalidation policy: lazy mode 
[    1.152893] SCSI subsystem initialized
[    1.152912] ACPI: bus type USB registered
[    1.152922] usbcore: registered new interface driver usbfs
[    1.152927] usbcore: registered new interface driver hub
[    1.152984] usbcore: registered new device driver usb
[    1.153011] pps_core: LinuxPPS API ver. 1 registered
[    1.153012] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.153014] PTP clock support registered
[    1.153770] EDAC MC: Ver: 3.0.0
[    1.153869] Registered efivars operations
[    1.154879] NetLabel: Initializing
[    1.154881] NetLabel:  domain hash size = 128
[    1.154882] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.154901] NetLabel:  unlabeled traffic allowed by default
[    1.154902] PCI: Using ACPI for IRQ routing
[    1.154904] PCI: pci_cache_line_size set to 64 bytes
[    1.155262] e820: reserve RAM buffer [mem 0x5adab018-0x5bffffff]
[    1.155265] e820: reserve RAM buffer [mem 0x5ae08018-0x5bffffff]
[    1.155267] e820: reserve RAM buffer [mem 0x5ae41018-0x5bffffff]
[    1.155269] e820: reserve RAM buffer [mem 0x5b441018-0x5bffffff]
[    1.155270] e820: reserve RAM buffer [mem 0x5b47a018-0x5bffffff]
[    1.155271] e820: reserve RAM buffer [mem 0x5b4b3018-0x5bffffff]
[    1.155273] e820: reserve RAM buffer [mem 0x5b4ec018-0x5bffffff]
[    1.155274] e820: reserve RAM buffer [mem 0x5b5e7000-0x5bffffff]
[    1.155275] e820: reserve RAM buffer [mem 0x5cd6c000-0x5fffffff]
[    1.155276] e820: reserve RAM buffer [mem 0x5f6ef000-0x5fffffff]
[    1.155277] e820: reserve RAM buffer [mem 0x5f7b2000-0x5fffffff]
[    1.155278] e820: reserve RAM buffer [mem 0x63899000-0x63ffffff]
[    1.155280] e820: reserve RAM buffer [mem 0x63c4c018-0x63ffffff]
[    1.155281] e820: reserve RAM buffer [mem 0x63fae000-0x63ffffff]
[    1.155282] e820: reserve RAM buffer [mem 0x64333000-0x67ffffff]
[    1.155283] e820: reserve RAM buffer [mem 0x64c15000-0x67ffffff]
[    1.155285] e820: reserve RAM buffer [mem 0x6756d000-0x67ffffff]
[    1.155286] e820: reserve RAM buffer [mem 0x6f800000-0x6fffffff]
[    1.155350] pci 0000:02:00.0: vgaarb: setting as boot VGA device
[    1.155350] pci 0000:02:00.0: vgaarb: bridge control possible
[    1.155350] pci 0000:02:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.155350] vgaarb: loaded
[    1.155350] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    1.155350] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    1.157728] clocksource: Switched to clocksource tsc-early
[    1.157784] VFS: Disk quotas dquot_6.6.0
[    1.157784] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.157784] pnp: PnP ACPI init
[    1.164045] system 00:01: [io  0x0500-0x05fe] has been reserved
[    1.164049] system 00:01: [io  0x0400-0x047f] has been reserved
[    1.164051] system 00:01: [io  0x0600-0x061f] has been reserved
[    1.164053] system 00:01: [io  0x0ca6-0x0cab] has been reserved
[    1.164054] system 00:01: [io  0x0880-0x0883] has been reserved
[    1.164055] system 00:01: [io  0x0800-0x081f] has been reserved
[    1.164058] system 00:01: [mem 0xfed1c000-0xfed3ffff] has been reserved
[    1.164060] system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
[    1.164062] system 00:01: [mem 0xff000000-0xffffffff] has been reserved
[    1.164063] system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.164065] system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
[    1.164066] system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
[    1.164068] system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
[    1.164493] system 00:03: [mem 0xfd000000-0xfdabffff] has been reserved
[    1.164496] system 00:03: [mem 0xfdad0000-0xfdadffff] has been reserved
[    1.164497] system 00:03: [mem 0xfdb00000-0xfdffffff] has been reserved
[    1.164499] system 00:03: [mem 0xfe000000-0xfe00ffff] has been reserved
[    1.164501] system 00:03: [mem 0xfe011000-0xfe01ffff] has been reserved
[    1.164502] system 00:03: [mem 0xfe036000-0xfe03bfff] has been reserved
[    1.164504] system 00:03: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    1.164507] system 00:03: [mem 0xfe410000-0xfe7fffff] has been reserved
[    1.164813] system 00:04: [io  0x1000-0x10fe] has been reserved
[    1.165297] pnp: PnP ACPI: found 5 devices
[    1.170996] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.171129] NET: Registered PF_INET protocol family
[    1.171697] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.175136] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    1.175267] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    1.175306] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    1.175896] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    1.176194] TCP: Hash tables configured (established 524288 bind 65536)
[    1.176932] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[    1.177140] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    1.177459] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    1.177894] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.177903] NET: Registered PF_XDP protocol family
[    1.177913] pci 0000:18:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    1.177916] pci 0000:18:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    1.177920] pci 0000:3b:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[    1.177923] pci 0000:3d:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    1.177924] pci 0000:3d:00.1: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    1.177926] pci 0000:3d:00.2: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    1.177928] pci 0000:3d:00.3: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    1.177931] pci 0000:5e:00.0: can't claim BAR 6 [mem 0xfff00000-0xffffffff pref]: no compatible bridge window
[    1.177946] pci 0000:01:00.0: PCI bridge to [bus 02]
[    1.177949] pci 0000:01:00.0:   bridge window [io  0x2000-0x2fff]
[    1.177955] pci 0000:01:00.0:   bridge window [mem 0x91000000-0x920fffff]
[    1.177964] pci 0000:00:1c.0: PCI bridge to [bus 01-02]
[    1.177966] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    1.177969] pci 0000:00:1c.0:   bridge window [mem 0x91000000-0x920fffff]
[    1.177976] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.177978] pci_bus 0000:00: resource 5 [io  0x1000-0x3fff window]
[    1.177979] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.177980] pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c7fff window]
[    1.177982] pci_bus 0000:00: resource 8 [mem 0xfe010000-0xfe010fff window]
[    1.177983] pci_bus 0000:00: resource 9 [mem 0x90000000-0x9d7fffff window]
[    1.177984] pci_bus 0000:00: resource 10 [mem 0x380000000000-0x383fffffffff window]
[    1.177987] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
[    1.177988] pci_bus 0000:01: resource 1 [mem 0x91000000-0x920fffff]
[    1.177990] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    1.177991] pci_bus 0000:02: resource 1 [mem 0x91000000-0x920fffff]
[    1.178083] pci 0000:18:00.0: BAR 6: assigned [mem 0x9e100000-0x9e17ffff pref]
[    1.178086] pci 0000:18:00.1: BAR 6: assigned [mem 0x9e180000-0x9e1fffff pref]
[    1.178088] pci 0000:17:01.0: PCI bridge to [bus 18-19]
[    1.178090] pci 0000:17:01.0:   bridge window [mem 0x9e100000-0x9e4fffff]
[    1.178093] pci 0000:17:01.0:   bridge window [mem 0x9d800000-0x9e0fffff 64bit pref]
[    1.178098] pci_bus 0000:17: resource 4 [io  0x4000-0x5fff window]
[    1.178099] pci_bus 0000:17: resource 5 [mem 0x9d800000-0xaaffffff window]
[    1.178101] pci_bus 0000:17: resource 6 [mem 0x384000000000-0x387fffffffff window]
[    1.178102] pci_bus 0000:18: resource 1 [mem 0x9e100000-0x9e4fffff]
[    1.178104] pci_bus 0000:18: resource 2 [mem 0x9d800000-0x9e0fffff 64bit pref]
[    1.178123] pci 0000:3b:00.0: BAR 6: no space for [mem size 0x00100000 pref]
[    1.178125] pci 0000:3b:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
[    1.178127] pci 0000:3b:00.0: BAR 14: no space for [mem size 0x00200000]
[    1.178128] pci 0000:3b:00.0: BAR 14: failed to assign [mem size 0x00200000]
[    1.178132] pci 0000:3c:03.0: BAR 14: no space for [mem size 0x00200000]
[    1.178133] pci 0000:3c:03.0: BAR 14: failed to assign [mem size 0x00200000]
[    1.178136] pci 0000:3d:00.0: BAR 6: assigned [mem 0xaf000000-0xaf07ffff pref]
[    1.178138] pci 0000:3d:00.1: BAR 6: assigned [mem 0xaf080000-0xaf0fffff pref]
[    1.178140] pci 0000:3d:00.2: BAR 6: assigned [mem 0xaf100000-0xaf17ffff pref]
[    1.178141] pci 0000:3d:00.3: BAR 6: assigned [mem 0xaf180000-0xaf1fffff pref]
[    1.178143] pci 0000:3c:03.0: PCI bridge to [bus 3d-3e]
[    1.178149] pci 0000:3c:03.0:   bridge window [mem 0xab000000-0xb02fffff 64bit pref]
[    1.178153] pci 0000:3b:00.0: PCI bridge to [bus 3c-3e]
[    1.178158] pci 0000:3b:00.0:   bridge window [mem 0xab000000-0xb02fffff 64bit pref]
[    1.178162] pci 0000:3a:00.0: PCI bridge to [bus 3b-3e]
[    1.178165] pci 0000:3a:00.0:   bridge window [mem 0xb0300000-0xb03fffff]
[    1.178167] pci 0000:3a:00.0:   bridge window [mem 0xab000000-0xb02fffff 64bit pref]
[    1.178171] pci_bus 0000:3a: Some PCI device resources are unassigned, try booting with pci=realloc
[    1.178173] pci_bus 0000:3a: resource 4 [io  0x6000-0x7fff window]
[    1.178174] pci_bus 0000:3a: resource 5 [mem 0xab000000-0xb87fffff window]
[    1.178175] pci_bus 0000:3a: resource 6 [mem 0x388000000000-0x38bfffffffff window]
[    1.178177] pci_bus 0000:3b: resource 1 [mem 0xb0300000-0xb03fffff]
[    1.178178] pci_bus 0000:3b: resource 2 [mem 0xab000000-0xb02fffff 64bit pref]
[    1.178180] pci_bus 0000:3c: resource 2 [mem 0xab000000-0xb02fffff 64bit pref]
[    1.178181] pci_bus 0000:3d: resource 2 [mem 0xab000000-0xb02fffff 64bit pref]
[    1.178201] pci 0000:5e:00.0: BAR 6: no space for [mem size 0x00100000 pref]
[    1.178203] pci 0000:5e:00.0: BAR 6: failed to assign [mem size 0x00100000 pref]
[    1.178204] pci 0000:5d:00.0: PCI bridge to [bus 5e]
[    1.178207] pci 0000:5d:00.0:   bridge window [mem 0xb8800000-0xb89fffff]
[    1.178213] pci_bus 0000:5d: resource 4 [io  0x8000-0x9fff window]
[    1.178214] pci_bus 0000:5d: resource 5 [mem 0xb8800000-0xc5ffffff window]
[    1.178216] pci_bus 0000:5d: resource 6 [mem 0x38c000000000-0x38ffffffffff window]
[    1.178217] pci_bus 0000:5e: resource 1 [mem 0xb8800000-0xb89fffff]
[    1.178232] pci_bus 0000:80: resource 4 [io  0xa000-0xbfff window]
[    1.178234] pci_bus 0000:80: resource 5 [mem 0xc6000000-0xd37fffff window]
[    1.178235] pci_bus 0000:80: resource 6 [mem 0x390000000000-0x393fffffffff window]
[    1.178252] pci_bus 0000:85: resource 4 [io  0xc000-0xdfff window]
[    1.178254] pci_bus 0000:85: resource 5 [mem 0xd3800000-0xe0ffffff window]
[    1.178255] pci_bus 0000:85: resource 6 [mem 0x394000000000-0x397fffffffff window]
[    1.178274] pci_bus 0000:ae: resource 4 [io  0xe000-0xefff window]
[    1.178275] pci_bus 0000:ae: resource 5 [mem 0xe1000000-0xee7fffff window]
[    1.178277] pci_bus 0000:ae: resource 6 [mem 0x398000000000-0x39bfffffffff window]
[    1.178293] pci_bus 0000:d7: resource 4 [io  0xf000-0xffff window]
[    1.178294] pci_bus 0000:d7: resource 5 [mem 0xee800000-0xfbffffff window]
[    1.178296] pci_bus 0000:d7: resource 6 [mem 0x39c000000000-0x39ffffffffff window]
[    1.191253] pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x140 took 12611 usecs
[    1.191294] pci 0000:17:05.0: disabled boot interrupts on device [8086:2034]
[    1.191395] pci 0000:3a:05.0: disabled boot interrupts on device [8086:2034]
[    1.191447] pci 0000:5d:05.0: disabled boot interrupts on device [8086:2034]
[    1.191499] pci 0000:85:05.0: disabled boot interrupts on device [8086:2034]
[    1.191587] pci 0000:ae:05.0: disabled boot interrupts on device [8086:2034]
[    1.191625] pci 0000:d7:05.0: disabled boot interrupts on device [8086:2034]
[    1.191660] PCI: CLS 32 bytes, default 64
[    1.191666] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.191667] software IO TLB: mapped [mem 0x00000000569d0000-0x000000005a9d0000] (64MB)
[    1.191674] ACPI: bus type thunderbolt registered
[    1.191706] Trying to unpack rootfs image as initramfs...
[    1.200817] Initialise system trusted keyrings
[    1.200825] Key type blacklist registered
[    1.200894] workingset: timestamp_bits=36 max_order=25 bucket_order=0
[    1.200915] zbud: loaded
[    1.201524] integrity: Platform Keyring initialized
[    1.210934] NET: Registered PF_ALG protocol family
[    1.210938] Key type asymmetric registered
[    1.210939] Asymmetric key parser 'x509' registered
[    2.215661] tsc: Refined TSC clocksource calibration: 2394.374 MHz
[    2.215707] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x228374dae5d, max_idle_ns: 440795268352 ns
[    2.215973] clocksource: Switched to clocksource tsc
[    3.473322] Freeing initrd memory: 129628K
[    3.477158] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    3.477244] io scheduler mq-deadline registered
[    3.477246] io scheduler kyber registered
[    3.477264] io scheduler bfq registered
[    3.478918] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    3.480683] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    3.480912] Monitor-Mwait will be used to enter C-1 state
[    3.480930] Monitor-Mwait will be used to enter C-2 state
[    3.480937] ACPI: \_SB_.SCK0.CP00: Found 2 idle states
[    3.484751] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    3.484842] ACPI: button: Power Button [PWRF]
[    3.608874] ERST: Error Record Serialization Table (ERST) support is initialized.
[    3.608876] pstore: Registered erst as persistent store backend
[    3.609155] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.609244] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    3.609948] Non-volatile memory driver v1.3
[    3.620252] rdac: device handler registered
[    3.620331] hp_sw: device handler registered
[    3.620332] emc: device handler registered
[    3.620455] alua: device handler registered
[    3.620698] usbcore: registered new interface driver usbserial_generic
[    3.620704] usbserial: USB Serial support registered for generic
[    3.620735] i8042: PNP: No PS/2 controller found.
[    3.620763] mousedev: PS/2 mouse device common for all mice
[    3.620838] rtc_cmos 00:00: RTC can wake from S4
[    3.621092] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.621151] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    3.621275] rtc_cmos 00:00: registered as rtc0
[    3.621361] rtc_cmos 00:00: setting system clock to 2023-01-10T13:35:42 UTC (1673357742)
[    3.621384] rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram
[    3.622293] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[    3.622660] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.622695] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    3.622698] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    3.622738] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.02
[    3.622741] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.622742] usb usb1: Product: xHCI Host Controller
[    3.622744] usb usb1: Manufacturer: Linux 6.2.0-rc2-09th-Jan_23_Next-Queue+ xhci-hcd
[    3.622746] usb usb1: SerialNumber: 0000:00:14.0
[    3.622896] hub 1-0:1.0: USB hub found
[    3.622916] hub 1-0:1.0: 16 ports detected
[    3.624502] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.02
[    3.624505] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.624506] usb usb2: Product: xHCI Host Controller
[    3.624507] usb usb2: Manufacturer: Linux 6.2.0-rc2-09th-Jan_23_Next-Queue+ xhci-hcd
[    3.624509] usb usb2: SerialNumber: 0000:00:14.0
[    3.624609] hub 2-0:1.0: USB hub found
[    3.624625] hub 2-0:1.0: 10 ports detected
[    3.624985] usb: port power management may be unreliable
[    3.628115] intel_pstate: Intel P-state driver initializing
[    3.640589] intel_pstate: HWP enabled
[    3.640803] efifb: probing for efifb
[    3.640815] efifb: framebuffer at 0x91000000, using 3072k, total 3072k
[    3.640817] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    3.640818] efifb: scrolling: redraw
[    3.640818] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.640882] Console: switching to colour frame buffer device 128x48
[    3.649214] fb0: EFI VGA frame buffer device
[    3.649225] hid: raw HID events driver (C) Jiri Kosina
[    3.649246] usbcore: registered new interface driver usbhid
[    3.649246] usbhid: USB HID core driver
[    3.649439] drop_monitor: Initializing network drop monitor service
[    3.657980] Initializing XFRM netlink socket
[    3.658022] NET: Registered PF_INET6 protocol family
[    3.658595] Segment Routing with IPv6
[    3.658600] In-situ OAM (IOAM) with IPv6
[    3.658615] NET: Registered PF_PACKET protocol family
[    3.658699] mpls_gso: MPLS GSO support
[    3.671646] microcode: Microcode Update Driver: v2.2.
[    3.678696] resctrl: MB allocation detected
[    3.678697] resctrl: L3 monitoring detected
[    3.678701] IPI shorthand broadcast: enabled
[    3.678707] AVX2 version of gcm_enc/dec engaged.
[    3.678995] AES CTR mode by8 optimization enabled
[    3.679908] sched_clock: Marking stable (3674938338, 4700695)->(3806724630, -127085597)
[    3.682406] registered taskstats version 1
[    3.696290] Loading compiled-in X.509 certificates
[    3.704388] Loaded X.509 cert 'Build time autogenerated kernel key: 0d5cc078a4c587ce3308724dce6ca31f244977ea'
[    3.705955] zswap: loaded using pool lzo/zbud
[    3.707803] page_owner is disabled
[    3.708120] pstore: Using crash dump compression: deflate
[    3.708131] Key type big_key registered
[    3.711201] Key type encrypted registered
[    3.712705] ima: No TPM chip found, activating TPM-bypass!
[    3.712707] Loading compiled-in module X.509 certificates
[    3.713195] Loaded X.509 cert 'Build time autogenerated kernel key: 0d5cc078a4c587ce3308724dce6ca31f244977ea'
[    3.713197] ima: Allocated hash algorithm: sha256
[    3.713208] ima: No architecture policies found
[    3.713221] evm: Initialising EVM extended attributes:
[    3.713222] evm: security.selinux
[    3.713222] evm: security.SMACK64 (disabled)
[    3.713223] evm: security.SMACK64EXEC (disabled)
[    3.713224] evm: security.SMACK64TRANSMUTE (disabled)
[    3.713225] evm: security.SMACK64MMAP (disabled)
[    3.713225] evm: security.apparmor (disabled)
[    3.713226] evm: security.ima
[    3.713227] evm: security.capability
[    3.713227] evm: HMAC attrs: 0x1
[    3.845965] Freeing unused decrypted memory: 2036K
[    3.846958] Freeing unused kernel image (initmem) memory: 3856K
[    3.852659] Write protecting the kernel read-only data: 28672k
[    3.853842] Freeing unused kernel image (rodata/data gap) memory: 1468K
[    3.864199] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.864203] Run /init as init process
[    3.864205]   with arguments:
[    3.864206]     /init
[    3.864206]     rhgb
[    3.864207]   with environment:
[    3.864207]     HOME=/
[    3.864208]     TERM=linux
[    3.864208]     BOOT_IMAGE=(hd0,gpt2)/vmlinuz-6.2.0-rc2-09th-Jan_23_Next-Queue+
[    3.865714] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[    4.002218] usb 1-2: New USB device found, idVendor=14dd, idProduct=1005, bcdDevice= 0.00
[    4.002222] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.002537] usb 1-2: Product: D2CIM-VUSB
[    4.002539] usb 1-2: Manufacturer: Raritan
[    4.002540] usb 1-2: SerialNumber: 7C07478CDFA4E4B
[    4.022096] input: Raritan D2CIM-VUSB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:14DD:1005.0001/input/input1
[    4.049369] systemd[1]: systemd 250-6.el9_0 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    4.049477] systemd[1]: Detected architecture x86-64.
[    4.049478] systemd[1]: Running in initial RAM disk.
[    4.049507] systemd[1]: No hostname configured, using default hostname.
[    4.049556] systemd[1]: Hostname set to <localhost>.
[    4.073795] input: Raritan D2CIM-VUSB Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:14DD:1005.0001/input/input2
[    4.073855] hid-generic 0003:14DD:1005.0001: input,hidraw0: USB HID v1.11 Keyboard [Raritan D2CIM-VUSB] on usb-0000:00:14.0-2/input0
[    4.105588] systemd[1]: Queued start job for default target Initrd Default Target.
[    4.117637] systemd[1]: Created slice Slice /system/systemd-hibernate-resume.
[    4.117694] systemd[1]: Reached target Initrd /usr File System.
[    4.117710] systemd[1]: Reached target Slice Units.
[    4.117719] systemd[1]: Reached target Swaps.
[    4.117725] systemd[1]: Reached target Timer Units.
[    4.117777] systemd[1]: Listening on D-Bus System Message Bus Socket.
[    4.117828] systemd[1]: Listening on Journal Socket (/dev/log).
[    4.117875] systemd[1]: Listening on Journal Socket.
[    4.117929] systemd[1]: Listening on udev Control Socket.
[    4.117965] systemd[1]: Listening on udev Kernel Socket.
[    4.117972] systemd[1]: Reached target Socket Units.
[    4.118585] systemd[1]: Starting Create List of Static Device Nodes...
[    4.120308] systemd[1]: Starting Journal Service...
[    4.121031] systemd[1]: Starting Load Kernel Modules...
[    4.121075] systemd[1]: Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    4.121741] systemd[1]: Starting Setup Virtual Console...
[    4.122068] systemd[1]: Finished Create List of Static Device Nodes.
[    4.122740] systemd[1]: Starting Create Static Device Nodes in /dev...
[    4.126673] systemd[1]: Finished Create Static Device Nodes in /dev.
[    4.143269] fuse: init (API version 7.38)
[    4.148407] IPMI message handler: version 39.2
[    4.150672] ipmi device interface
[    4.151425] systemd[1]: Finished Load Kernel Modules.
[    4.162732] systemd[1]: Starting Apply Kernel Variables...
[    4.166479] systemd[1]: Finished Apply Kernel Variables.
[    4.167655] systemd[1]: Finished Setup Virtual Console.
[    4.167726] systemd[1]: dracut ask for additional cmdline parameters was skipped because all trigger condition checks failed.
[    4.168401] systemd[1]: Starting dracut cmdline hook...
[    4.181218] systemd[1]: Started Journal Service.
[    4.191656] usb 1-8: new high-speed USB device number 3 using xhci_hcd
[    4.275836] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    4.275865] device-mapper: uevent: version 1.0.3
[    4.275932] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    4.319064] usb 1-8: New USB device found, idVendor=0b1f, idProduct=03ef, bcdDevice= 1.00
[    4.319073] usb 1-8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.319078] usb 1-8: Product: USB Virtual Hub
[    4.319082] usb 1-8: Manufacturer: Aspeed
[    4.319085] usb 1-8: SerialNumber: 00000000
[    4.320220] hub 1-8:1.0: USB hub found
[    4.320409] hub 1-8:1.0: 5 ports detected
[    4.439543] dca service started, version 1.12.1
[    4.471107] libata version 3.00 loaded.
[    4.475940] igb: Intel(R) Gigabit Ethernet Network Driver
[    4.475943] igb: Copyright (c) 2007-2014 Intel Corporation.
[    4.496688] ahci 0000:00:11.5: version 3.0
[    4.496959] ahci 0000:00:11.5: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    4.496964] ahci 0000:00:11.5: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds apst 
[    4.500996] scsi host0: ahci
[    4.501290] scsi host1: ahci
[    4.501359] ata1: SATA max UDMA/133 abar m524288@0x92180000 port 0x92180100 irq 39
[    4.501363] ata2: SATA max UDMA/133 abar m524288@0x92180000 port 0x92180180 irq 39
[    4.501687] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    4.501692] ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds apst 
[    4.504841] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver
[    4.504844] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    4.530172] pps pps0: new PPS source ptp0
[    4.530256] igb 0000:5e:00.0: added PHC on eth0
[    4.530259] igb 0000:5e:00.0: Intel(R) Gigabit Ethernet Network Connection
[    4.530261] igb 0000:5e:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:1b:21:ea:64:3a
[    4.530389] igb 0000:5e:00.0: eth0: PBA No: G59947-011
[    4.530391] igb 0000:5e:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
[    4.534269] scsi host2: ahci
[    4.534420] scsi host3: ahci
[    4.534556] scsi host4: ahci
[    4.534672] scsi host5: ahci
[    4.535050] scsi host6: ahci
[    4.535229] scsi host7: ahci
[    4.535454] scsi host8: ahci
[    4.535586] scsi host9: ahci
[    4.535637] ata3: SATA max UDMA/133 abar m524288@0x92100000 port 0x92100100 irq 40
[    4.535643] ata4: SATA max UDMA/133 abar m524288@0x92100000 port 0x92100180 irq 40
[    4.535645] ata5: SATA max UDMA/133 abar m524288@0x92100000 port 0x92100200 irq 40
[    4.535646] ata6: SATA max UDMA/133 abar m524288@0x92100000 port 0x92100280 irq 40
[    4.535648] ata7: SATA max UDMA/133 abar m524288@0x92100000 port 0x92100300 irq 40
[    4.535651] ata8: SATA max UDMA/133 abar m524288@0x92100000 port 0x92100380 irq 40
[    4.535654] ata9: SATA max UDMA/133 abar m524288@0x92100000 port 0x92100400 irq 40
[    4.535655] ata10: SATA max UDMA/133 abar m524288@0x92100000 port 0x92100480 irq 40
[    4.541038] i40e: Intel(R) Ethernet Connection XL710 Network Driver
[    4.541041] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    4.541067] ACPI: bus type drm_connector registered
[    4.555621] i40e 0000:3d:00.0: fw 6.0.70210 api 1.12 nvm 6.00 0x800039fb 1.3253.0 [8086:37d0] [8086:0004]
[    4.559161] i40e 0000:3d:00.0: MAC address: f8:f2:1e:54:04:c4
[    4.559441] i40e 0000:3d:00.0: FW LLDP is enabled
[    4.566412] i40e 0000:3d:00.0: Added LAN device PF0 bus=0x3d dev=0x00 func=0x00
[    4.567193] i40e 0000:3d:00.0: Features: PF-id[0] VFs: 32 VSIs: 34 QP: 94 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[    4.581892] i40e 0000:3d:00.1: fw 6.0.70210 api 1.12 nvm 6.00 0x800039fb 1.3253.0 [8086:37d0] [8086:0004]
[    4.586113] i40e 0000:3d:00.1: MAC address: f8:f2:1e:54:04:c5
[    4.586424] i40e 0000:3d:00.1: FW LLDP is enabled
[    4.592650] usb 1-8.2: new full-speed USB device number 4 using xhci_hcd
[    4.593521] i40e 0000:3d:00.1: Added LAN device PF1 bus=0x3d dev=0x00 func=0x01
[    4.594334] i40e 0000:3d:00.1: Features: PF-id[1] VFs: 32 VSIs: 34 QP: 94 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[    4.608861] i40e 0000:3d:00.2: fw 6.0.70210 api 1.12 nvm 6.00 0x800039fb 1.3253.0 [8086:37d0] [8086:0004]
[    4.612891] i40e 0000:3d:00.2: MAC address: f8:f2:1e:54:04:c6
[    4.613201] i40e 0000:3d:00.2: FW LLDP is enabled
[    4.644297] i40e 0000:3d:00.2 eth3: NIC Link is Up, 10 Gbps Full Duplex, Flow Control: None
[    4.655901] i40e 0000:3d:00.2: Added LAN device PF2 bus=0x3d dev=0x00 func=0x02
[    4.670077] usb 1-8.2: not running at top speed; connect to a high speed hub
[    4.671059] usb 1-8.2: New USB device found, idVendor=0b1f, idProduct=03e9, bcdDevice= 4.09
[    4.671066] usb 1-8.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.671070] usb 1-8.2: Product: HID Gadget
[    4.671073] usb 1-8.2: Manufacturer: Linux 4.9.247 with ast_vhub
[    4.681427] input: Linux 4.9.247 with ast_vhub HID Gadget as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.2/1-8.2:1.0/0003:0B1F:03E9.0002/input/input3
[    4.681818] i40e 0000:3d:00.2: Features: PF-id[2] VFs: 32 VSIs: 34 QP: 94 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[    4.694885] i40e 0000:3d:00.3: fw 6.0.70210 api 1.12 nvm 6.00 0x800039fb 1.3253.0 [8086:37d0] [8086:0004]
[    4.698886] i40e 0000:3d:00.3: MAC address: f8:f2:1e:54:04:c7
[    4.699196] i40e 0000:3d:00.3: FW LLDP is enabled
[    4.729883] i40e 0000:3d:00.3 eth4: NIC Link is Up, 10 Gbps Full Duplex, Flow Control: None
[    4.733990] hid-generic 0003:0B1F:03E9.0002: input,hidraw1: USB HID v1.01 Keyboard [Linux 4.9.247 with ast_vhub HID Gadget] on usb-0000:00:14.0-8.2/input0
[    4.735356] input: Linux 4.9.247 with ast_vhub HID Gadget as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8.2/1-8.2:1.1/0003:0B1F:03E9.0003/input/input4
[    4.735497] hid-generic 0003:0B1F:03E9.0003: input,hidraw2: USB HID v1.01 Mouse [Linux 4.9.247 with ast_vhub HID Gadget] on usb-0000:00:14.0-8.2/input1
[    4.741331] i40e 0000:3d:00.3: Added LAN device PF3 bus=0x3d dev=0x00 func=0x03
[    4.767085] i40e 0000:3d:00.3: Features: PF-id[3] VFs: 32 VSIs: 34 QP: 94 RSS FD_ATR FD_SB NTUPLE DCB VxLAN Geneve PTP VEPA
[    4.805229] ata1: SATA link down (SStatus 0 SControl 300)
[    4.805906] ata2: SATA link down (SStatus 0 SControl 300)
[    4.846143] ata10: SATA link down (SStatus 0 SControl 300)
[    4.846184] ata7: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    4.846222] ata8: SATA link down (SStatus 0 SControl 300)
[    4.846297] ata6: SATA link down (SStatus 0 SControl 300)
[    4.846330] ata9: SATA link down (SStatus 0 SControl 300)
[    4.846356] ata3: SATA link down (SStatus 0 SControl 300)
[    4.846383] ata4: SATA link down (SStatus 0 SControl 300)
[    4.846418] ata7.00: ATA-10: INTEL SSDSC2KG019T8, XCV10132, max UDMA/133
[    4.846426] ata7.00: 3750748848 sectors, multi 1: LBA48 NCQ (depth 32)
[    4.846449] ata5: SATA link down (SStatus 0 SControl 300)
[    4.846536] ata7.00: configured for UDMA/133
[    4.846764] scsi 6:0:0:0: Direct-Access     ATA      INTEL SSDSC2KG01 0132 PQ: 0 ANSI: 5
[    4.848796] igb 0000:5e:00.0 enp94s0: renamed from eth0
[    4.862578] scsi 6:0:0:0: Attached scsi generic sg0 type 0
[    4.870962] i40e 0000:3d:00.0 ens785f0: renamed from eth1
[    4.878715] ata7.00: Enabling discard_zeroes_data
[    4.878733] sd 6:0:0:0: [sda] 3750748848 512-byte logical blocks: (1.92 TB/1.75 TiB)
[    4.878736] sd 6:0:0:0: [sda] 4096-byte physical blocks
[    4.878748] sd 6:0:0:0: [sda] Write Protect is off
[    4.878755] sd 6:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.878775] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.878802] sd 6:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[    4.879357] ata7.00: Enabling discard_zeroes_data
[    4.880635] Console: switching to colour dummy device 80x25
[    4.880802] ast 0000:02:00.0: [drm] P2A bridge disabled, using default configuration
[    4.880804] ast 0000:02:00.0: [drm] AST 2500 detected
[    4.880813] ast 0000:02:00.0: [drm] Using analog VGA
[    4.880814] ast 0000:02:00.0: [drm] dram MCLK=800 Mhz type=1 bus_width=16
[    4.881047] [drm] Initialized ast 0.1.0 20120228 for 0000:02:00.0 on minor 0
[    4.883729] i40e 0000:3d:00.1 ens785f1: renamed from eth2
[    4.895235]  sda: sda1 sda2 sda3
[    4.895413] sd 6:0:0:0: [sda] Attached SCSI disk
[    4.902055] i40e 0000:3d:00.3 ens785f3: renamed from eth4
[    4.914790] i40e 0000:3d:00.2 ens785f2: renamed from eth3
[    5.280527] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[    5.280532] 	[00] BAD  00 ff ff ff ff ff ff 00 ff ff ff ff ff ff ff ff
[    5.280534] 	[00] BAD  ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    5.280534] 	[00] BAD  ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    5.280535] 	[00] BAD  ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    5.280536] 	[00] BAD  ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    5.280536] 	[00] BAD  ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    5.280537] 	[00] BAD  ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    5.280537] 	[00] BAD  ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    5.281312] fbcon: astdrmfb (fb0) is primary device
[    5.296480] Console: switching to colour frame buffer device 128x48
[    5.305516] ast 0000:02:00.0: [drm] fb0: astdrmfb frame buffer device
[    5.590269] ixgbe 0000:18:00.0: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[    5.687651] ixgbe 0000:18:00.0: 31.504 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x4 link)
[    5.792320] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[    5.799641] ixgbe 0000:18:00.0: MAC: 4, PHY: 0, PBA No: 000000-000
[    5.799644] ixgbe 0000:18:00.0: a4:bf:01:64:28:ae
[    5.959845] ixgbe 0000:18:00.0: Intel(R) 10 Gigabit Network Connection
[    6.635991] ixgbe 0000:18:00.1: Multiqueue Enabled: Rx Queue count = 63, Tx Queue count = 63 XDP Queue count = 0
[    6.733657] ixgbe 0000:18:00.1: 31.504 Gb/s available PCIe bandwidth (8.0 GT/s PCIe x4 link)
[    6.845737] ixgbe 0000:18:00.1: MAC: 4, PHY: 0, PBA No: 000000-000
[    6.845746] ixgbe 0000:18:00.1: a4:bf:01:64:28:af
[    7.004717] ixgbe 0000:18:00.1: Intel(R) 10 Gigabit Network Connection
[    7.006729] ixgbe 0000:18:00.0 eno1: renamed from eth0
[    7.019301] ixgbe 0000:18:00.1 eno2: renamed from eth1
[    7.322652] PM: Image not found (code -22)
[    7.657244] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled
[    7.659749] XFS (dm-0): Mounting V5 Filesystem d7ab5c98-50ee-4866-a0e6-87aa55b10e3b
[    7.679494] XFS (dm-0): Ending clean mount
[    7.882289] systemd-journald[848]: Received SIGTERM from PID 1 (systemd).
[    7.986064] audit: type=1404 audit(1673357746.863:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
[    8.032203] SELinux:  Class mctp_socket not defined in policy.
[    8.032208] SELinux:  Class io_uring not defined in policy.
[    8.032208] SELinux:  Class user_namespace not defined in policy.
[    8.032209] SELinux: the above unknown classes and permissions will be allowed
[    8.034455] SELinux:  policy capability network_peer_controls=1
[    8.034456] SELinux:  policy capability open_perms=1
[    8.034457] SELinux:  policy capability extended_socket_class=1
[    8.034457] SELinux:  policy capability always_check_network=0
[    8.034458] SELinux:  policy capability cgroup_seclabel=1
[    8.034459] SELinux:  policy capability nnp_nosuid_transition=1
[    8.034460] SELinux:  policy capability genfs_seclabel_symlinks=0
[    8.034460] SELinux:  policy capability ioctl_skip_cloexec=0
[    8.068889] audit: type=1403 audit(1673357746.946:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
[    8.071186] systemd[1]: Successfully loaded SELinux policy in 85.702ms.
[    8.119197] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 30.104ms.
[    8.125068] systemd[1]: systemd 250-6.el9_0 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    8.125160] systemd[1]: Detected architecture x86-64.
[    8.163150] systemd-rc-local-generator[1555]: /etc/rc.d/rc.local is not marked executable, skipping.
[    8.394548] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    8.394636] systemd[1]: Stopped Switch Root.
[    8.394889] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    8.395345] systemd[1]: Created slice Slice /system/getty.
[    8.395779] systemd[1]: Created slice Slice /system/modprobe.
[    8.396217] systemd[1]: Created slice Slice /system/sshd-keygen.
[    8.396610] systemd[1]: Created slice Slice /system/systemd-fsck.
[    8.397061] systemd[1]: Created slice User and Session Slice.
[    8.397085] systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of a failed condition check (ConditionPathExists=!/run/plymouth/pid).
[    8.397159] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    8.397400] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    8.397429] systemd[1]: Reached target Local Encrypted Volumes.
[    8.397444] systemd[1]: Reached target Login Prompts.
[    8.397463] systemd[1]: Stopped target Switch Root.
[    8.397477] systemd[1]: Stopped target Initrd File Systems.
[    8.397487] systemd[1]: Stopped target Initrd Root File System.
[    8.397499] systemd[1]: Reached target Local Integrity Protected Volumes.
[    8.397533] systemd[1]: Reached target Slice Units.
[    8.397556] systemd[1]: Reached target Local Verity Protected Volumes.
[    8.397829] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    8.399102] systemd[1]: Listening on LVM2 poll daemon socket.
[    8.399158] systemd[1]: multipathd control socket was skipped because of a failed condition check (ConditionPathExists=/etc/multipath.conf).
[    8.400064] systemd[1]: Listening on Process Core Dump Socket.
[    8.400154] systemd[1]: Listening on initctl Compatibility Named Pipe.
[    8.401624] systemd[1]: Listening on udev Control Socket.
[    8.401809] systemd[1]: Listening on udev Kernel Socket.
[    8.402675] systemd[1]: Activating swap /dev/mapper/rhel-swap...
[    8.403866] systemd[1]: Mounting Huge Pages File System...
[    8.405227] systemd[1]: Mounting POSIX Message Queue File System...
[    8.406321] systemd[1]: Mounting Kernel Debug File System...
[    8.407385] systemd[1]: Mounting Kernel Trace File System...
[    8.410281] systemd[1]: Starting Create List of Static Device Nodes...
[    8.411397] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    8.412443] systemd[1]: Starting Load Kernel Module configfs...
[    8.413354] systemd[1]: Starting Load Kernel Module drm...
[    8.414844] systemd[1]: Starting Load Kernel Module fuse...
[    8.416373] systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
[    8.416436] systemd[1]: plymouth-switch-root.service: Deactivated successfully.
[    8.416470] systemd[1]: Stopped Plymouth switch root service.
[    8.416579] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[    8.416602] systemd[1]: Stopped File System Check on Root Device.
[    8.416661] systemd[1]: Stopped Journal Service.
[    8.417797] Adding 47185916k swap on /dev/mapper/rhel-swap.  Priority:-2 extents:1 across:47185916k SSFS
[    8.418922] systemd[1]: Starting Journal Service...
[    8.420539] systemd[1]: Starting Load Kernel Modules...
[    8.421683] systemd[1]: Starting Generate network units from Kernel command line...
[    8.423013] systemd[1]: Starting Remount Root and Kernel File Systems...
[    8.423083] systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
[    8.424152] systemd[1]: Starting Coldplug All udev Devices...
[    8.426376] systemd[1]: Activated swap /dev/mapper/rhel-swap.
[    8.427295] systemd[1]: Mounted Huge Pages File System.
[    8.427374] systemd[1]: Mounted POSIX Message Queue File System.
[    8.427450] systemd[1]: Mounted Kernel Debug File System.
[    8.427514] systemd[1]: Mounted Kernel Trace File System.
[    8.427824] systemd[1]: Finished Create List of Static Device Nodes.
[    8.427991] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    8.428070] systemd[1]: Finished Load Kernel Module configfs.
[    8.428207] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    8.428284] systemd[1]: Finished Load Kernel Module drm.
[    8.428418] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    8.428495] systemd[1]: Finished Load Kernel Module fuse.
[    8.428745] systemd[1]: Finished Read and set NIS domainname from /etc/sysconfig/network.
[    8.428899] systemd[1]: Finished Generate network units from Kernel command line.
[    8.428978] systemd[1]: Reached target Swaps.
[    8.430203] systemd[1]: Mounting FUSE Control File System...
[    8.431267] systemd[1]: Mounting Kernel Configuration File System...
[    8.432041] systemd[1]: Mounted FUSE Control File System.
[    8.432633] systemd[1]: Mounted Kernel Configuration File System.
[    8.436997] systemd[1]: Finished Remount Root and Kernel File Systems.
[    8.437102] systemd[1]: Special handling of early boot iSCSI sessions was skipped because of a failed condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session).
[    8.437129] systemd[1]: OSTree Remount OS/ Bind Mounts was skipped because of a failed condition check (ConditionKernelCommandLine=ostree).
[    8.437164] systemd[1]: First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
[    8.438544] systemd[1]: Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    8.439594] systemd[1]: Starting Load/Save Random Seed...
[    8.439668] systemd[1]: Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
[    8.440673] systemd[1]: Starting Create Static Device Nodes in /dev...
[    8.440907] systemd[1]: Started Journal Service.
[    8.448018] systemd-journald[1577]: Received client request to flush runtime journal.
[    8.613865] ipmi_si: IPMI System Interface driver
[    8.613886] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[    8.613888] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[    8.613890] ipmi_si: Adding SMBIOS-specified kcs state machine
[    8.613948] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[    8.613962] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
[    8.655948] lpc_ich 0000:00:1f.0: I/O space for ACPI uninitialized
[    8.655952] lpc_ich 0000:00:1f.0: No MFD cells added
[    8.656092] ioatdma: Intel(R) QuickData Technology Driver 5.00
[    8.656432] ioatdma 0000:00:04.0: enabling device (0004 -> 0006)
[    8.656933] ioatdma 0000:00:04.0: channel error register unreachable
[    8.656936] ioatdma 0000:00:04.0: channel enumeration error
[    8.656945] ioatdma 0000:00:04.0: Intel(R) I/OAT DMA Engine init failed
[    8.657252] ioatdma 0000:00:04.1: enabling device (0004 -> 0006)
[    8.657377] ioatdma 0000:00:04.1: channel error register unreachable
[    8.657378] ioatdma 0000:00:04.1: channel enumeration error
[    8.657383] ioatdma 0000:00:04.1: Intel(R) I/OAT DMA Engine init failed
[    8.657562] ioatdma 0000:00:04.2: enabling device (0004 -> 0006)
[    8.657715] ioatdma 0000:00:04.2: channel error register unreachable
[    8.657716] ioatdma 0000:00:04.2: channel enumeration error
[    8.657718] ioatdma 0000:00:04.2: Intel(R) I/OAT DMA Engine init failed
[    8.657915] ioatdma 0000:00:04.3: enabling device (0004 -> 0006)
[    8.658064] ioatdma 0000:00:04.3: channel error register unreachable
[    8.658066] ioatdma 0000:00:04.3: channel enumeration error
[    8.658068] ioatdma 0000:00:04.3: Intel(R) I/OAT DMA Engine init failed
[    8.658263] ioatdma 0000:00:04.4: enabling device (0004 -> 0006)
[    8.658412] ioatdma 0000:00:04.4: channel error register unreachable
[    8.658414] ioatdma 0000:00:04.4: channel enumeration error
[    8.658415] ioatdma 0000:00:04.4: Intel(R) I/OAT DMA Engine init failed
[    8.658603] ioatdma 0000:00:04.5: enabling device (0004 -> 0006)
[    8.658859] ioatdma 0000:00:04.5: channel error register unreachable
[    8.658861] ioatdma 0000:00:04.5: channel enumeration error
[    8.658865] ioatdma 0000:00:04.5: Intel(R) I/OAT DMA Engine init failed
[    8.659082] ioatdma 0000:00:04.6: enabling device (0004 -> 0006)
[    8.659239] ioatdma 0000:00:04.6: channel error register unreachable
[    8.659241] ioatdma 0000:00:04.6: channel enumeration error
[    8.659244] ioatdma 0000:00:04.6: Intel(R) I/OAT DMA Engine init failed
[    8.659637] ioatdma 0000:00:04.7: enabling device (0004 -> 0006)
[    8.659877] ioatdma 0000:00:04.7: channel error register unreachable
[    8.659879] ioatdma 0000:00:04.7: channel enumeration error
[    8.659882] ioatdma 0000:00:04.7: Intel(R) I/OAT DMA Engine init failed
[    8.660446] ioatdma 0000:80:04.0: enabling device (0004 -> 0006)
[    8.661064] ioatdma 0000:80:04.0: channel error register unreachable
[    8.661074] ioatdma 0000:80:04.0: channel enumeration error
[    8.661090] ioatdma 0000:80:04.0: Intel(R) I/OAT DMA Engine init failed
[    8.661402] ioatdma 0000:80:04.1: enabling device (0004 -> 0006)
[    8.662000] ioatdma 0000:80:04.1: channel error register unreachable
[    8.662016] ioatdma 0000:80:04.1: channel enumeration error
[    8.662030] ioatdma 0000:80:04.1: Intel(R) I/OAT DMA Engine init failed
[    8.662387] ioatdma 0000:80:04.2: enabling device (0004 -> 0006)
[    8.663350] ioatdma 0000:80:04.2: channel error register unreachable
[    8.663360] ioatdma 0000:80:04.2: channel enumeration error
[    8.663375] ioatdma 0000:80:04.2: Intel(R) I/OAT DMA Engine init failed
[    8.663534] ioatdma 0000:80:04.3: enabling device (0004 -> 0006)
[    8.663797] ioatdma 0000:80:04.3: channel error register unreachable
[    8.663805] ioatdma 0000:80:04.3: channel enumeration error
[    8.663817] ioatdma 0000:80:04.3: Intel(R) I/OAT DMA Engine init failed
[    8.663957] ioatdma 0000:80:04.4: enabling device (0004 -> 0006)
[    8.664219] ioatdma 0000:80:04.4: channel error register unreachable
[    8.664227] ioatdma 0000:80:04.4: channel enumeration error
[    8.664249] ioatdma 0000:80:04.4: Intel(R) I/OAT DMA Engine init failed
[    8.664455] ioatdma 0000:80:04.5: enabling device (0004 -> 0006)
[    8.666061] ioatdma 0000:80:04.5: channel error register unreachable
[    8.666070] ioatdma 0000:80:04.5: channel enumeration error
[    8.666192] ioatdma 0000:80:04.5: Intel(R) I/OAT DMA Engine init failed
[    8.666915] ioatdma 0000:80:04.6: enabling device (0004 -> 0006)
[    8.667884] ioatdma 0000:80:04.6: channel error register unreachable
[    8.667887] ioatdma 0000:80:04.6: channel enumeration error
[    8.667925] ioatdma 0000:80:04.6: Intel(R) I/OAT DMA Engine init failed
[    8.668128] ioatdma 0000:80:04.7: enabling device (0004 -> 0006)
[    8.668243] ioatdma 0000:80:04.7: channel error register unreachable
[    8.668245] ioatdma 0000:80:04.7: channel enumeration error
[    8.668246] ioatdma 0000:80:04.7: Intel(R) I/OAT DMA Engine init failed
[    8.679530] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[    8.679536] ipmi_si: Adding ACPI-specified kcs state machine
[    8.679726] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[    8.686550] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    8.686579] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[    8.686684] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    8.686721] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    8.686756] pci 0000:00:1f.1: [8086:a1a0] type 00 class 0x058000
[    8.686780] pci 0000:00:1f.1: reg 0x10: [mem 0xfd000000-0xfdffffff 64bit]
[    8.692432] i2c i2c-1: 4/16 memory slots populated (from DMI)
[    8.692436] i2c i2c-1: Systems with more than 4 memory slots not supported yet, not instantiating SPD
[    8.692443] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[    8.762256] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000157, prod_id: 0x007c, dev_id: 0x22)
[    8.839691] iTCO_vendor_support: vendor-support=0
[    8.840896] ipmi_si IPI0001:00: IPMI kcs interface initialized
[    8.845296] iTCO_wdt iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[    8.848752] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
[    8.848755] RAPL PMU: hw unit of domain package 2^-14 Joules
[    8.848756] RAPL PMU: hw unit of domain dram 2^-16 Joules
[    8.848915] ipmi_ssif: IPMI SSIF Interface driver
[    9.017997] EDAC skx: Can't find handle for NVDIMM ADR=0x1
[    9.018003] EDAC skx: Can't find handle for NVDIMM ADR=0x11
[    9.018005] EDAC skx: Can't find handle for NVDIMM ADR=0x20
[    9.018007] EDAC skx: Can't find handle for NVDIMM ADR=0x21
[    9.018043] EDAC MC0: Giving out device to module skx_edac controller Skylake Socket#0 IMC#0: DEV 0000:3a:0a.0 (INTERRUPT)
[    9.018050] EDAC skx: Can't find handle for NVDIMM ADR=0x100
[    9.018052] EDAC skx: Can't find handle for NVDIMM ADR=0x101
[    9.018054] EDAC skx: Can't find handle for NVDIMM ADR=0x110
[    9.018056] EDAC skx: Can't find handle for NVDIMM ADR=0x111
[    9.018058] EDAC skx: Can't find handle for NVDIMM ADR=0x120
[    9.018059] EDAC skx: Can't find handle for NVDIMM ADR=0x121
[    9.018066] EDAC MC1: Giving out device to module skx_edac controller Skylake Socket#0 IMC#1: DEV 0000:3a:0c.0 (INTERRUPT)
[    9.018076] EDAC skx: Can't find handle for NVDIMM ADR=0x1001
[    9.018078] EDAC skx: Can't find handle for NVDIMM ADR=0x1011
[    9.018080] EDAC skx: Can't find handle for NVDIMM ADR=0x1020
[    9.018081] EDAC skx: Can't find handle for NVDIMM ADR=0x1021
[    9.018102] EDAC MC2: Giving out device to module skx_edac controller Skylake Socket#1 IMC#0: DEV 0000:ae:0a.0 (INTERRUPT)
[    9.018108] EDAC skx: Can't find handle for NVDIMM ADR=0x1100
[    9.018110] EDAC skx: Can't find handle for NVDIMM ADR=0x1101
[    9.018112] EDAC skx: Can't find handle for NVDIMM ADR=0x1110
[    9.018113] EDAC skx: Can't find handle for NVDIMM ADR=0x1111
[    9.018115] EDAC skx: Can't find handle for NVDIMM ADR=0x1120
[    9.018117] EDAC skx: Can't find handle for NVDIMM ADR=0x1121
[    9.018122] EDAC MC3: Giving out device to module skx_edac controller Skylake Socket#1 IMC#1: DEV 0000:ae:0c.0 (INTERRUPT)
[    9.018124] EDAC skx: No firmware support for address translation.
[    9.018124] EDAC skx: Only decoding DDR4 address!
[    9.064474] ice: Intel(R) Ethernet Connection E800 Series Linux Driver
[    9.064477] ice: Copyright (c) 2018, Intel Corporation.
[    9.234779] intel_rapl_common: Found RAPL domain package
[    9.234787] intel_rapl_common: Found RAPL domain dram
[    9.234789] intel_rapl_common: DRAM domain energy unit 15300pj
[    9.234791] intel_rapl_common: RAPL package-0 domain package locked by BIOS
[    9.236137] intel_rapl_common: Found RAPL domain package
[    9.236142] intel_rapl_common: Found RAPL domain dram
[    9.236145] intel_rapl_common: DRAM domain energy unit 15300pj
[    9.236146] intel_rapl_common: RAPL package-1 domain package locked by BIOS
[    9.377797] ens785f1 speed is unknown, defaulting to 1000
[    9.377803] ens785f1 speed is unknown, defaulting to 1000
[    9.377827] ens785f1 speed is unknown, defaulting to 1000
[    9.378152] ens785f1 speed is unknown, defaulting to 1000
[    9.379128] ens785f0 speed is unknown, defaulting to 1000
[    9.379132] ens785f0 speed is unknown, defaulting to 1000
[    9.379158] ens785f0 speed is unknown, defaulting to 1000
[    9.379671] ens785f0 speed is unknown, defaulting to 1000
[    9.631831] power_meter ACPI000D:00: Found ACPI power meter.
[    9.631888] power_meter ACPI000D:00: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   10.579281] power_meter ACPI000D:00: Found ACPI power meter.
[   10.579303] power_meter ACPI000D:00: Ignoring unsafe software power cap!
[   13.206500] XFS (sda2): Mounting V5 Filesystem 3fe489af-554c-4f1f-bd5f-d79db5cd9ebb
[   13.206705] XFS (dm-2): Mounting V5 Filesystem 78e3784c-255e-40ba-81cb-f5d67cba7e99
[   13.234208] XFS (dm-2): Starting recovery (logdev: internal)
[   13.238684] XFS (sda2): Starting recovery (logdev: internal)
[   13.251474] XFS (sda2): Ending recovery (logdev: internal)
[   13.251868] XFS (dm-2): Ending recovery (logdev: internal)
[   13.519403] ens785f1 speed is unknown, defaulting to 1000
[   13.519428] ens785f0 speed is unknown, defaulting to 1000
[   13.874264] NET: Registered PF_QIPCRTR protocol family
[   14.233530] ens785f1 speed is unknown, defaulting to 1000
[   14.233552] ens785f0 speed is unknown, defaulting to 1000
[   14.569340] pps pps1: new PPS source ptp5
[   14.569426] ixgbe 0000:18:00.0: registered PHC device on eno1
[   14.981706] pps pps2: new PPS source ptp6
[   14.981740] ixgbe 0000:18:00.1: registered PHC device on eno2
[   15.157433] ens785f0 speed is unknown, defaulting to 1000
[   15.168895] ens785f1 speed is unknown, defaulting to 1000
[   15.204879] IPv6: ADDRCONF(NETDEV_CHANGE): ens785f2: link becomes ready
[   16.231726] IPv6: ADDRCONF(NETDEV_CHANGE): ens785f3: link becomes ready
[   18.727309] ixgbe 0000:18:00.0 eno1: NIC Link is Up 1 Gbps, Flow Control: None
[   18.727579] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[   19.318217] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   19.318456] IPv6: ADDRCONF(NETDEV_CHANGE): enp94s0: link becomes ready
[   22.418078] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[   22.826143] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[   23.950221] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[   24.419136] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
[   24.869830] ens785f1 speed is unknown, defaulting to 1000
[   24.869853] ens785f0 speed is unknown, defaulting to 1000
[   25.216135] rfkill: input handler disabled
[   25.536342] ens785f1 speed is unknown, defaulting to 1000
[   25.536366] ens785f0 speed is unknown, defaulting to 1000
[ 2124.951887] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Down
[ 2127.898257] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 2160.817894] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Down
[ 2163.499245] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 2225.723923] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Down
[ 2228.463218] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 2382.339915] ens785f1 speed is unknown, defaulting to 1000
[ 2382.339939] ens785f0 speed is unknown, defaulting to 1000
[ 2537.749766] ens785f1 speed is unknown, defaulting to 1000
[ 2537.749790] ens785f0 speed is unknown, defaulting to 1000
[ 2857.954920] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Down
[ 2860.745234] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 2874.715897] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Down
[ 2877.450222] igb 0000:5e:00.0 enp94s0: igb: enp94s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[ 9959.053702] BUG: kernel NULL pointer dereference, address: 0000000000000000
[ 9959.053708] #PF: supervisor read access in kernel mode
[ 9959.053710] #PF: error_code(0x0000) - not-present page
[ 9959.053711] PGD 10a6812067 P4D 10a6812067 PUD 109d035067 PMD 0 
[ 9959.053715] Oops: 0000 [#1] PREEMPT SMP NOPTI
[ 9959.053718] CPU: 93 PID: 3779 Comm: xdp1 Kdump: loaded Not tainted 6.2.0-rc2-09th-Jan_23_Next-Queue+ #1
[ 9959.053720] Hardware name: Intel Corporation S2600BPB/S2600BPB, BIOS SE5C620.86B.02.01.0013.121520200651 12/15/2020
[ 9959.053722] RIP: 0010:i40e_vsi_disable_irq+0xc1/0x1b0 [i40e]
[ 9959.053748] Code: bf 48 8b 0c c1 0f b7 71 4c 48 8b 4d 08 48 8d 8c b1 00 a0 03 00 89 11 48 8b 93 28 0d 00 00 48 85 d2 74 1d 48 8b 93 f8 0c 00 00 <48> 8b 14 c2 0f b7 4a 4c 48 8b 55 08 48 8d 94 8a 00 c0 03 00 89 3a
[ 9959.053750] RSP: 0018:ffffaee947b2b6a0 EFLAGS: 00010286
[ 9959.053752] RAX: 0000000000000000 RBX: ffff90f9d03bc000 RCX: ffffaee94d83a000
[ 9959.053753] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[ 9959.053754] RBP: ffff90f9d03b6000 R08: 0000000000b71b00 R09: ffff9118ffd72880
[ 9959.053755] R10: 000000000164e364 R11: 0000000002954793 R12: 0000000000000001
[ 9959.053756] R13: ffff90f9d17d0000 R14: 0000000000000080 R15: ffff90f9b9209f40
[ 9959.053758] FS:  00007f141a8af740(0000) GS:ffff9118ffd40000(0000) knlGS:0000000000000000
[ 9959.053759] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 9959.053760] CR2: 0000000000000000 CR3: 00000010a8d68003 CR4: 00000000007706e0
[ 9959.053762] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[ 9959.053762] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[ 9959.053764] PKRU: 55555554
[ 9959.053765] Call Trace:
[ 9959.053768]  <TASK>
[ 9959.053770]  i40e_down+0xd3/0x1e0 [i40e]
[ 9959.053784]  i40e_xdp_setup+0x1c9/0x420 [i40e]
[ 9959.053798]  ? __pfx_i40e_xdp+0x10/0x10 [i40e]
[ 9959.053811]  dev_xdp_install+0x6f/0x100
[ 9959.053818]  dev_xdp_attach+0x1e0/0x560
[ 9959.053822]  dev_change_xdp_fd+0x1ee/0x230
[ 9959.053825]  do_setlink+0x7a8/0xc10
[ 9959.053831]  ? __ata_scsi_queuecmd+0xf8/0x3a0 [libata]
[ 9959.053860]  ? __nla_validate_parse+0x141/0x190
[ 9959.053867]  rtnl_setlink+0xd8/0x170
[ 9959.053871]  ? cred_has_capability.isra.0+0x78/0x130
[ 9959.053878]  ? security_capable+0x37/0x60
[ 9959.053881]  rtnetlink_rcv_msg+0x15d/0x3d0
[ 9959.053884]  ? __pfx_rtnetlink_rcv_msg+0x10/0x10
[ 9959.053887]  netlink_rcv_skb+0x58/0x110
[ 9959.053892]  netlink_unicast+0x23f/0x360
[ 9959.053895]  netlink_sendmsg+0x252/0x4c0
[ 9959.053897]  sock_sendmsg+0x63/0x70
[ 9959.053902]  __sys_sendto+0x100/0x170
[ 9959.053904]  ? handle_mm_fault+0xe9/0x2d0
[ 9959.053910]  ? do_user_addr_fault+0x1da/0x690
[ 9959.053916]  __x64_sys_sendto+0x24/0x30
[ 9959.053918]  do_syscall_64+0x3c/0x90
[ 9959.053924]  entry_SYSCALL_64_after_hwframe+0x72/0xdc
[ 9959.053928] RIP: 0033:0x7f141a754b30
[ 9959.053930] Code: ff ff 64 89 02 eb bd 0f 1f 00 f3 0f 1e fa 41 89 ca 64 8b 04 25 18 00 00 00 85 c0 75 1d 45 31 c9 45 31 c0 b8 2c 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 68 c3 0f 1f 80 00 00 00 00 41 54 48 83 ec 20
[ 9959.053931] RSP: 002b:00007fff81898608 EFLAGS: 00000246 ORIG_RAX: 000000000000002c
[ 9959.053933] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f141a754b30
[ 9959.053934] RDX: 0000000000000034 RSI: 00007fff818986d0 RDI: 0000000000000006
[ 9959.053935] RBP: 0000000000000006 R08: 0000000000000000 R09: 0000000000000000
[ 9959.053936] R10: 0000000000000000 R11: 0000000000000246 R12: 00007fff81898650
[ 9959.053937] R13: 0000000000000000 R14: 0000000000000006 R15: 00007fff818986d0
[ 9959.053938]  </TASK>
[ 9959.053939] Modules linked in: tls snd_seq_dummy snd_hrtimer snd_seq snd_timer snd_seq_device snd soundcore nft_fib_inet nft_fib_ipv4 nft_fib_ipv6 nft_fib nft_reject_inet nf_reject_ipv4 nf_reject_ipv6 nft_reject nft_ct nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 ip_set rfkill nf_tables nfnetlink qrtr vfat fat intel_rapl_msr intel_rapl_common intel_uncore_frequency intel_uncore_frequency_common isst_if_common irdma ice skx_edac nfit libnvdimm x86_pkg_temp_thermal intel_powerclamp coretemp ipmi_ssif iTCO_wdt rapl ib_uverbs iTCO_vendor_support intel_cstate intel_uncore ib_core pcspkr i2c_i801 joydev mei_me mei i2c_smbus lpc_ich ioatdma intel_pch_thermal acpi_ipmi ipmi_si acpi_pad acpi_power_meter xfs libcrc32c ast sd_mod t10_pi crc64_rocksoft_generic drm_kms_helper crc64_rocksoft crc64 sg syscopyarea sysfillrect sysimgblt drm_shmem_helper i40e drm ixgbe ahci libahci crct10dif_pclmul crc32_pclmul igb crc32c_intel libata ghash_clmulni_intel sha512_ssse3 i2c_algo_bit mdio
[ 9959.053993]  dca wmi dm_mirror dm_region_hash dm_log dm_mod ipmi_devintf ipmi_msghandler fuse
[ 9959.054000] CR2: 0000000000000000
diff mbox series

Patch

diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c
index 53d0083e35da..94ff72d38e06 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_main.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
@@ -50,6 +50,8 @@  static int i40e_veb_get_bw_info(struct i40e_veb *veb);
 static int i40e_get_capabilities(struct i40e_pf *pf,
 				 enum i40e_admin_queue_opc list_type);
 static bool i40e_is_total_port_shutdown_enabled(struct i40e_pf *pf);
+static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi,
+					      bool is_xdp);
 
 /* i40e_pci_tbl - PCI Device ID Table
  *
@@ -3563,11 +3565,17 @@  static int i40e_configure_rx_ring(struct i40e_ring *ring)
 	/* clear the context structure first */
 	memset(&rx_ctx, 0, sizeof(rx_ctx));
 
-	if (ring->vsi->type == I40E_VSI_MAIN)
-		xdp_rxq_info_unreg_mem_model(&ring->xdp_rxq);
+	if (ring->vsi->type == I40E_VSI_MAIN) {
+		if (!xdp_rxq_info_is_reg(&ring->xdp_rxq))
+			xdp_rxq_info_reg(&ring->xdp_rxq, ring->netdev,
+					 ring->queue_index,
+					 ring->q_vector->napi.napi_id);
+	}
 
 	ring->xsk_pool = i40e_xsk_pool(ring);
 	if (ring->xsk_pool) {
+		xdp_rxq_info_unreg_mem_model(&ring->xdp_rxq);
+
 		ring->rx_buf_len =
 		  xsk_pool_get_rx_frame_size(ring->xsk_pool);
 		/* For AF_XDP ZC, we disallow packets to span on
@@ -13305,6 +13313,34 @@  static netdev_features_t i40e_features_check(struct sk_buff *skb,
 	return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
 }
 
+/**
+ * i40e_vsi_assign_bpf_prog - set or clear bpf prog pointer on VSI
+ * @vsi: VSI to changed
+ * @prog: XDP program
+ **/
+static void i40e_vsi_assign_bpf_prog(struct i40e_vsi *vsi,
+						 struct bpf_prog *prog)
+{
+	int i;
+
+	for (i = 0; i < vsi->num_queue_pairs; i++)
+		WRITE_ONCE(vsi->rx_rings[i]->xdp_prog, vsi->xdp_prog);
+}
+
+/**
+ * i40e_vsi_rx_napi_schedule - Schedule napi on RX queues from VSI
+ * @vsi: VSI to schedule napi on
+ */
+static void i40e_vsi_rx_napi_schedule(struct i40e_vsi *vsi)
+{
+	int i;
+
+	for (i = 0; i < vsi->num_queue_pairs; i++)
+		if (vsi->xdp_rings[i]->xsk_pool)
+			(void)i40e_xsk_wakeup(vsi->netdev, i,
+					      XDP_WAKEUP_RX);
+}
+
 /**
  * i40e_xdp_setup - add/remove an XDP program
  * @vsi: VSI to changed
@@ -13315,10 +13351,12 @@  static int i40e_xdp_setup(struct i40e_vsi *vsi, struct bpf_prog *prog,
 			  struct netlink_ext_ack *extack)
 {
 	int frame_size = vsi->netdev->mtu + ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN;
+	bool is_xdp_enabled = i40e_enabled_xdp_vsi(vsi);
+	bool if_running = netif_running(vsi->netdev);
+	bool need_reinit = is_xdp_enabled != !!prog;
 	struct i40e_pf *pf = vsi->back;
 	struct bpf_prog *old_prog;
-	bool need_reset;
-	int i;
+	int ret = 0;
 
 	/* Don't allow frames that span over multiple buffers */
 	if (frame_size > i40e_calculate_vsi_rx_buf_len(vsi)) {
@@ -13326,35 +13364,59 @@  static int i40e_xdp_setup(struct i40e_vsi *vsi, struct bpf_prog *prog,
 		return -EINVAL;
 	}
 
-	/* When turning XDP on->off/off->on we reset and rebuild the rings. */
-	need_reset = (i40e_enabled_xdp_vsi(vsi) != !!prog);
-
-	if (need_reset)
-		i40e_prep_for_reset(pf);
-
 	/* VSI shall be deleted in a moment, just return EINVAL */
 	if (test_bit(__I40E_IN_REMOVE, pf->state))
 		return -EINVAL;
 
 	old_prog = xchg(&vsi->xdp_prog, prog);
 
-	if (need_reset) {
-		if (!prog)
-			/* Wait until ndo_xsk_wakeup completes. */
-			synchronize_rcu();
-		i40e_reset_and_rebuild(pf, true, true);
+	if (!need_reinit)
+		goto assign_prog;
+
+	if (if_running && !test_and_set_bit(__I40E_VSI_DOWN, vsi->state))
+		i40e_down(vsi);
+
+	vsi = i40e_vsi_reinit_setup(vsi, true);
+
+	if (!vsi) {
+		NL_SET_ERR_MSG_MOD(extack, "Failed to reinitialize VSI during XDP setup");
+		ret = -EIO;
+		goto err_vsi_setup;
 	}
 
-	if (!i40e_enabled_xdp_vsi(vsi) && prog) {
-		if (i40e_realloc_rx_bi_zc(vsi, true))
-			return -ENOMEM;
-	} else if (i40e_enabled_xdp_vsi(vsi) && !prog) {
-		if (i40e_realloc_rx_bi_zc(vsi, false))
-			return -ENOMEM;
+	/* allocate descriptors */
+	ret = i40e_vsi_setup_tx_resources(vsi);
+	if (ret) {
+		NL_SET_ERR_MSG_MOD(extack, "Failed to configure TX resources during XDP setup");
+		goto err_setup_tx;
+	}
+	ret = i40e_vsi_setup_rx_resources(vsi);
+	if (ret) {
+		NL_SET_ERR_MSG_MOD(extack, "Failed to configure RX resources during XDP setup");
+		goto err_setup_rx;
 	}
 
-	for (i = 0; i < vsi->num_queue_pairs; i++)
-		WRITE_ONCE(vsi->rx_rings[i]->xdp_prog, vsi->xdp_prog);
+	if (!is_xdp_enabled && prog)
+		ret = i40e_realloc_rx_bi_zc(vsi, true);
+	else if (is_xdp_enabled && !prog)
+		ret = i40e_realloc_rx_bi_zc(vsi, false);
+
+	if (ret) {
+		NL_SET_ERR_MSG_MOD(extack, "Failed to reallocate RX resources during XDP setup");
+		goto err_vsi_setup;
+	}
+
+	if (if_running) {
+		ret = i40e_up(vsi);
+
+		if (ret) {
+			NL_SET_ERR_MSG_MOD(extack, "Failed to open VSI during XDP setup");
+			goto err_vsi_setup;
+		}
+	}
+
+assign_prog:
+	i40e_vsi_assign_bpf_prog(vsi, prog);
 
 	if (old_prog)
 		bpf_prog_put(old_prog);
@@ -13362,13 +13424,20 @@  static int i40e_xdp_setup(struct i40e_vsi *vsi, struct bpf_prog *prog,
 	/* Kick start the NAPI context if there is an AF_XDP socket open
 	 * on that queue id. This so that receiving will start.
 	 */
-	if (need_reset && prog)
-		for (i = 0; i < vsi->num_queue_pairs; i++)
-			if (vsi->xdp_rings[i]->xsk_pool)
-				(void)i40e_xsk_wakeup(vsi->netdev, i,
-						      XDP_WAKEUP_RX);
+	if (need_reinit && prog)
+		i40e_vsi_rx_napi_schedule(vsi);
 
 	return 0;
+
+err_setup_rx:
+	i40e_vsi_free_rx_resources(vsi);
+err_setup_tx:
+	i40e_vsi_free_tx_resources(vsi);
+err_vsi_setup:
+	i40e_do_reset(pf, I40E_PF_RESET_FLAG, true);
+	i40e_vsi_assign_bpf_prog(vsi, old_prog);
+
+	return ret;
 }
 
 /**
@@ -14310,13 +14379,14 @@  static int i40e_vsi_setup_vectors(struct i40e_vsi *vsi)
 /**
  * i40e_vsi_reinit_setup - return and reallocate resources for a VSI
  * @vsi: pointer to the vsi.
+ * @is_xdp: flag indicating if this is reinit during XDP setup
  *
  * This re-allocates a vsi's queue resources.
  *
  * Returns pointer to the successfully allocated and configured VSI sw struct
  * on success, otherwise returns NULL on failure.
  **/
-static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
+static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi, bool is_xdp)
 {
 	u16 alloc_queue_pairs;
 	struct i40e_pf *pf;
@@ -14352,12 +14422,14 @@  static struct i40e_vsi *i40e_vsi_reinit_setup(struct i40e_vsi *vsi)
 	/* Update the FW view of the VSI. Force a reset of TC and queue
 	 * layout configurations.
 	 */
-	enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
-	pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
-	pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
-	i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
-	if (vsi->type == I40E_VSI_MAIN)
-		i40e_rm_default_mac_filter(vsi, pf->hw.mac.perm_addr);
+	if (!is_xdp) {
+		enabled_tc = pf->vsi[pf->lan_vsi]->tc_config.enabled_tc;
+		pf->vsi[pf->lan_vsi]->tc_config.enabled_tc = 0;
+		pf->vsi[pf->lan_vsi]->seid = pf->main_vsi_seid;
+		i40e_vsi_config_tc(pf->vsi[pf->lan_vsi], enabled_tc);
+		if (vsi->type == I40E_VSI_MAIN)
+			i40e_rm_default_mac_filter(vsi, pf->hw.mac.perm_addr);
+	}
 
 	/* assign it some queues */
 	ret = i40e_alloc_rings(vsi);
@@ -15123,7 +15195,8 @@  static int i40e_setup_pf_switch(struct i40e_pf *pf, bool reinit, bool lock_acqui
 		if (pf->lan_vsi == I40E_NO_VSI)
 			vsi = i40e_vsi_setup(pf, I40E_VSI_MAIN, uplink_seid, 0);
 		else if (reinit)
-			vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi]);
+			vsi = i40e_vsi_reinit_setup(pf->vsi[pf->lan_vsi],
+						    false);
 		if (!vsi) {
 			dev_info(&pf->pdev->dev, "setup of MAIN VSI failed\n");
 			i40e_cloud_filter_exit(pf);