From: Andrew Morton <akpm@google.com>
To: Seth Jennings <sjenning@linux.vnet.ibm.com>
Cc: Dan Magenheimer <dan.magenheimer@oracle.com>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
jeremy@goop.org, hughd@google.com, ngupta@vflare.org,
konrad.wilk@oracle.com, JBeulich@novell.com,
kurt.hackel@oracle.com, npiggin@kernel.dk, riel@redhat.com,
hannes@cmpxchg.org, matthew@wil.cx, chris.mason@oracle.com,
kamezawa.hiroyu@jp.fujitsu.com, jackdachef@gmail.com,
cyclonusj@gmail.com, levinsasha928@gmail.com
Subject: Re: [PATCH V9 3/6] mm: frontswap: core frontswap functionality
Date: Tue, 13 Sep 2011 13:51:07 -0700 [thread overview]
Message-ID: <20110913135107.295aecfe.akpm@google.com> (raw)
In-Reply-To: <4E6FBFC4.1080901@linux.vnet.ibm.com>
On Tue, 13 Sep 2011 15:40:36 -0500
Seth Jennings <sjenning@linux.vnet.ibm.com> wrote:
> Hey Dan,
>
> I get the following compile warnings:
>
> mm/frontswap.c: In function ‘init_frontswap’:
> mm/frontswap.c:264:5: warning: passing argument 4 of ‘debugfs_create_size_t’ from incompatible pointer type
> include/linux/debugfs.h:68:16: note: expected ‘size_t *’ but argument is of type ‘long unsigned int *’
> mm/frontswap.c:266:5: warning: passing argument 4 of ‘debugfs_create_size_t’ from incompatible pointer type
> include/linux/debugfs.h:68:16: note: expected ‘size_t *’ but argument is of type ‘long unsigned int *’
> mm/frontswap.c:268:5: warning: passing argument 4 of ‘debugfs_create_size_t’ from incompatible pointer type
> include/linux/debugfs.h:68:16: note: expected ‘size_t *’ but argument is of type ‘long unsigned int *’
> mm/frontswap.c:270:5: warning: passing argument 4 of ‘debugfs_create_size_t’ from incompatible pointer type
> include/linux/debugfs.h:68:16: note: expected ‘size_t *’ but argument is of type ‘long unsigned int *’
>
> size_t is platform dependent but is generally "unsigned int"
> for 32-bit and "unsigned long" for 64-bit.
>
> I think just typecasting these to size_t * would fix it.
That's very risky.
> On 09/13/2011 12:40 PM, Dan Magenheimer wrote:
> > +#ifdef CONFIG_DEBUG_FS
> > + struct dentry *root = debugfs_create_dir("frontswap", NULL);
> > + if (root == NULL)
> > + return -ENXIO;
> > + debugfs_create_size_t("gets", S_IRUGO,
> > + root, &frontswap_gets);
> > + debugfs_create_size_t("succ_puts", S_IRUGO,
> > + root, &frontswap_succ_puts);
> > + debugfs_create_size_t("puts", S_IRUGO,
> > + root, &frontswap_failed_puts);
> > + debugfs_create_size_t("invalidates", S_IRUGO,
> > + root, &frontswap_invalidates);
> > +#endif
Make them u32 and use debugfs_create_x32(), perhaps. Or create
debugfs_create_ulong().
WARNING: multiple messages have this Message-ID (diff)
From: Andrew Morton <akpm@google.com>
To: Seth Jennings <sjenning@linux.vnet.ibm.com>
Cc: Dan Magenheimer <dan.magenheimer@oracle.com>,
linux-kernel@vger.kernel.org, linux-mm@kvack.org,
jeremy@goop.org, hughd@google.com, ngupta@vflare.org,
konrad.wilk@oracle.com, JBeulich@novell.com,
kurt.hackel@oracle.com, npiggin@kernel.dk, riel@redhat.com,
hannes@cmpxchg.org, matthew@wil.cx, chris.mason@oracle.com,
kamezawa.hiroyu@jp.fujitsu.com, jackdachef@gmail.com,
cyclonusj@gmail.com, levinsasha928@gmail.com
Subject: Re: [PATCH V9 3/6] mm: frontswap: core frontswap functionality
Date: Tue, 13 Sep 2011 13:51:07 -0700 [thread overview]
Message-ID: <20110913135107.295aecfe.akpm@google.com> (raw)
In-Reply-To: <4E6FBFC4.1080901@linux.vnet.ibm.com>
On Tue, 13 Sep 2011 15:40:36 -0500
Seth Jennings <sjenning@linux.vnet.ibm.com> wrote:
> Hey Dan,
>
> I get the following compile warnings:
>
> mm/frontswap.c: In function a??init_frontswapa??:
> mm/frontswap.c:264:5: warning: passing argument 4 of a??debugfs_create_size_ta?? from incompatible pointer type
> include/linux/debugfs.h:68:16: note: expected a??size_t *a?? but argument is of type a??long unsigned int *a??
> mm/frontswap.c:266:5: warning: passing argument 4 of a??debugfs_create_size_ta?? from incompatible pointer type
> include/linux/debugfs.h:68:16: note: expected a??size_t *a?? but argument is of type a??long unsigned int *a??
> mm/frontswap.c:268:5: warning: passing argument 4 of a??debugfs_create_size_ta?? from incompatible pointer type
> include/linux/debugfs.h:68:16: note: expected a??size_t *a?? but argument is of type a??long unsigned int *a??
> mm/frontswap.c:270:5: warning: passing argument 4 of a??debugfs_create_size_ta?? from incompatible pointer type
> include/linux/debugfs.h:68:16: note: expected a??size_t *a?? but argument is of type a??long unsigned int *a??
>
> size_t is platform dependent but is generally "unsigned int"
> for 32-bit and "unsigned long" for 64-bit.
>
> I think just typecasting these to size_t * would fix it.
That's very risky.
> On 09/13/2011 12:40 PM, Dan Magenheimer wrote:
> > +#ifdef CONFIG_DEBUG_FS
> > + struct dentry *root = debugfs_create_dir("frontswap", NULL);
> > + if (root == NULL)
> > + return -ENXIO;
> > + debugfs_create_size_t("gets", S_IRUGO,
> > + root, &frontswap_gets);
> > + debugfs_create_size_t("succ_puts", S_IRUGO,
> > + root, &frontswap_succ_puts);
> > + debugfs_create_size_t("puts", S_IRUGO,
> > + root, &frontswap_failed_puts);
> > + debugfs_create_size_t("invalidates", S_IRUGO,
> > + root, &frontswap_invalidates);
> > +#endif
Make them u32 and use debugfs_create_x32(), perhaps. Or create
debugfs_create_ulong().
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2011-09-13 20:52 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-13 17:40 [PATCH V9 3/6] mm: frontswap: core frontswap functionality Dan Magenheimer
2011-09-13 17:40 ` Dan Magenheimer
2011-09-13 20:40 ` Seth Jennings
2011-09-13 20:40 ` Seth Jennings
2011-09-13 20:50 ` Dan Magenheimer
2011-09-13 20:50 ` Dan Magenheimer
2011-09-13 21:59 ` Seth Jennings
2011-09-13 21:59 ` Seth Jennings
2011-09-13 20:51 ` Andrew Morton [this message]
2011-09-13 20:51 ` Andrew Morton
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=20110913135107.295aecfe.akpm@google.com \
--to=akpm@google.com \
--cc=JBeulich@novell.com \
--cc=chris.mason@oracle.com \
--cc=cyclonusj@gmail.com \
--cc=dan.magenheimer@oracle.com \
--cc=hannes@cmpxchg.org \
--cc=hughd@google.com \
--cc=jackdachef@gmail.com \
--cc=jeremy@goop.org \
--cc=kamezawa.hiroyu@jp.fujitsu.com \
--cc=konrad.wilk@oracle.com \
--cc=kurt.hackel@oracle.com \
--cc=levinsasha928@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=matthew@wil.cx \
--cc=ngupta@vflare.org \
--cc=npiggin@kernel.dk \
--cc=riel@redhat.com \
--cc=sjenning@linux.vnet.ibm.com \
/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.