* [PATCH 0/1] Clean up the unused comments from arm64 tlbflush.h
@ 2014-05-21 4:13 ritesh.harjani at gmail.com
2014-05-21 4:13 ` [PATCH 1/1] arm64: tlbflush.h: Clean up comment ritesh.harjani at gmail.com
0 siblings, 1 reply; 4+ messages in thread
From: ritesh.harjani at gmail.com @ 2014-05-21 4:13 UTC (permalink / raw)
To: linux-arm-kernel
From: Ritesh Harjani <ritesh.harjani@gmail.com>
Based on suggestion[1] from Catalin, instead of defining
unused function defination for flush_kern_tlb_page, clean
up the function name from the comment in tlbflush.h.
[1]: http://www.spinics.net/lists/arm-kernel/msg332661.html
Ritesh Harjani (1):
arm64: tlbflush.h: Clean up comment
arch/arm64/include/asm/tlbflush.h | 6 ------
1 file changed, 6 deletions(-)
--
1.8.1.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] arm64: tlbflush.h: Clean up comment
2014-05-21 4:13 [PATCH 0/1] Clean up the unused comments from arm64 tlbflush.h ritesh.harjani at gmail.com
@ 2014-05-21 4:13 ` ritesh.harjani at gmail.com
2014-05-21 4:22 ` Arun KS
0 siblings, 1 reply; 4+ messages in thread
From: ritesh.harjani at gmail.com @ 2014-05-21 4:13 UTC (permalink / raw)
To: linux-arm-kernel
From: Ritesh Harjani <ritesh.harjani@gmail.com>
Clean up the undefined function name(flush_kern_tlb_page)
from the comment in tlbflush.h
Signed-off-by: Ritesh Harjani <ritesh.harjani@gmail.com>
---
arch/arm64/include/asm/tlbflush.h | 6 ------
1 file changed, 6 deletions(-)
diff --git a/arch/arm64/include/asm/tlbflush.h b/arch/arm64/include/asm/tlbflush.h
index 8b48203..85e4f98 100644
--- a/arch/arm64/include/asm/tlbflush.h
+++ b/arch/arm64/include/asm/tlbflush.h
@@ -63,12 +63,6 @@ extern struct cpu_tlb_fns cpu_tlb;
* - vaddr - virtual address (may not be aligned)
* - vma - vma_struct describing address range
*
- * flush_kern_tlb_page(kaddr)
- *
- * Invalidate the TLB entry for the specified page. The address
- * will be in the kernels virtual memory space. Current uses
- * only require the D-TLB to be invalidated.
- * - kaddr - Kernel virtual memory address
*/
static inline void flush_tlb_all(void)
{
--
1.8.1.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 1/1] arm64: tlbflush.h: Clean up comment
2014-05-21 4:13 ` [PATCH 1/1] arm64: tlbflush.h: Clean up comment ritesh.harjani at gmail.com
@ 2014-05-21 4:22 ` Arun KS
2014-05-21 5:38 ` Ritesh Harjani
0 siblings, 1 reply; 4+ messages in thread
From: Arun KS @ 2014-05-21 4:22 UTC (permalink / raw)
To: linux-arm-kernel
Hi Ritesh,
On Wed, May 21, 2014 at 9:43 AM, <ritesh.harjani@gmail.com> wrote:
> From: Ritesh Harjani <ritesh.harjani@gmail.com>
>
> Clean up the undefined function name(flush_kern_tlb_page)
> from the comment in tlbflush.h
>
> Signed-off-by: Ritesh Harjani <ritesh.harjani@gmail.com>
> ---
> arch/arm64/include/asm/tlbflush.h | 6 ------
> 1 file changed, 6 deletions(-)
>
> diff --git a/arch/arm64/include/asm/tlbflush.h b/arch/arm64/include/asm/tlbflush.h
> index 8b48203..85e4f98 100644
> --- a/arch/arm64/include/asm/tlbflush.h
> +++ b/arch/arm64/include/asm/tlbflush.h
> @@ -63,12 +63,6 @@ extern struct cpu_tlb_fns cpu_tlb;
> * - vaddr - virtual address (may not be aligned)
> * - vma - vma_struct describing address range
> *
> - * flush_kern_tlb_page(kaddr)
> - *
> - * Invalidate the TLB entry for the specified page. The address
> - * will be in the kernels virtual memory space. Current uses
> - * only require the D-TLB to be invalidated.
> - * - kaddr - Kernel virtual memory address
> */
> static inline void flush_tlb_all(void)
Probably you can remove the following comment in same file as well.
"The arch/arm64/mm/tlb.S files implement these methods."
arch/arm64/mm/tlb.S file is no more and all the methods are
implemented in the current file.
Thanks,
Arun
> {
> --
> 1.8.1.3
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] arm64: tlbflush.h: Clean up comment
2014-05-21 4:22 ` Arun KS
@ 2014-05-21 5:38 ` Ritesh Harjani
0 siblings, 0 replies; 4+ messages in thread
From: Ritesh Harjani @ 2014-05-21 5:38 UTC (permalink / raw)
To: linux-arm-kernel
Ok thanks Arun,
I didnt see this patch
http://lists.infradead.org/pipermail/linux-arm-kernel/2014-May/252837.html
Will submit the correct patch then.
Thanks
Ritesh
On Wed, May 21, 2014 at 9:52 AM, Arun KS <arunks.linux@gmail.com> wrote:
> Hi Ritesh,
>
> On Wed, May 21, 2014 at 9:43 AM, <ritesh.harjani@gmail.com> wrote:
>> From: Ritesh Harjani <ritesh.harjani@gmail.com>
>>
>> Clean up the undefined function name(flush_kern_tlb_page)
>> from the comment in tlbflush.h
>>
>> Signed-off-by: Ritesh Harjani <ritesh.harjani@gmail.com>
>> ---
>> arch/arm64/include/asm/tlbflush.h | 6 ------
>> 1 file changed, 6 deletions(-)
>>
>> diff --git a/arch/arm64/include/asm/tlbflush.h b/arch/arm64/include/asm/tlbflush.h
>> index 8b48203..85e4f98 100644
>> --- a/arch/arm64/include/asm/tlbflush.h
>> +++ b/arch/arm64/include/asm/tlbflush.h
>> @@ -63,12 +63,6 @@ extern struct cpu_tlb_fns cpu_tlb;
>> * - vaddr - virtual address (may not be aligned)
>> * - vma - vma_struct describing address range
>> *
>> - * flush_kern_tlb_page(kaddr)
>> - *
>> - * Invalidate the TLB entry for the specified page. The address
>> - * will be in the kernels virtual memory space. Current uses
>> - * only require the D-TLB to be invalidated.
>> - * - kaddr - Kernel virtual memory address
>> */
>> static inline void flush_tlb_all(void)
>
> Probably you can remove the following comment in same file as well.
> "The arch/arm64/mm/tlb.S files implement these methods."
>
> arch/arm64/mm/tlb.S file is no more and all the methods are
> implemented in the current file.
>
> Thanks,
> Arun
>
>> {
>> --
>> 1.8.1.3
>>
>>
>> _______________________________________________
>> linux-arm-kernel mailing list
>> linux-arm-kernel at lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-05-21 5:38 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-21 4:13 [PATCH 0/1] Clean up the unused comments from arm64 tlbflush.h ritesh.harjani at gmail.com
2014-05-21 4:13 ` [PATCH 1/1] arm64: tlbflush.h: Clean up comment ritesh.harjani at gmail.com
2014-05-21 4:22 ` Arun KS
2014-05-21 5:38 ` Ritesh Harjani
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).