kasan: open-code kasan_unpoison_slab
[linux-2.6-microblaze.git] / include / linux / iversion.h
index 2917ef9..3bfebde 100644 (file)
@@ -328,6 +328,19 @@ inode_query_iversion(struct inode *inode)
        return cur >> I_VERSION_QUERIED_SHIFT;
 }
 
+/*
+ * For filesystems without any sort of change attribute, the best we can
+ * do is fake one up from the ctime:
+ */
+static inline u64 time_to_chattr(struct timespec64 *t)
+{
+       u64 chattr = t->tv_sec;
+
+       chattr <<= 32;
+       chattr += t->tv_nsec;
+       return chattr;
+}
+
 /**
  * inode_eq_iversion_raw - check whether the raw i_version counter has changed
  * @inode: inode to check