All of lore.kernel.org
 help / color / mirror / Atom feed
From: Palmer Dabbelt <palmer@dabbelt.com>
To: Atish Patra <atishp@rivosinc.com>
Cc: linux-kernel@vger.kernel.org, Atish Patra <atishp@rivosinc.com>,
	aou@eecs.berkeley.edu, anup@brainfault.org,
	atishp@atishpatra.org, guoren@kernel.org,
	linux-riscv@lists.infradead.org, mark.rutland@arm.com,
	Paul Walmsley <paul.walmsley@sifive.com>,
	Will Deacon <will@kernel.org>
Subject: Re: [v3  0/5] Miscallenous improvement & fixes for the PMU driver
Date: Thu, 11 Aug 2022 19:32:03 -0700 (PDT)	[thread overview]
Message-ID: <mhng-a68b84d8-d7c4-4048-b64e-0a5c7403fdd9@palmer-ri-x1c9> (raw)
In-Reply-To: <20220711174632.4186047-1-atishp@rivosinc.com>

On Mon, 11 Jul 2022 10:46:27 PDT (-0700), Atish Patra wrote:
> This series fixes issues PMU driver code.
> PATCH 1 & 3 are fixes for rv32 while PATCH 2 fixes a redundant
> user page update issue during counter start.
>
> PATCH 4 & 5 improves the SBI PMU definition.
>
> Changes from v2->v3:
> 1. Added two more patches that fixes few typos and enable support
> for perf support in KVM.
>
> Changes from v1->v2:
> 1. Add proper compile time rv32 checks.
>
> Atish Patra (5):
> RISC-V: Fix counter restart during overflow for RV32
> RISC-V: Update user page mapping only once during start
> RISC-V: Fix SBI PMU calls for RV32
> RISC-V: Move counter info definition to sbi header file
> RISC-V: Improve SBI definitions
>
> arch/riscv/include/asm/sbi.h | 32 ++++++++++++++++++++++++++++++--
> drivers/perf/riscv_pmu.c     |  1 -
> drivers/perf/riscv_pmu_sbi.c | 30 ++++++++++++++++--------------
> 3 files changed, 46 insertions(+), 17 deletions(-)

Sorry, I guess I'd forgotten that Will asked me to merge this one.  
Thanks to Atish for reminding me, this is on for-next.

WARNING: multiple messages have this Message-ID (diff)
From: Palmer Dabbelt <palmer@dabbelt.com>
To: Atish Patra <atishp@rivosinc.com>
Cc: linux-kernel@vger.kernel.org, Atish Patra <atishp@rivosinc.com>,
	aou@eecs.berkeley.edu, anup@brainfault.org,
	atishp@atishpatra.org, guoren@kernel.org,
	linux-riscv@lists.infradead.org, mark.rutland@arm.com,
	Paul Walmsley <paul.walmsley@sifive.com>,
	Will Deacon <will@kernel.org>
Subject: Re: [v3  0/5] Miscallenous improvement & fixes for the PMU driver
Date: Thu, 11 Aug 2022 19:32:03 -0700 (PDT)	[thread overview]
Message-ID: <mhng-a68b84d8-d7c4-4048-b64e-0a5c7403fdd9@palmer-ri-x1c9> (raw)
In-Reply-To: <20220711174632.4186047-1-atishp@rivosinc.com>

On Mon, 11 Jul 2022 10:46:27 PDT (-0700), Atish Patra wrote:
> This series fixes issues PMU driver code.
> PATCH 1 & 3 are fixes for rv32 while PATCH 2 fixes a redundant
> user page update issue during counter start.
>
> PATCH 4 & 5 improves the SBI PMU definition.
>
> Changes from v2->v3:
> 1. Added two more patches that fixes few typos and enable support
> for perf support in KVM.
>
> Changes from v1->v2:
> 1. Add proper compile time rv32 checks.
>
> Atish Patra (5):
> RISC-V: Fix counter restart during overflow for RV32
> RISC-V: Update user page mapping only once during start
> RISC-V: Fix SBI PMU calls for RV32
> RISC-V: Move counter info definition to sbi header file
> RISC-V: Improve SBI definitions
>
> arch/riscv/include/asm/sbi.h | 32 ++++++++++++++++++++++++++++++--
> drivers/perf/riscv_pmu.c     |  1 -
> drivers/perf/riscv_pmu_sbi.c | 30 ++++++++++++++++--------------
> 3 files changed, 46 insertions(+), 17 deletions(-)

Sorry, I guess I'd forgotten that Will asked me to merge this one.  
Thanks to Atish for reminding me, this is on for-next.

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

  parent reply	other threads:[~2022-08-12  2:32 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-11 17:46 [v3 0/5] Miscallenous improvement & fixes for the PMU driver Atish Patra
2022-07-11 17:46 ` Atish Patra
2022-07-11 17:46 ` [v3 1/5] RISC-V: Fix counter restart during overflow for RV32 Atish Patra
2022-07-11 17:46   ` Atish Patra
2022-07-12  1:45   ` Guo Ren
2022-07-12  1:45     ` Guo Ren
2022-07-11 17:46 ` [v3 2/5] RISC-V: Update user page mapping only once during start Atish Patra
2022-07-11 17:46   ` Atish Patra
2022-07-12  1:54   ` Guo Ren
2022-07-12  1:54     ` Guo Ren
2022-07-13  0:59     ` Atish Patra
2022-07-13  0:59       ` Atish Patra
2022-07-11 17:46 ` [v3 3/5] RISC-V: Fix SBI PMU calls for RV32 Atish Patra
2022-07-11 17:46   ` Atish Patra
2022-07-11 17:46 ` [v3 4/5] RISC-V: Move counter info definition to sbi header file Atish Patra
2022-07-11 17:46   ` Atish Patra
2022-07-11 17:46 ` [v3 5/5] RISC-V: Improve SBI definitions Atish Patra
2022-07-11 17:46   ` Atish Patra
2022-08-12  2:32 ` Palmer Dabbelt [this message]
2022-08-12  2:32   ` [v3 0/5] Miscallenous improvement & fixes for the PMU driver Palmer Dabbelt

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=mhng-a68b84d8-d7c4-4048-b64e-0a5c7403fdd9@palmer-ri-x1c9 \
    --to=palmer@dabbelt.com \
    --cc=anup@brainfault.org \
    --cc=aou@eecs.berkeley.edu \
    --cc=atishp@atishpatra.org \
    --cc=atishp@rivosinc.com \
    --cc=guoren@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-riscv@lists.infradead.org \
    --cc=mark.rutland@arm.com \
    --cc=paul.walmsley@sifive.com \
    --cc=will@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 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.