[PATCH] tsacct: Remove unused macro definition

Suchit Karunakaran posted 1 patch 2 months, 1 week ago
kernel/tsacct.c | 2 --
1 file changed, 2 deletions(-)
[PATCH] tsacct: Remove unused macro definition
Posted by Suchit Karunakaran 2 months, 1 week ago
The MB macro was defined in tsacct.c but never used, leading to a compiler
warning. This patch removes the unused definition to clean up the code and
suppress the warning.

Signed-off-by: Suchit Karunakaran <suchitkarunakaran@gmail.com>
---
 kernel/tsacct.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/kernel/tsacct.c b/kernel/tsacct.c
index 16b283f9d831..0fd7ef291454 100644
--- a/kernel/tsacct.c
+++ b/kernel/tsacct.c
@@ -83,7 +83,6 @@ void bacct_add_tsk(struct user_namespace *user_ns,
 #ifdef CONFIG_TASK_XACCT
 
 #define KB 1024
-#define MB (1024*KB)
 #define KB_MASK (~(KB-1))
 /*
  * fill in extended accounting fields
@@ -119,7 +118,6 @@ void xacct_add_tsk(struct taskstats *stats, struct task_struct *p)
 #endif
 }
 #undef KB
-#undef MB
 
 static void __acct_update_integrals(struct task_struct *tsk,
 				    u64 utime, u64 stime)
-- 
2.50.1
Re: [PATCH] tsacct: Remove unused macro definition
Posted by Greg KH 2 months, 1 week ago
On Tue, Jul 29, 2025 at 11:03:59AM +0530, Suchit Karunakaran wrote:
> The MB macro was defined in tsacct.c but never used, leading to a compiler
> warning. This patch removes the unused definition to clean up the code and
> suppress the warning.

What compiler warning shows this?  As part of a normal build?

We have loads of defines that are not used, especially in drivers, are
we now going to start deleting them all?

thanks,

greg k-h
Re: [PATCH] tsacct: Remove unused macro definition
Posted by Suchit Karunakaran 2 months, 1 week ago
On Tue, 29 Jul 2025 at 11:22, Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Tue, Jul 29, 2025 at 11:03:59AM +0530, Suchit Karunakaran wrote:
> > The MB macro was defined in tsacct.c but never used, leading to a compiler
> > warning. This patch removes the unused definition to clean up the code and
> > suppress the warning.
>
> What compiler warning shows this?  As part of a normal build?
>

It's not part of the normal build. I built the kernel with C=1 and V=1 flags.

> We have loads of defines that are not used, especially in drivers, are
> we now going to start deleting them all?
>

Agreed, sorry for the inconvenience.