From: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
To: Pekka Enberg <penberg@kernel.org>
Cc: Anton Vorontsov <anton.vorontsov@linaro.org>, linux-mm@kvack.org
Subject: Re: [PATCH 2/2] vmevent: pass right attribute to vmevent_sample_attr()
Date: Fri, 25 May 2012 10:15:06 +0200 [thread overview]
Message-ID: <201205251015.06924.b.zolnierkie@samsung.com> (raw)
In-Reply-To: <alpine.LFD.2.02.1205251019091.3897@tux.localdomain>
On Friday 25 May 2012 09:19:45 Pekka Enberg wrote:
> On Wed, 23 May 2012, Bartlomiej Zolnierkiewicz wrote:
>
> > From: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> > Subject: [PATCH] vmevent: pass right attribute to vmevent_sample_attr()
> >
> > Pass "config attribute" (&watch->config->attrs[i]) not "sample
> > attribute" (&watch->sample_attrs[i]) to vmevent_sample_attr() to
> > allow use of the original attribute value in vmevent_attr_sample_fn().
> >
> > Cc: Anton Vorontsov <anton.vorontsov@linaro.org>
> > Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> > Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>
> Looks good. I'm getting rejects for this. What tree did you use to
> generate the patch?
Ah, sorry for that. I generated this patch with Anton's "vmevent: Implement
special low-memory attribute" patch applied.. Here is a version against
vanilla vmevent-core:
From: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Subject: [PATCH] vmevent: pass right attribute to vmevent_sample_attr()
Pass "config attribute" (&watch->config->attrs[i]) not "sample
attribute" (&watch->sample_attrs[i]) to vmevent_sample_attr() to
allow use of the original attribute value in vmevent_attr_sample_fn().
Cc: Anton Vorontsov <anton.vorontsov@linaro.org>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
Without this patch vmevent_attr_lowmem_pages() always returns 0.
mm/vmevent.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
Index: b/mm/vmevent.c
===================================================================
--- a/mm/vmevent.c 2012-05-25 10:13:49.000000000 +0200
+++ b/mm/vmevent.c 2012-05-25 10:13:56.231805967 +0200
@@ -31,6 +31,7 @@
*/
unsigned long nr_attrs;
struct vmevent_attr *sample_attrs;
+ struct vmevent_attr *config_attrs[VMEVENT_CONFIG_MAX_ATTRS];
/* sampling */
struct timer_list timer;
@@ -170,7 +171,8 @@
for (i = 0; i < watch->nr_attrs; i++) {
struct vmevent_attr *attr = &watch->sample_attrs[i];
- attr->value = vmevent_sample_attr(watch, attr);
+ attr->value = vmevent_sample_attr(watch,
+ watch->config_attrs[i]);
}
atomic_set(&watch->pending, 1);
@@ -313,6 +315,9 @@
attrs[nr].type = attr->type;
attrs[nr].value = 0;
attrs[nr].state = 0;
+
+ watch->config_attrs[nr] = attr;
+
nr++;
}
--
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:[~2012-05-25 8:15 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-23 7:28 Bartlomiej Zolnierkiewicz
2012-05-25 7:19 ` Pekka Enberg
2012-05-25 8:15 ` Bartlomiej Zolnierkiewicz [this message]
2012-05-25 9:11 ` Pekka Enberg
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=201205251015.06924.b.zolnierkie@samsung.com \
--to=b.zolnierkie@samsung.com \
--cc=anton.vorontsov@linaro.org \
--cc=linux-mm@kvack.org \
--cc=penberg@kernel.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