|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v6 1/8] mm: Place unscrubbed pages at the end of pagelist
Hi, On 07/08/17 15:46, Boris Ostrovsky wrote: On 08/07/2017 06:45 AM, Julien Grall wrote:Hi Boris, I would have appreciated to be CCed as maintainer of the ARM bits... Please use scripts/get_maintainers.pl in the future.Ugh, sorry about that. (I did test builds for both ARM64 and ARM32, if this make my transgression any less serious ;-))On 04/08/17 18:05, Boris Ostrovsky wrote:. so that it's easy to find pages that need to be scrubbed (those pages arePointless . If you look at it, all of them use bool semantic. Now you mix bool and int. We are trying to remove that in the new code, so please don't introduce new one. + + /* + * Index of the first *possibly* unscrubbed page in the buddy. + * One more than maximum possible order to accommodate + * INVALID_DIRTY_IDX. + */ +#define INVALID_DIRTY_IDX ((1UL << (MAX_ORDER + 1)) - 1) + unsigned long first_dirty:MAX_ORDER + 1;We need to make sure that this union will not be bigger than unsigned long. Otherwise this will limit lower down the maximum amount of memory we support. So this likely means a BUILD_BUG_ON(....).Are you concerned that (MAX_ORDER+1) will be larger than sizeof(unsigned long)? If yes, the compiler should complain anyway, shouldn't it? I am more concerned about the sizeof of the union u to be larger than unsigned long. first_dirty should not be greater than 63 bits (or 31 bits for 32-bits architecture). Otherwise likely the compiler will add a padding between need_tlbflush and first_dirty. This would increase the page_info by 4/8 byte. The BUILD_BUG_ON(...) would be here to catch such error. Cheers, -- Julien Grall _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |