Re: [PATCH 1/3] arm64: dump: Make ptdump debugfs a separate option

2016-09-29 Thread Mark Rutland
On Thu, Sep 29, 2016 at 06:11:44PM -0700, Laura Abbott wrote: > On 09/29/2016 05:48 PM, Mark Rutland wrote: > >On Thu, Sep 29, 2016 at 05:31:09PM -0700, Laura Abbott wrote: > >>On 09/29/2016 05:13 PM, Mark Rutland wrote: > >>>On Thu, Sep 29, 2016 at 02:32:55PM -0700, Laura Abbott wrote: > +int

Re: [PATCH 1/3] arm64: dump: Make ptdump debugfs a separate option

2016-09-29 Thread Laura Abbott
On 09/29/2016 05:48 PM, Mark Rutland wrote: On Thu, Sep 29, 2016 at 05:31:09PM -0700, Laura Abbott wrote: On 09/29/2016 05:13 PM, Mark Rutland wrote: On Thu, Sep 29, 2016 at 02:32:55PM -0700, Laura Abbott wrote: +int ptdump_register(struct ptdump_info *info, const char *name) +{ + ptdump

Re: [PATCH 1/3] arm64: dump: Make ptdump debugfs a separate option

2016-09-29 Thread Mark Rutland
On Thu, Sep 29, 2016 at 05:31:09PM -0700, Laura Abbott wrote: > On 09/29/2016 05:13 PM, Mark Rutland wrote: > >On Thu, Sep 29, 2016 at 02:32:55PM -0700, Laura Abbott wrote: > >>+int ptdump_register(struct ptdump_info *info, const char *name) > >>+{ > >>+ ptdump_initialize(info); > >>+ return pt

Re: [PATCH 1/3] arm64: dump: Make ptdump debugfs a separate option

2016-09-29 Thread Laura Abbott
On 09/29/2016 05:13 PM, Mark Rutland wrote: Hi, On Thu, Sep 29, 2016 at 02:32:55PM -0700, Laura Abbott wrote: ptdump_register currently initializes a set of page table information and registers debugfs. There are uses for the ptdump option without wanting the debugfs options. Split this out to

Re: [PATCH 1/3] arm64: dump: Make ptdump debugfs a separate option

2016-09-29 Thread Mark Rutland
Hi, On Thu, Sep 29, 2016 at 02:32:55PM -0700, Laura Abbott wrote: > ptdump_register currently initializes a set of page table information and > registers debugfs. There are uses for the ptdump option without wanting the > debugfs options. Split this out to make it a separate option. > > Signed-of

[PATCH 1/3] arm64: dump: Make ptdump debugfs a separate option

2016-09-29 Thread Laura Abbott
ptdump_register currently initializes a set of page table information and registers debugfs. There are uses for the ptdump option without wanting the debugfs options. Split this out to make it a separate option. Signed-off-by: Laura Abbott --- arch/arm64/Kconfig.debug| 6 +- arch/ar