linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Kukjin Kim <kgene.kim@samsung.com>
To: Laura Abbott <lauraa@codeaurora.org>
Cc: Russell King <linux@arm.linux.org.uk>,
	David Brown <davidb@codeaurora.org>,
	Daniel Walker <dwalker@fifo99.com>,
	Jason Cooper <jason@lakedaemon.net>, Andrew Lunn <andrew@lunn.ch>,
	Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
	Eric Miao <eric.y.miao@gmail.com>,
	Haojian Zhuang <haojian.zhuang@gmail.com>,
	Ben Dooks <ben-linux@fluff.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	Nicolas Pitre <nicolas.pitre@linaro.org>,
	Courtney Cavin <courtney.cavin@sonymobile.com>,
	Grygorii Strashko <grygorii.strashko@ti.com>,
	Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	linux-arm-msm@vger.kernel.org, Will Deacon <will.deacon@arm.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Leif Lindholm <leif.lindholm@linaro.org>,
	Grant Likely <grant.likely@secretlab.ca>,
	linux-mm@kvack.org, Catalin Marinas <catalin.marinas@arm.com>,
	Santosh Shilimkar <santosh.shilimkar@ti.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Marek Szyprowski <m.szyprowski@samsung.com>
Subject: Re: [PATCHv3 2/2] arm: Get rid of meminfo
Date: Wed, 12 Feb 2014 10:39:05 +0530	[thread overview]
Message-ID: <CAL5jtJkrW4tY77C4Hk0XiAAKiQb5uU7oP=8JCNRS156csmmXkg@mail.gmail.com> (raw)
In-Reply-To: <1392153265-14439-3-git-send-email-lauraa@codeaurora.org>

2014-02-12 2:44 GMT+05:30 Laura Abbott <lauraa@codeaurora.org>:
> memblock is now fully integrated into the kernel and is the prefered
> method for tracking memory. Rather than reinvent the wheel with
> meminfo, migrate to using memblock directly instead of meminfo as
> an intermediate.
>
> Acked-by: Jason Cooper <jason@lakedaemon.net>
> Acked-by: Catalin Marinas <catalin.marinas@arm.com>
> Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
> Tested-by: Leif Lindholm <leif.lindholm@linaro.org>
> Signed-off-by: Laura Abbott <lauraa@codeaurora.org>
> ---
>  arch/arm/include/asm/mach/arch.h         |    4 +-
>  arch/arm/include/asm/memblock.h          |    3 +-
>  arch/arm/include/asm/setup.h             |   23 ------
>  arch/arm/kernel/atags_parse.c            |    5 +-
>  arch/arm/kernel/devtree.c                |    5 --
>  arch/arm/kernel/setup.c                  |   30 ++------
>  arch/arm/mach-clps711x/board-clep7312.c  |    7 +-
>  arch/arm/mach-clps711x/board-edb7211.c   |   10 +--
>  arch/arm/mach-clps711x/board-p720t.c     |    2 +-
>  arch/arm/mach-footbridge/cats-hw.c       |    2 +-
>  arch/arm/mach-footbridge/netwinder-hw.c  |    2 +-
>  arch/arm/mach-msm/board-halibut.c        |    6 --
>  arch/arm/mach-msm/board-mahimahi.c       |   13 +---
>  arch/arm/mach-msm/board-msm7x30.c        |    3 +-
>  arch/arm/mach-msm/board-sapphire.c       |   13 ++--
>  arch/arm/mach-msm/board-trout.c          |    8 +--
>  arch/arm/mach-orion5x/common.c           |    3 +-
>  arch/arm/mach-orion5x/common.h           |    3 +-
>  arch/arm/mach-pxa/cm-x300.c              |    3 +-
>  arch/arm/mach-pxa/corgi.c                |   10 +--
>  arch/arm/mach-pxa/eseries.c              |    9 +--
>  arch/arm/mach-pxa/poodle.c               |    8 +--
>  arch/arm/mach-pxa/spitz.c                |    8 +--
>  arch/arm/mach-pxa/tosa.c                 |    8 +--
>  arch/arm/mach-realview/core.c            |   11 +--
>  arch/arm/mach-realview/core.h            |    3 +-
>  arch/arm/mach-realview/realview_pb1176.c |    8 +--
>  arch/arm/mach-realview/realview_pbx.c    |   17 ++---
>  arch/arm/mach-s3c24xx/mach-smdk2413.c    |    8 +--
>  arch/arm/mach-s3c24xx/mach-vstms.c       |    8 +--

For s3c24xx,
Acked-by: Kukjin Kim <kgene.kim@samsung.com>

>  arch/arm/mach-sa1100/assabet.c           |    2 +-
>  arch/arm/mm/init.c                       |   67 +++++++-----------
>  arch/arm/mm/mmu.c                        |  115 +++++++++---------------------
>  33 files changed, 136 insertions(+), 291 deletions(-)

Thanks,
Kukjin

--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  parent reply	other threads:[~2014-02-12  5:09 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-11 21:14 [PATCHv3 0/2] Remove ARM meminfo Laura Abbott
2014-02-11 21:14 ` [PATCHv3 1/2] mm/memblock: add memblock_get_current_limit Laura Abbott
2014-02-11 21:21   ` Andrew Morton
2014-02-11 21:14 ` [PATCHv3 2/2] arm: Get rid of meminfo Laura Abbott
2014-02-11  3:33   ` Kukjin Kim
2014-02-12  5:09   ` Kukjin Kim [this message]
2014-02-12  8:27   ` Marek Szyprowski
2014-02-12 15:09   ` Grygorii Strashko
2014-02-13  2:17     ` Laura Abbott

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='CAL5jtJkrW4tY77C4Hk0XiAAKiQb5uU7oP=8JCNRS156csmmXkg@mail.gmail.com' \
    --to=kgene.kim@samsung.com \
    --cc=akpm@linux-foundation.org \
    --cc=andrew@lunn.ch \
    --cc=ard.biesheuvel@linaro.org \
    --cc=ben-linux@fluff.org \
    --cc=catalin.marinas@arm.com \
    --cc=courtney.cavin@sonymobile.com \
    --cc=davidb@codeaurora.org \
    --cc=dwalker@fifo99.com \
    --cc=eric.y.miao@gmail.com \
    --cc=grant.likely@secretlab.ca \
    --cc=grygorii.strashko@ti.com \
    --cc=haojian.zhuang@gmail.com \
    --cc=jason@lakedaemon.net \
    --cc=lauraa@codeaurora.org \
    --cc=leif.lindholm@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux@arm.linux.org.uk \
    --cc=m.szyprowski@samsung.com \
    --cc=nicolas.pitre@linaro.org \
    --cc=santosh.shilimkar@ti.com \
    --cc=sebastian.hesselbarth@gmail.com \
    --cc=will.deacon@arm.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox