2022-11-26 11:47:41

by Zhen Lei

[permalink] [raw]
Subject: [PATCH v2] kernfs: remove an unused if statement in kernfs_path_from_node_locked()

It makes no sense to call kernfs_path_from_node_locked() with NULL buf,
and no one is doing that right now.

Suggested-by: Tejun Heo <[email protected]>
Signed-off-by: Zhen Lei <[email protected]>
---
fs/kernfs/dir.c | 3 ---
1 file changed, 3 deletions(-)

diff --git a/fs/kernfs/dir.c b/fs/kernfs/dir.c
index f33b3baad07cb36..8a11bf189970274 100644
--- a/fs/kernfs/dir.c
+++ b/fs/kernfs/dir.c
@@ -149,9 +149,6 @@ static int kernfs_path_from_node_locked(struct kernfs_node *kn_to,
if (kn_from == kn_to)
return strlcpy(buf, "/", buflen);

- if (!buf)
- return -EINVAL;
-
common = kernfs_common_ancestor(kn_from, kn_to);
if (WARN_ON(!common))
return -EINVAL;
--
2.25.1


2022-11-28 17:38:16

by Tejun Heo

[permalink] [raw]
Subject: Re: [PATCH v2] kernfs: remove an unused if statement in kernfs_path_from_node_locked()

On Sat, Nov 26, 2022 at 07:16:34PM +0800, Zhen Lei wrote:
> It makes no sense to call kernfs_path_from_node_locked() with NULL buf,
> and no one is doing that right now.
>
> Suggested-by: Tejun Heo <[email protected]>
> Signed-off-by: Zhen Lei <[email protected]>

Acked-by: Tejun Heo <[email protected]>

Thanks.

--
tejun