linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: Randy Dunlap <rdunlap@infradead.org>,
	Linux MM <linux-mm@kvack.org>,
	 Andrew Morton <akpm@linux-foundation.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH -next] mm/hugetlb.c: fix printk format warning for 32-bit phys_addr_t
Date: Wed, 18 Mar 2020 19:37:58 -0700	[thread overview]
Message-ID: <be55765b11f925f15f338152399923e169a20f53.camel@perches.com> (raw)
In-Reply-To: <ff8cc527-e02e-4f4b-56cd-a94ac5e527a3@infradead.org>

On Wed, 2020-03-18 at 19:11 -0700, Randy Dunlap wrote:
> On 3/18/20 7:04 PM, Joe Perches wrote:
> > On Wed, 2020-03-18 at 14:33 -0700, Randy Dunlap wrote:
> > > From: Randy Dunlap <rdunlap@infradead.org>
> > > 
> > > Fix printk format warnings when phys_addr_t is 32 bits, i.e.,
> > > CONFIG_PHYS_ADDR_T_64BIT is not set/enabled.
> > []
> > > ../mm/hugetlb.c:5472:73: note: format string is defined here
> > >     pr_warn("hugetlb_cma: reservation failed: err %d, node %d, [%llu, %llu)",
> > >                                                                       ~~~^
> > []
> > > --- linux-next-20200318.orig/mm/hugetlb.c
> > > +++ linux-next-20200318/mm/hugetlb.c
> > > @@ -5469,8 +5469,10 @@ void __init hugetlb_cma_reserve(int orde
> > >  					     0, false,
> > >  					     "hugetlb", &hugetlb_cma[nid]);
> > >  		if (res) {
> > > -			pr_warn("hugetlb_cma: reservation failed: err %d, node %d, [%llu, %llu)",
> > > -				res, nid, PFN_PHYS(min_pfn), PFN_PHYS(max_pfn));
> > > +			phys_addr_t begpa = PFN_PHYS(min_pfn);
> > > +			phys_addr_t endpa = PFN_PHYS(max_pfn);
> > > +			pr_warn("hugetlb_cma: reservation failed: err %d, node %d, [%pap, %pap)",
> > > +				res, nid, &begpa, &endpa);
> > 
> > You might correct the odd use of an open bracket
> > then close parenthesis and add a new line too
> 
> Definitely needs a newline char.
> 
> I'm fairly sure that the [begin, end) notation is done on purpose, meaning
> <begin> is included in the range and <end> is not included in the range.

OK, that seems a pretty obscure and not obvious use of
interval notation, at least to me. (18 uses treewide ?)

Maybe it could be documented somewhere?

It's an odd pattern to grep.  Maybe I missed some.

$ git grep -P '".*[\[\{]\s*%\d*[ldux]+\s*[/:,\.\-]?\s*%\d*[ldux]+\).*"'
arch/x86/kernel/alternative.c:  DUMP_BYTES(instr, a->instrlen, "%px: [%d:%d) optimized NOPs: ",
drivers/clk/qcom/clk-alpha-pll.c:               pr_err("%s: Rounded rate %lu not within range [%lu, %lu)\n",
fs/ext4/extents_status.c:               printk(KERN_DEBUG " [%u/%u) %llu %x",
fs/ext4/extents_status.c:                       es_debug("%u cached by [%u/%u) %llu %x\n",
fs/ext4/extents_status.c:       es_debug("add [%u/%u) %llu %x to extent status tree of inode %lu\n",
fs/ext4/extents_status.c:                       es_debug("%u cached by [%u/%u)\n",
fs/ext4/extents_status.c:       es_debug("remove [%u/%u) from extent status tree of inode %lu\n",
fs/nilfs2/cpfile.c:                       "cannot delete checkpoints: invalid range [%llu, %llu)",
fs/nilfs2/dat.c:                          "%s: invalid vblocknr = %llu, [%llu, %llu)",
include/trace/events/ext4.h:    TP_printk("dev %d,%d ino %lu es [%u/%u) mapped %llu status %s",
include/trace/events/ext4.h:    TP_printk("dev %d,%d ino %lu es [%lld/%lld)",
include/trace/events/ext4.h:    TP_printk("dev %d,%d ino %lu es [%u/%u) mapped %llu status %s",
include/trace/events/ext4.h:    TP_printk("dev %d,%d ino %lu found %d [%u/%u) %llu %s",
include/trace/events/ext4.h:    TP_printk("dev %d,%d ino %lu es [%u/%u) mapped %llu status %s "
mm/hugetlb.c:                   pr_warn("hugetlb_cma: reservation failed: err %d, node %d, [%llu, %llu)",
mm/kasan/report.c:              pr_err(" [%lu, %lu) '%s'", offset, offset + size, token);
mm/page_alloc.c:                pr_info_ratelimited("%s: [%lx, %lx) PFNs busy\n",
tools/testing/selftests/kvm/demand_paging_test.c:               PER_VCPU_DEBUG("Added VCPU %d with test mem gpa [%lx, %lx)\n",



  reply	other threads:[~2020-03-19  2:39 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-18 21:33 Randy Dunlap
2020-03-19  2:04 ` Joe Perches
2020-03-19  2:11   ` Randy Dunlap
2020-03-19  2:37     ` Joe Perches [this message]
2020-03-20  1:03       ` Randy Dunlap
2020-03-20  1:06         ` Joe Perches

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=be55765b11f925f15f338152399923e169a20f53.camel@perches.com \
    --to=joe@perches.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=rdunlap@infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox