Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1734714

[PATCH] MN10300: make resource __initconst

From Bhumika Goyal <bhumirks@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] MN10300: make resource __initconst
Date 2017-09-19 09:30 +0200
Message-ID <url8K-1bj-19@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Make code_resource and data_resource __initdata as these are only
modified during the init phase and after that the structures and their
fields are not referenced anywhere.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 arch/mn10300/kernel/setup.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/mn10300/kernel/setup.c b/arch/mn10300/kernel/setup.c
index 1b3d80d..5c21ef9 100644
--- a/arch/mn10300/kernel/setup.c
+++ b/arch/mn10300/kernel/setup.c
@@ -41,13 +41,13 @@
 
 char __initdata redboot_platform_name[COMMAND_LINE_SIZE];
 
-static struct resource code_resource = {
+static struct resource code_resource __initdata = {
 	.start	= 0x100000,
 	.end	= 0,
 	.name	= "Kernel code",
 };
 
-static struct resource data_resource = {
+static struct resource data_resource __initdata = {
 	.start	= 0,
 	.end	= 0,
 	.name	= "Kernel data",
-- 
1.9.1

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH] MN10300: make resource __initconst Bhumika Goyal <bhumirks@gmail.com> - 2017-09-19 09:30 +0200

csiph-web