Re: [PATCH 11/11] afs: Fix dirty-region encoding on ppc32 with 64K pages

From: David Howells
Date: Thu Oct 29 2020 - 07:48:48 EST


David Howells <dhowells@xxxxxxxxxx> wrote:

> +static inline unsigned int afs_page_dirty_resolution(void)
> +{
> + long shift = PAGE_SHIFT - (__AFS_PAGE_PRIV_SHIFT - 1);

This should be int, not long, in case we get an explicitly unsigned int number
included in the mix (say from thp_order() with THP support).

David