linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
@ 2012-06-01 16:54 Bartlomiej Zolnierkiewicz
  2012-06-01 20:26 ` KOSAKI Motohiro
  0 siblings, 1 reply; 5+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2012-06-01 16:54 UTC (permalink / raw)
  To: linux-mm; +Cc: Kyungmin Park, Matt Mackall

From: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Subject: [PATCH] proc: add ARCH_PFN_OFFSET info to /proc/meminfo

ARCH_PFN_OFFSET is needed for user-space to use together with
/proc/kpage[count,flags] interfaces.

Cc: Matt Mackall <mpm@selenic.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 fs/proc/meminfo.c |    4 ++++
 1 file changed, 4 insertions(+)

Index: b/fs/proc/meminfo.c
===================================================================
--- a/fs/proc/meminfo.c	2012-05-31 16:53:11.589706973 +0200
+++ b/fs/proc/meminfo.c	2012-05-31 17:03:17.719237120 +0200
@@ -168,6 +168,10 @@ static int meminfo_proc_show(struct seq_
 
 	hugetlb_report_meminfo(m);
 
+	seq_printf(m,
+		"ArchPFNOffset:    %6lu\n",
+		ARCH_PFN_OFFSET);
+
 	arch_report_meminfo(m);
 
 	return 0;

--
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>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
  2012-06-01 16:54 [PATCH 2/2] proc: add ARCH_PFN_OFFSET info to /proc/meminfo Bartlomiej Zolnierkiewicz
@ 2012-06-01 20:26 ` KOSAKI Motohiro
  2012-06-04  8:18   ` Bartlomiej Zolnierkiewicz
  0 siblings, 1 reply; 5+ messages in thread
From: KOSAKI Motohiro @ 2012-06-01 20:26 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz
  Cc: linux-mm, Kyungmin Park, Matt Mackall, kosaki.motohiro

(6/1/12 12:54 PM), Bartlomiej Zolnierkiewicz wrote:
> From: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
> Subject: [PATCH] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
>
> ARCH_PFN_OFFSET is needed for user-space to use together with
> /proc/kpage[count,flags] interfaces.
>
> Cc: Matt Mackall<mpm@selenic.com>
> Signed-off-by: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
> Signed-off-by: Kyungmin Park<kyungmin.park@samsung.com>
> ---
>   fs/proc/meminfo.c |    4 ++++
>   1 file changed, 4 insertions(+)
>
> Index: b/fs/proc/meminfo.c
> ===================================================================
> --- a/fs/proc/meminfo.c	2012-05-31 16:53:11.589706973 +0200
> +++ b/fs/proc/meminfo.c	2012-05-31 17:03:17.719237120 +0200
> @@ -168,6 +168,10 @@ static int meminfo_proc_show(struct seq_
>
>   	hugetlb_report_meminfo(m);
>
> +	seq_printf(m,
> +		"ArchPFNOffset:    %6lu\n",
> +		ARCH_PFN_OFFSET);
> +
>   	arch_report_meminfo(m);

NAK.

arch specific report should use arch_report_meminfo().

--
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>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
  2012-06-01 20:26 ` KOSAKI Motohiro
@ 2012-06-04  8:18   ` Bartlomiej Zolnierkiewicz
  2012-06-04  9:43     ` KOSAKI Motohiro
  0 siblings, 1 reply; 5+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2012-06-04  8:18 UTC (permalink / raw)
  To: KOSAKI Motohiro; +Cc: linux-mm, Kyungmin Park, Matt Mackall

On Friday 01 June 2012 22:26:57 KOSAKI Motohiro wrote:
> (6/1/12 12:54 PM), Bartlomiej Zolnierkiewicz wrote:
> > From: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
> > Subject: [PATCH] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
> >
> > ARCH_PFN_OFFSET is needed for user-space to use together with
> > /proc/kpage[count,flags] interfaces.
> >
> > Cc: Matt Mackall<mpm@selenic.com>
> > Signed-off-by: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
> > Signed-off-by: Kyungmin Park<kyungmin.park@samsung.com>
> > ---
> >   fs/proc/meminfo.c |    4 ++++
> >   1 file changed, 4 insertions(+)
> >
> > Index: b/fs/proc/meminfo.c
> > ===================================================================
> > --- a/fs/proc/meminfo.c	2012-05-31 16:53:11.589706973 +0200
> > +++ b/fs/proc/meminfo.c	2012-05-31 17:03:17.719237120 +0200
> > @@ -168,6 +168,10 @@ static int meminfo_proc_show(struct seq_
> >
> >   	hugetlb_report_meminfo(m);
> >
> > +	seq_printf(m,
> > +		"ArchPFNOffset:    %6lu\n",
> > +		ARCH_PFN_OFFSET);
> > +
> >   	arch_report_meminfo(m);
> 
> NAK.
> 
> arch specific report should use arch_report_meminfo().

ARCH_PFN_OFFSET is defined for all archs so I think that it makes little
sense to duplicate it in every per-arch arch_report_meminfo()..

Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung Poland R&D Center

--
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>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
  2012-06-04  8:18   ` Bartlomiej Zolnierkiewicz
@ 2012-06-04  9:43     ` KOSAKI Motohiro
  2012-06-04 10:01       ` Bartlomiej Zolnierkiewicz
  0 siblings, 1 reply; 5+ messages in thread
From: KOSAKI Motohiro @ 2012-06-04  9:43 UTC (permalink / raw)
  To: Bartlomiej Zolnierkiewicz
  Cc: KOSAKI Motohiro, linux-mm, Kyungmin Park, Matt Mackall

(6/4/12 4:18 AM), Bartlomiej Zolnierkiewicz wrote:
> On Friday 01 June 2012 22:26:57 KOSAKI Motohiro wrote:
>> (6/1/12 12:54 PM), Bartlomiej Zolnierkiewicz wrote:
>>> From: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
>>> Subject: [PATCH] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
>>>
>>> ARCH_PFN_OFFSET is needed for user-space to use together with
>>> /proc/kpage[count,flags] interfaces.
>>>
>>> Cc: Matt Mackall<mpm@selenic.com>
>>> Signed-off-by: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
>>> Signed-off-by: Kyungmin Park<kyungmin.park@samsung.com>
>>> ---
>>>    fs/proc/meminfo.c |    4 ++++
>>>    1 file changed, 4 insertions(+)
>>>
>>> Index: b/fs/proc/meminfo.c
>>> ===================================================================
>>> --- a/fs/proc/meminfo.c	2012-05-31 16:53:11.589706973 +0200
>>> +++ b/fs/proc/meminfo.c	2012-05-31 17:03:17.719237120 +0200
>>> @@ -168,6 +168,10 @@ static int meminfo_proc_show(struct seq_
>>>
>>>    	hugetlb_report_meminfo(m);
>>>
>>> +	seq_printf(m,
>>> +		"ArchPFNOffset:    %6lu\n",
>>> +		ARCH_PFN_OFFSET);
>>> +
>>>    	arch_report_meminfo(m);
>>
>> NAK.
>>
>> arch specific report should use arch_report_meminfo().
>
> ARCH_PFN_OFFSET is defined for all archs so I think that it makes little
> sense to duplicate it in every per-arch arch_report_meminfo()..

Incorrect. We are usually constant value for ARCH_PFN_OFFSET. so we don't need
any exporting.





--
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>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
  2012-06-04  9:43     ` KOSAKI Motohiro
@ 2012-06-04 10:01       ` Bartlomiej Zolnierkiewicz
  0 siblings, 0 replies; 5+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2012-06-04 10:01 UTC (permalink / raw)
  To: KOSAKI Motohiro; +Cc: linux-mm, Kyungmin Park, Matt Mackall

On Monday 04 June 2012 11:43:56 KOSAKI Motohiro wrote:
> (6/4/12 4:18 AM), Bartlomiej Zolnierkiewicz wrote:
> > On Friday 01 June 2012 22:26:57 KOSAKI Motohiro wrote:
> >> (6/1/12 12:54 PM), Bartlomiej Zolnierkiewicz wrote:
> >>> From: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
> >>> Subject: [PATCH] proc: add ARCH_PFN_OFFSET info to /proc/meminfo
> >>>
> >>> ARCH_PFN_OFFSET is needed for user-space to use together with
> >>> /proc/kpage[count,flags] interfaces.
> >>>
> >>> Cc: Matt Mackall<mpm@selenic.com>
> >>> Signed-off-by: Bartlomiej Zolnierkiewicz<b.zolnierkie@samsung.com>
> >>> Signed-off-by: Kyungmin Park<kyungmin.park@samsung.com>
> >>> ---
> >>>    fs/proc/meminfo.c |    4 ++++
> >>>    1 file changed, 4 insertions(+)
> >>>
> >>> Index: b/fs/proc/meminfo.c
> >>> ===================================================================
> >>> --- a/fs/proc/meminfo.c	2012-05-31 16:53:11.589706973 +0200
> >>> +++ b/fs/proc/meminfo.c	2012-05-31 17:03:17.719237120 +0200
> >>> @@ -168,6 +168,10 @@ static int meminfo_proc_show(struct seq_
> >>>
> >>>    	hugetlb_report_meminfo(m);
> >>>
> >>> +	seq_printf(m,
> >>> +		"ArchPFNOffset:    %6lu\n",
> >>> +		ARCH_PFN_OFFSET);
> >>> +
> >>>    	arch_report_meminfo(m);
> >>
> >> NAK.
> >>
> >> arch specific report should use arch_report_meminfo().
> >
> > ARCH_PFN_OFFSET is defined for all archs so I think that it makes little
> > sense to duplicate it in every per-arch arch_report_meminfo()..
> 
> Incorrect. We are usually constant value for ARCH_PFN_OFFSET. so we don't need
> any exporting.

Have you seen patch #1/2 ("PATCH] proc: fix kpage[count,flags] interfaces to
account for ARCH_PFN_OFFSET")?

We need to export ARCH_PFN_OFFSET to user-space to use /proc/kpage[count,flags]
an archs that make use of ARCH_PFN_OFFSET.

Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung Poland R&D Center

--
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>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-06-04 10:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-01 16:54 [PATCH 2/2] proc: add ARCH_PFN_OFFSET info to /proc/meminfo Bartlomiej Zolnierkiewicz
2012-06-01 20:26 ` KOSAKI Motohiro
2012-06-04  8:18   ` Bartlomiej Zolnierkiewicz
2012-06-04  9:43     ` KOSAKI Motohiro
2012-06-04 10:01       ` Bartlomiej Zolnierkiewicz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox