From: "Kirill A. Shutemov" <kirill@shutemov.name>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>,
kbuild-all@01.org, Johannes Weiner <hannes@cmpxchg.org>,
kbuild test robot <fengguang.wu@intel.com>,
Linux Memory Management List <linux-mm@kvack.org>
Subject: Re: [mmotm:master 162/365] mm/mmap.c:2857:2: warning: right shift count >= width of type
Date: Sat, 17 Jan 2015 03:21:37 +0200 [thread overview]
Message-ID: <20150117012137.GA3614@node.dhcp.inet.fi> (raw)
In-Reply-To: <201501170849.XjPhPqfm%fengguang.wu@intel.com>
On Sat, Jan 17, 2015 at 08:30:50AM +0800, kbuild test robot wrote:
> tree: git://git.cmpxchg.org/linux-mmotm.git master
> head: 59f7a5af1a6c9e19c6e5152f26548c494a2d7338
> commit: c824a9dc5e8821ce083652d4f728e804161d3dd0 [162/365] mm: account pmd page tables to the process
> config: tile-tilegx_defconfig (attached as .config)
> reproduce:
> wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
> chmod +x ~/bin/make.cross
> git checkout c824a9dc5e8821ce083652d4f728e804161d3dd0
> # save the attached .config to linux build tree
> make.cross ARCH=tile
>
> All warnings:
>
> mm/mmap.c: In function 'exit_mmap':
> >> mm/mmap.c:2857:2: warning: right shift count >= width of type [enabled by default]
>
> vim +2857 mm/mmap.c
>
> 2841 free_pgtables(&tlb, vma, FIRST_USER_ADDRESS, USER_PGTABLES_CEILING);
> 2842 tlb_finish_mmu(&tlb, 0, -1);
> 2843
> 2844 /*
> 2845 * Walk the list again, actually closing and freeing it,
> 2846 * with preemption enabled, without holding any MM locks.
> 2847 */
> 2848 while (vma) {
> 2849 if (vma->vm_flags & VM_ACCOUNT)
> 2850 nr_accounted += vma_pages(vma);
> 2851 vma = remove_vma(vma);
> 2852 }
> 2853 vm_unacct_memory(nr_accounted);
> 2854
> 2855 WARN_ON(atomic_long_read(&mm->nr_ptes) >
> 2856 round_up(FIRST_USER_ADDRESS, PMD_SIZE) >> PMD_SHIFT);
> > 2857 WARN_ON(mm_nr_pmds(mm) >
> 2858 round_up(FIRST_USER_ADDRESS, PUD_SIZE) >> PUD_SHIFT);
Okay, FIRST_USER_ADDRESS is 0. roundup_up() is int too in this case.
PUD_SHIFT is 32.
I think the best way to fix this warning is to make FIRST_USER_ADDRESS
unsigned long. And better on all architectures.
prev parent reply other threads:[~2015-01-17 1:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-17 0:30 [mmotm:master 162/365] mm/mmap.c:2857:2: warning: right shift count >= width of type kbuild test robot
2015-01-17 1:21 ` Kirill A. Shutemov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150117012137.GA3614@node.dhcp.inet.fi \
--to=kirill@shutemov.name \
--cc=akpm@linux-foundation.org \
--cc=fengguang.wu@intel.com \
--cc=hannes@cmpxchg.org \
--cc=kbuild-all@01.org \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-mm@kvack.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.