public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: tip-bot for Dexuan Cui <tipbot@zytor.com>
To: linux-tip-commits@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, tglx@linutronix.de,
	decui@microsoft.com, bp@alien8.de, mingo@kernel.org,
	hpa@zytor.com
Subject: [tip:x86/mm] x86/mm/pageattr: Remove an unused variable in slow_virt_to_phys()
Date: Mon, 11 May 2015 05:47:08 -0700	[thread overview]
Message-ID: <tip-1fcb61c52bbdbbc46d132acf7dab9ad0eca433fe@git.kernel.org> (raw)
In-Reply-To: <1429776428-4475-1-git-send-email-decui@microsoft.com>

Commit-ID:  1fcb61c52bbdbbc46d132acf7dab9ad0eca433fe
Gitweb:     http://git.kernel.org/tip/1fcb61c52bbdbbc46d132acf7dab9ad0eca433fe
Author:     Dexuan Cui <decui@microsoft.com>
AuthorDate: Thu, 23 Apr 2015 01:07:08 -0700
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Mon, 11 May 2015 11:55:18 +0200

x86/mm/pageattr: Remove an unused variable in slow_virt_to_phys()

The patch doesn't change any logic.

Signed-off-by: Dexuan Cui <decui@microsoft.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1429776428-4475-1-git-send-email-decui@microsoft.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/mm/pageattr.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c
index c77abd7..397838e 100644
--- a/arch/x86/mm/pageattr.c
+++ b/arch/x86/mm/pageattr.c
@@ -417,13 +417,11 @@ phys_addr_t slow_virt_to_phys(void *__virt_addr)
 	phys_addr_t phys_addr;
 	unsigned long offset;
 	enum pg_level level;
-	unsigned long psize;
 	unsigned long pmask;
 	pte_t *pte;
 
 	pte = lookup_address(virt_addr, &level);
 	BUG_ON(!pte);
-	psize = page_level_size(level);
 	pmask = page_level_mask(level);
 	offset = virt_addr & ~pmask;
 	phys_addr = (phys_addr_t)pte_pfn(*pte) << PAGE_SHIFT;

      reply	other threads:[~2015-05-11 12:47 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-23  8:07 [PATCH] x86, pageattr: remove an unused variable in slow_virt_to_phys() Dexuan Cui
2015-05-11 12:47 ` tip-bot for Dexuan Cui [this message]

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=tip-1fcb61c52bbdbbc46d132acf7dab9ad0eca433fe@git.kernel.org \
    --to=tipbot@zytor.com \
    --cc=bp@alien8.de \
    --cc=decui@microsoft.com \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tip-commits@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=tglx@linutronix.de \
    /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