On 8/26/24 5:44 AM, Sergii Dmytruk wrote:
From: Daniel Kiper <daniel.ki...@oracle.com>

... to grub_rdmsr() and grub_wrmsr() respectively. New names are more
obvious than older ones.

This patch needs its commit message fixed to remove the ellipsis and just make it a complete sentence.

Also since you are not the author, you should add an SoB for yourself since you are submitting it. This seems to be best practice.

The patch itself looks fine.

Thanks
Ross


Signed-off-by: Daniel Kiper <daniel.ki...@oracle.com>
---
  grub-core/commands/i386/rdmsr.c | 2 +-
  grub-core/commands/i386/wrmsr.c | 2 +-
  include/grub/i386/msr.h         | 4 ++--
  3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/grub-core/commands/i386/rdmsr.c b/grub-core/commands/i386/rdmsr.c
index fa4622f9e..89ece7657 100644
--- a/grub-core/commands/i386/rdmsr.c
+++ b/grub-core/commands/i386/rdmsr.c
@@ -76,7 +76,7 @@ grub_cmd_msr_read (grub_extcmd_context_t ctxt, int argc, char 
**argv)
    if (*ptr != '\0')
      return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("invalid argument"));
- value = grub_msr_read (addr);
+  value = grub_rdmsr (addr);
if (ctxt->state[0].set)
      {
diff --git a/grub-core/commands/i386/wrmsr.c b/grub-core/commands/i386/wrmsr.c
index 8f352f205..cf6bf6c8f 100644
--- a/grub-core/commands/i386/wrmsr.c
+++ b/grub-core/commands/i386/wrmsr.c
@@ -77,7 +77,7 @@ grub_cmd_msr_write (grub_command_t cmd __attribute__ 
((unused)), int argc, char
    if (*ptr != '\0')
      return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("invalid argument"));
- grub_msr_write (addr, value);
+  grub_wrmsr (addr, value);
return GRUB_ERR_NONE;
  }
diff --git a/include/grub/i386/msr.h b/include/grub/i386/msr.h
index 7b52b5d61..4fba1b8e0 100644
--- a/include/grub/i386/msr.h
+++ b/include/grub/i386/msr.h
@@ -25,7 +25,7 @@
   */
static inline grub_uint64_t
-grub_msr_read (grub_uint32_t msr_id)
+grub_rdmsr (grub_uint32_t msr_id)
  {
    grub_uint32_t low, high;
@@ -35,7 +35,7 @@ grub_msr_read (grub_uint32_t msr_id)
  }
static inline void
-grub_msr_write(grub_uint32_t msr_id, grub_uint64_t msr_value)
+grub_wrmsr (grub_uint32_t msr_id, grub_uint64_t msr_value)
  {
    grub_uint32_t low = msr_value, high = msr_value >> 32;


_______________________________________________
Grub-devel mailing list
Grub-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/grub-devel

Reply via email to