All of lore.kernel.org
 help / color / mirror / Atom feed
* [VFS PATCH] constify more dcache.h inlined helpers.
@ 2017-08-02  3:24 NeilBrown
  2017-10-20  0:41 ` NeilBrown
  0 siblings, 1 reply; 5+ messages in thread
From: NeilBrown @ 2017-08-02  3:24 UTC (permalink / raw)
  To: Al Viro; +Cc: lkml

[-- Attachment #1: Type: text/plain, Size: 1176 bytes --]


Many of the inlines in dcache.h were changed to accept
const struct pointers in commit f0d3b3ded999 ("constify dcache.c
inlined helpers where possible").
This patch allows 'const' in a couple that were added since then.

Signed-off-by: NeilBrown <neilb@suse.com>
---
 include/linux/dcache.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/dcache.h b/include/linux/dcache.h
index aae1cdb76851..66ca42b1935b 100644
--- a/include/linux/dcache.h
+++ b/include/linux/dcache.h
@@ -358,7 +358,7 @@ static inline void dont_mount(struct dentry *dentry)
 
 extern void __d_lookup_done(struct dentry *);
 
-static inline int d_in_lookup(struct dentry *dentry)
+static inline int d_in_lookup(const struct dentry *dentry)
 {
 	return dentry->d_flags & DCACHE_PAR_LOOKUP;
 }
@@ -486,7 +486,7 @@ static inline bool d_really_is_positive(const struct dentry *dentry)
 	return dentry->d_inode != NULL;
 }
 
-static inline int simple_positive(struct dentry *dentry)
+static inline int simple_positive(const struct dentry *dentry)
 {
 	return d_really_is_positive(dentry) && !d_unhashed(dentry);
 }
-- 
2.14.0.rc0.dirty


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2017-12-18 23:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-02  3:24 [VFS PATCH] constify more dcache.h inlined helpers NeilBrown
2017-10-20  0:41 ` NeilBrown
2017-10-20  3:33   ` Al Viro
2017-10-20  9:39     ` NeilBrown
2017-12-18 23:15     ` NeilBrown

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.