[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20211201192622.10a2b139@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com>
Date: Wed, 1 Dec 2021 19:26:22 -0800
From: Jakub Kicinski <kuba@...nel.org>
To: Tony Nguyen <anthony.l.nguyen@...el.com>
Cc: davem@...emloft.net,
Michal Maloszewski <michal.maloszewski@...el.com>,
netdev@...r.kernel.org, sassmann@...hat.com,
Anirudh Venkataramanan <anirudh.venkataramanan@...el.com>,
Konrad Jankowski <konrad0.jankowski@...el.com>
Subject: Re: [PATCH net 2/6] iavf: Fix reporting when setting descriptor
count
On Wed, 1 Dec 2021 13:59:10 -0800 Tony Nguyen wrote:
> + if (new_tx_count != adapter->tx_desc_count) {
> + netdev_info(netdev, "Changing Tx descriptor count from %d to %d\n",
> + adapter->tx_desc_count, new_tx_count);
> + adapter->tx_desc_count = new_tx_count;
> + }
> +
> + if (new_rx_count != adapter->rx_desc_count) {
> + netdev_info(netdev, "Changing Rx descriptor count from %d to %d\n",
> + adapter->rx_desc_count, new_rx_count);
> + adapter->rx_desc_count = new_rx_count;
> + }
How is this different than the MTU change msg I _just_ complained about?
Please downgrade to dbg().
Powered by blists - more mailing lists