Linux EDAC development
 help / color / mirror / Atom feed
* [PATCH] EDAC: Fix wrong executable file modes for C source files
@ 2025-08-28 19:19 Kuan-Wei Chiu
  2025-08-30 15:49 ` Borislav Petkov
  0 siblings, 1 reply; 2+ messages in thread
From: Kuan-Wei Chiu @ 2025-08-28 19:19 UTC (permalink / raw)
  To: bp, tony.luck
  Cc: james.morse, mchehab, rric, shiju.jose, jonathan.cameron, jserv,
	linux-edac, linux-kernel, Kuan-Wei Chiu

Three EDAC source files were mistakenly marked as executable in
commit 1e14ea901dc8 ("EDAC: Initialize EDAC features sysfs attributes").

These are plain C source files and should not carry the executable bit.
Correcting their modes follows the principle of least privilege and
avoids unnecessary execute permissions in the repository.

Fixes: 1e14ea901dc8 ("EDAC: Initialize EDAC features sysfs attributes")
Signed-off-by: Kuan-Wei Chiu <visitorckw@gmail.com>
---
 drivers/edac/ecs.c        | 0
 drivers/edac/mem_repair.c | 0
 drivers/edac/scrub.c      | 0
 3 files changed, 0 insertions(+), 0 deletions(-)
 mode change 100755 => 100644 drivers/edac/ecs.c
 mode change 100755 => 100644 drivers/edac/mem_repair.c
 mode change 100755 => 100644 drivers/edac/scrub.c

diff --git a/drivers/edac/ecs.c b/drivers/edac/ecs.c
old mode 100755
new mode 100644
diff --git a/drivers/edac/mem_repair.c b/drivers/edac/mem_repair.c
old mode 100755
new mode 100644
diff --git a/drivers/edac/scrub.c b/drivers/edac/scrub.c
old mode 100755
new mode 100644
-- 
2.34.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-08-30 15:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-28 19:19 [PATCH] EDAC: Fix wrong executable file modes for C source files Kuan-Wei Chiu
2025-08-30 15:49 ` Borislav Petkov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox