Signed-off-by: Huacai Chen chenhc@lemote.com --- include/drm/drm_cache.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/drm/drm_cache.h b/include/drm/drm_cache.h index 461a055..cebecff 100644 --- a/include/drm/drm_cache.h +++ b/include/drm/drm_cache.h @@ -39,6 +39,8 @@ static inline bool drm_arch_can_wc_memory(void) { #if defined(CONFIG_PPC) && !defined(CONFIG_NOT_COHERENT_CACHE) return false; +#elif defined(CONFIG_MIPS) && defined(CONFIG_CPU_LOONGSON3) + return false; #else return true; #endif
On Tue, Apr 19, 2016 at 7:19 AM, Huacai Chen chenhc@lemote.com wrote:
Signed-off-by: Huacai Chen chenhc@lemote.com
Reviewed-by: Alex Deucher alexander.deucher@amd.com
include/drm/drm_cache.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/drm/drm_cache.h b/include/drm/drm_cache.h index 461a055..cebecff 100644 --- a/include/drm/drm_cache.h +++ b/include/drm/drm_cache.h @@ -39,6 +39,8 @@ static inline bool drm_arch_can_wc_memory(void) { #if defined(CONFIG_PPC) && !defined(CONFIG_NOT_COHERENT_CACHE) return false; +#elif defined(CONFIG_MIPS) && defined(CONFIG_CPU_LOONGSON3)
return false;
#else return true;
#endif
2.7.0
dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel
Cc: stable@vger.kernel.org
On Tue, Apr 19, 2016 at 9:53 PM, Alex Deucher alexdeucher@gmail.com wrote:
On Tue, Apr 19, 2016 at 7:19 AM, Huacai Chen chenhc@lemote.com wrote:
Signed-off-by: Huacai Chen chenhc@lemote.com
Reviewed-by: Alex Deucher alexander.deucher@amd.com
include/drm/drm_cache.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/include/drm/drm_cache.h b/include/drm/drm_cache.h index 461a055..cebecff 100644 --- a/include/drm/drm_cache.h +++ b/include/drm/drm_cache.h @@ -39,6 +39,8 @@ static inline bool drm_arch_can_wc_memory(void) { #if defined(CONFIG_PPC) && !defined(CONFIG_NOT_COHERENT_CACHE) return false; +#elif defined(CONFIG_MIPS) && defined(CONFIG_CPU_LOONGSON3)
return false;
#else return true;
#endif
2.7.0
dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel
dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel
On Wed, Apr 20, 2016 at 03:49:23PM +0900, Greg KH wrote:
On Wed, Apr 20, 2016 at 02:18:20PM +0800, Huacai Chen wrote:
Cc: stable@vger.kernel.org
<formletter>
This is not the correct way to submit patches for inclusion in the stable kernel tree. Please read Documentation/stable_kernel_rules.txt for how to do this properly.
</formletter>
Not sure what exactly your script latched onto, but at least in the drm subsystem it's pretty common to remind maintainers with a reply just containing
Cc: stable@vger.kernel.org
that they need to add that to the patch when applying. Often combined with an r-b/a-b tag. And Damien is working to teach patchwork to auto-add those, so yeah it's indeed the right way to submit a patch for stable. At least here ;-)
Cheers, Daniel
dri-devel@lists.freedesktop.org