diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-09-08 09:54:49 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-09-08 20:21:15 +0200 |
commit | 0253398ca1df7e1d2bfbb452175c964a0862482c (patch) | |
tree | 7cf73b28c97b42871616f64427a9a02b8cdc5eef /drivers | |
parent | 23952a96ae738277f3139b63d622e22984589031 (diff) | |
download | linux-3.10-0253398ca1df7e1d2bfbb452175c964a0862482c.tar.gz linux-3.10-0253398ca1df7e1d2bfbb452175c964a0862482c.tar.bz2 linux-3.10-0253398ca1df7e1d2bfbb452175c964a0862482c.zip |
xen: fix 2.6.27-rc5 xen balloon driver warnings
Set the class so it doesn't clash with the normal memory class.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
===================================================================
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/xen/balloon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c index d4427cb8697..2e15da5459c 100644 --- a/drivers/xen/balloon.c +++ b/drivers/xen/balloon.c @@ -60,7 +60,7 @@ #define PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10)) -#define BALLOON_CLASS_NAME "memory" +#define BALLOON_CLASS_NAME "xen_memory" struct balloon_stats { /* We aim for 'current allocation' == 'target allocation'. */ |