All of lore.kernel.org
 help / color / mirror / Atom feed
From: arnd@arndb.de (Arnd Bergmann)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 4/5] ARM: annotate VMALLOC_END definition with _AC
Date: Tue, 30 Oct 2012 22:22:15 +0000	[thread overview]
Message-ID: <201210302222.15656.arnd@arndb.de> (raw)
In-Reply-To: <3c9e591c-a29f-446b-9256-bb23ff6d840d@TX2EHSMHS014.ehs.local>

On Saturday 27 October 2012, Michal Simek wrote:
> > diff --git a/arch/arm/include/asm/pgtable.h b/arch/arm/include/asm/pgtable.h
> > index 08c1231..72904a2 100644
> > --- a/arch/arm/include/asm/pgtable.h
> > +++ b/arch/arm/include/asm/pgtable.h
> > @@ -40,7 +40,7 @@
> >   */
> >  #define VMALLOC_OFFSET               (8*1024*1024)
> >  #define VMALLOC_START                (((unsigned long)high_memory +
> > VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
> > -#define VMALLOC_END          0xff000000UL
> > +#define VMALLOC_END          _AC(0xff000000,UL)
> 
> This shouldn't be the part of this series but should go to mainline through different tree.
> Arnd, Olof: Can you take this patch to your arm-soc tree? 
> 
> I don't think it is a good workstyle to propose it to mainline through zynq soc tree.
> What do you think?

The arm-soc tree is not the right place either, this is architecture code which is
in Russell's domain. I would suggest getting an Ack from Russell if he's ok with
it and then merging it together with your other changes into arm-soc.

	Arnd

WARNING: multiple messages have this Message-ID (diff)
From: Arnd Bergmann <arnd@arndb.de>
To: Michal Simek <michal.simek@xilinx.com>
Cc: Josh Cartwright <josh.cartwright@ni.com>,
	"arm@kernel.org" <arm@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	John Linn <linnj@xilinx.com>,
	Nick Bowler <nbowler@elliptictech.com>,
	"Russell King - ARM Linux" <linux@arm.linux.org.uk>
Subject: Re: [PATCH v4 4/5] ARM: annotate VMALLOC_END definition with _AC
Date: Tue, 30 Oct 2012 22:22:15 +0000	[thread overview]
Message-ID: <201210302222.15656.arnd@arndb.de> (raw)
In-Reply-To: <3c9e591c-a29f-446b-9256-bb23ff6d840d@TX2EHSMHS014.ehs.local>

On Saturday 27 October 2012, Michal Simek wrote:
> > diff --git a/arch/arm/include/asm/pgtable.h b/arch/arm/include/asm/pgtable.h
> > index 08c1231..72904a2 100644
> > --- a/arch/arm/include/asm/pgtable.h
> > +++ b/arch/arm/include/asm/pgtable.h
> > @@ -40,7 +40,7 @@
> >   */
> >  #define VMALLOC_OFFSET               (8*1024*1024)
> >  #define VMALLOC_START                (((unsigned long)high_memory +
> > VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1))
> > -#define VMALLOC_END          0xff000000UL
> > +#define VMALLOC_END          _AC(0xff000000,UL)
> 
> This shouldn't be the part of this series but should go to mainline through different tree.
> Arnd, Olof: Can you take this patch to your arm-soc tree? 
> 
> I don't think it is a good workstyle to propose it to mainline through zynq soc tree.
> What do you think?

The arm-soc tree is not the right place either, this is architecture code which is
in Russell's domain. I would suggest getting an Ack from Russell if he's ok with
it and then merging it together with your other changes into arm-soc.

	Arnd

  reply	other threads:[~2012-10-30 22:22 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-24 20:02 [PATCH v4 0/5] zynq subarch cleanups Josh Cartwright
2012-10-24 20:02 ` Josh Cartwright
2012-10-24 20:03 ` [PATCH v4 1/5] zynq: use GIC device tree bindings Josh Cartwright
2012-10-24 20:03   ` Josh Cartwright
2012-10-27 13:39   ` Michal Simek
2012-10-27 13:39     ` Michal Simek
2012-10-27 14:00     ` Josh Cartwright
2012-10-27 14:00       ` Josh Cartwright
2012-10-27 14:06       ` Michal Simek
2012-10-27 14:06         ` Michal Simek
2012-10-27 14:42         ` Josh Cartwright
2012-10-27 14:42           ` Josh Cartwright
2012-10-27 15:20           ` Michal Simek
2012-10-27 15:20             ` Michal Simek
2012-11-05 18:35             ` Josh Cartwright
2012-11-05 18:35               ` Josh Cartwright
2012-11-07 12:05               ` Michal Simek
2012-11-07 12:05                 ` Michal Simek
2012-11-07 14:17                 ` Josh Cartwright
2012-11-07 14:17                   ` Josh Cartwright
2012-11-08  0:38                   ` John Linn
2012-11-08  0:38                     ` John Linn
2012-10-24 20:03 ` [PATCH v4 2/5] zynq: use pl310 " Josh Cartwright
2012-10-24 20:03   ` Josh Cartwright
2012-10-27 13:40   ` Michal Simek
2012-10-27 13:40     ` Michal Simek
2012-10-24 20:04 ` [PATCH v4 3/5] zynq: remove use of CLKDEV_LOOKUP Josh Cartwright
2012-10-24 20:04   ` Josh Cartwright
2012-10-27 16:47   ` Michal Simek
2012-10-27 16:47     ` Michal Simek
2012-10-24 20:04 ` [PATCH v4 4/5] ARM: annotate VMALLOC_END definition with _AC Josh Cartwright
2012-10-24 20:04   ` Josh Cartwright
2012-10-27 13:59   ` Michal Simek
2012-10-27 13:59     ` Michal Simek
2012-10-30 22:22     ` Arnd Bergmann [this message]
2012-10-30 22:22       ` Arnd Bergmann
2012-10-31  8:43       ` Michal Simek
2012-10-31  8:43         ` Michal Simek
2012-10-31 11:36         ` Josh Cartwright
2012-10-31 11:36           ` Josh Cartwright
2012-10-24 20:04 ` [PATCH v4 5/5] zynq: move static peripheral mappings Josh Cartwright
2012-10-24 20:04   ` Josh Cartwright
2012-10-25 20:17   ` Nick Bowler
2012-10-25 20:17     ` Nick Bowler
2012-10-25 21:29     ` Josh Cartwright
2012-10-25 21:29       ` Josh Cartwright
2012-10-25 22:41       ` Nick Bowler
2012-10-25 22:41         ` Nick Bowler
2012-10-25 22:47         ` [PATCH] ARM: zynq: Allow UART1 to be used as DEBUG_LL console Nick Bowler
2012-10-25 22:47           ` Nick Bowler
2012-10-29 16:56           ` Josh Cartwright
2012-10-29 16:56             ` Josh Cartwright
2012-10-29 18:13             ` Nick Bowler
2012-10-29 18:13               ` Nick Bowler
2012-10-26  1:03         ` [PATCH v4 5/5] zynq: move static peripheral mappings Josh Cartwright
2012-10-26  1:03           ` Josh Cartwright
2012-10-27 16:52           ` Michal Simek
2012-10-27 16:52             ` Michal Simek
  -- strict thread matches above, loose matches on Subject: below --
2012-10-28 23:26 [PATCH v4 0/5] zynq subarch cleanups Josh Cartwright
2012-10-21 23:33 ` [PATCH v4 4/5] ARM: annotate VMALLOC_END definition with _AC Josh Cartwright
2012-10-21 23:33   ` Josh Cartwright

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=201210302222.15656.arnd@arndb.de \
    --to=arnd@arndb.de \
    --cc=linux-arm-kernel@lists.infradead.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 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.