All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] fs/stat.c: drop the last new_valid_dev check
@ 2015-11-14  2:54 Yaowei Bai
  2015-11-14  2:54 ` [PATCH 2/2] include/linux/kdev_t.h: remove new_valid_dev() Yaowei Bai
  0 siblings, 1 reply; 2+ messages in thread
From: Yaowei Bai @ 2015-11-14  2:54 UTC (permalink / raw)
  To: viro, akpm, mikulas, ooo; +Cc: linux-fsdevel, linux-kernel

New_valid_dev() always returns true, so that's unnecessary to perform
new_valid_dev() checks in some filesystems. Most checks of new_valid_dev()
have been removed so let's drop this last one and then we can remove
new_valid_dev() from the source code.

No functional change.

Signed-off-by: Yaowei Bai <baiyaowei@cmss.chinamobile.com>
---
 fs/stat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/stat.c b/fs/stat.c
index d4a61d8..bc045c7 100644
--- a/fs/stat.c
+++ b/fs/stat.c
@@ -219,7 +219,7 @@ SYSCALL_DEFINE2(fstat, unsigned int, fd, struct __old_kernel_stat __user *, stat
 #  define choose_32_64(a,b) b
 #endif
 
-#define valid_dev(x)  choose_32_64(old_valid_dev,new_valid_dev)(x)
+#define valid_dev(x)  choose_32_64(old_valid_dev(x),true)
 #define encode_dev(x) choose_32_64(old_encode_dev,new_encode_dev)(x)
 
 #ifndef INIT_STRUCT_STAT_PADDING
-- 
1.9.1




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

* [PATCH 2/2] include/linux/kdev_t.h: remove new_valid_dev()
  2015-11-14  2:54 [PATCH 1/2] fs/stat.c: drop the last new_valid_dev check Yaowei Bai
@ 2015-11-14  2:54 ` Yaowei Bai
  0 siblings, 0 replies; 2+ messages in thread
From: Yaowei Bai @ 2015-11-14  2:54 UTC (permalink / raw)
  To: viro, akpm, mikulas, ooo; +Cc: linux-fsdevel, linux-kernel

As all new_valid_dev() checks have been removed it's time to drop
new_valid_dev() itself.

No functional change.

Signed-off-by: Yaowei Bai <baiyaowei@cmss.chinamobile.com>
---
 include/linux/kdev_t.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/include/linux/kdev_t.h b/include/linux/kdev_t.h
index 052c7b3..8e9e288b 100644
--- a/include/linux/kdev_t.h
+++ b/include/linux/kdev_t.h
@@ -35,11 +35,6 @@ static inline dev_t old_decode_dev(u16 val)
 	return MKDEV((val >> 8) & 255, val & 255);
 }
 
-static inline bool new_valid_dev(dev_t dev)
-{
-	return 1;
-}
-
 static inline u32 new_encode_dev(dev_t dev)
 {
 	unsigned major = MAJOR(dev);
-- 
1.9.1




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

end of thread, other threads:[~2015-11-14  3:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-14  2:54 [PATCH 1/2] fs/stat.c: drop the last new_valid_dev check Yaowei Bai
2015-11-14  2:54 ` [PATCH 2/2] include/linux/kdev_t.h: remove new_valid_dev() Yaowei Bai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.