Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1696851
| From | Matt Redfearn <matt.redfearn@imgtec.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v3 1/2] MIPS: Introduce cpu_tcache_line_size |
| Date | 2017-07-26 09:50 +0200 |
| Message-ID | <u7peV-5RS-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
There exist macros to return the cache line size of the L1 dcache and L2 scache but there is currently no macro for the L3 tcache. Add this macro which will be used by the following patch "MIPS: PCI: Fix smp_processor_id() in preemptible" Signed-off-by: Matt Redfearn <matt.redfearn@imgtec.com> --- Changes in v3: Split into 2 patches Changes in v2: None arch/mips/include/asm/cpu-features.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/mips/include/asm/cpu-features.h b/arch/mips/include/asm/cpu-features.h index 8baa9033b181..721b698bfe3c 100644 --- a/arch/mips/include/asm/cpu-features.h +++ b/arch/mips/include/asm/cpu-features.h @@ -428,6 +428,9 @@ #ifndef cpu_scache_line_size #define cpu_scache_line_size() cpu_data[0].scache.linesz #endif +#ifndef cpu_tcache_line_size +#define cpu_tcache_line_size() cpu_data[0].tcache.linesz +#endif #ifndef cpu_hwrena_impl_bits #define cpu_hwrena_impl_bits 0 -- 2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v3 1/2] MIPS: Introduce cpu_tcache_line_size Matt Redfearn <matt.redfearn@imgtec.com> - 2017-07-26 09:50 +0200 [PATCH v3 2/2] MIPS: PCI: Fix smp_processor_id() in preemptible Matt Redfearn <matt.redfearn@imgtec.com> - 2017-07-26 09:50 +0200
csiph-web