On Wed, 29 Jul 2020 06:20:47 +0000 Li,Rongqing wrote: > > Looks like something that belongs in a common header not (potentially > > multiple) C sources. > > Not clear, how should I change?
Can you add something like: static inline void prefetch_page_address(struct page *page) { #if defined(WANT_PAGE_VIRTUAL) || defined(HASHED_PAGE_VIRTUAL) prefetch(page); #endif } to mm.h or prefetch.h or i40e.h or some other header? That's preferred over adding #ifs directly in the source code.