lkml.org 
[lkml]   [2023]   [Nov]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] nsproxy: Remove unnecessary ‘0 ’ values from ret
Date
The ret variable can be defined without assigning a value, as it is
assigned before use.

Signed-off-by: Li kunyu <kunyu@nfschina.com>
---
kernel/nsproxy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/nsproxy.c b/kernel/nsproxy.c
index 15781acaac1ce..b7e398d954b09 100644
--- a/kernel/nsproxy.c
+++ b/kernel/nsproxy.c
@@ -374,12 +374,12 @@ static inline int validate_ns(struct nsset *nsset, struct ns_common *ns)
*/
static int validate_nsset(struct nsset *nsset, struct pid *pid)
{
- int ret = 0;
unsigned flags = nsset->flags;
struct user_namespace *user_ns = NULL;
struct pid_namespace *pid_ns = NULL;
struct nsproxy *nsp;
struct task_struct *tsk;
+ int ret;

/* Take a "snapshot" of the target task's namespaces. */
rcu_read_lock();
--
2.18.2
\
 
 \ /
  Last update: 2023-11-01 09:42    [W:0.089 / U:0.060 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site