mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
ice: access @pp through netmem_desc instead of page
To eliminate the use of struct page in page pool, the page pool users should use netmem descriptor and APIs instead. Make ice driver access @pp through netmem_desc instead of page. Signed-off-by: Byungchul Park <byungchul@sk.com> Tested-by: Alexander Nowlin <alexander.nowlin@intel.com> Tested-by: Rinitha S <sx.rinitha@intel.com> Reviewed-by: David Hildenbrand (Arm) <david@kernel.org> Signed-off-by: Jacob Keller <jacob.e.keller@intel.com> Link: https://patch.msgid.link/20260430-jk-iwl-net-next-2026-04-30-v1-12-6f27ae1cd073@intel.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
3f923a48da
commit
b9fa4b9e05
|
|
@ -1251,7 +1251,7 @@ static int ice_lbtest_receive_frames(struct ice_rx_ring *rx_ring)
|
|||
rx_buf = &rx_ring->rx_fqes[i];
|
||||
page = __netmem_to_page(rx_buf->netmem);
|
||||
received_buf = page_address(page) + rx_buf->offset +
|
||||
page->pp->p.offset;
|
||||
pp_page_to_nmdesc(page)->pp->p.offset;
|
||||
|
||||
if (ice_lbtest_check_frame(received_buf))
|
||||
valid_frames++;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user