Update format strings and local variable types in cachefiles for the
i_ino type change from unsigned long to u64.

Signed-off-by: Jeff Layton <[email protected]>
---
 fs/cachefiles/io.c    |  6 +++---
 fs/cachefiles/namei.c | 12 ++++++------
 fs/cachefiles/xattr.c |  2 +-
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/fs/cachefiles/io.c b/fs/cachefiles/io.c
index 
eaf47851c65f4736a7a27f13c498028c7c8dd1b4..d879b80a0bedc95533ce05361ed8cb79c7ed3826
 100644
--- a/fs/cachefiles/io.c
+++ b/fs/cachefiles/io.c
@@ -93,7 +93,7 @@ static int cachefiles_read(struct netfs_cache_resources *cres,
        object = cachefiles_cres_object(cres);
        file = cachefiles_cres_file(cres);
 
-       _enter("%pD,%li,%llx,%zx/%llx",
+       _enter("%pD,%llu,%llx,%zx/%llx",
               file, file_inode(file)->i_ino, start_pos, len,
               i_size_read(file_inode(file)));
 
@@ -214,7 +214,7 @@ static int cachefiles_query_occupancy(struct 
netfs_cache_resources *cres,
        file = cachefiles_cres_file(cres);
        granularity = max_t(size_t, object->volume->cache->bsize, granularity);
 
-       _enter("%pD,%li,%llx,%zx/%llx",
+       _enter("%pD,%llu,%llx,%zx/%llx",
               file, file_inode(file)->i_ino, start, len,
               i_size_read(file_inode(file)));
 
@@ -294,7 +294,7 @@ int __cachefiles_write(struct cachefiles_object *object,
        fscache_count_write();
        cache = object->volume->cache;
 
-       _enter("%pD,%li,%llx,%zx/%llx",
+       _enter("%pD,%llu,%llx,%zx/%llx",
               file, file_inode(file)->i_ino, start_pos, len,
               i_size_read(file_inode(file)));
 
diff --git a/fs/cachefiles/namei.c b/fs/cachefiles/namei.c
index 
e5ec90dccc27f71dc19219f7632f3e48eaf51545..4fdf7687aacb8285ae38d9b5d7e5129897b3ca03
 100644
--- a/fs/cachefiles/namei.c
+++ b/fs/cachefiles/namei.c
@@ -147,7 +147,7 @@ struct dentry *cachefiles_get_directory(struct 
cachefiles_cache *cache,
                }
                ASSERT(d_backing_inode(subdir));
 
-               _debug("mkdir -> %pd{ino=%lu}",
+               _debug("mkdir -> %pd{ino=%llu}",
                       subdir, d_backing_inode(subdir)->i_ino);
                if (_is_new)
                        *_is_new = true;
@@ -158,7 +158,7 @@ struct dentry *cachefiles_get_directory(struct 
cachefiles_cache *cache,
        end_creating_keep(subdir);
 
        if (!__cachefiles_mark_inode_in_use(NULL, d_inode(subdir))) {
-               pr_notice("cachefiles: Inode already in use: %pd (B=%lx)\n",
+               pr_notice("cachefiles: Inode already in use: %pd (B=%llx)\n",
                          subdir, d_inode(subdir)->i_ino);
                goto mark_error;
        }
@@ -183,7 +183,7 @@ struct dentry *cachefiles_get_directory(struct 
cachefiles_cache *cache,
            !d_backing_inode(subdir)->i_op->unlink)
                goto check_error;
 
-       _leave(" = [%lu]", d_backing_inode(subdir)->i_ino);
+       _leave(" = [%llu]", d_backing_inode(subdir)->i_ino);
        return subdir;
 
 check_error:
@@ -529,7 +529,7 @@ static bool cachefiles_create_file(struct cachefiles_object 
*object)
 
        set_bit(FSCACHE_COOKIE_NEEDS_UPDATE, &object->cookie->flags);
        set_bit(CACHEFILES_OBJECT_USING_TMPFILE, &object->flags);
-       _debug("create -> %pD{ino=%lu}", file, file_inode(file)->i_ino);
+       _debug("create -> %pD{ino=%llu}", file, file_inode(file)->i_ino);
        object->file = file;
        return true;
 }
@@ -549,7 +549,7 @@ static bool cachefiles_open_file(struct cachefiles_object 
*object,
        _enter("%pd", dentry);
 
        if (!cachefiles_mark_inode_in_use(object, d_inode(dentry))) {
-               pr_notice("cachefiles: Inode already in use: %pd (B=%lx)\n",
+               pr_notice("cachefiles: Inode already in use: %pd (B=%llx)\n",
                          dentry, d_inode(dentry)->i_ino);
                return false;
        }
@@ -657,7 +657,7 @@ bool cachefiles_look_up_object(struct cachefiles_object 
*object)
        if (!ret)
                return false;
 
-       _leave(" = t [%lu]", file_inode(object->file)->i_ino);
+       _leave(" = t [%llu]", file_inode(object->file)->i_ino);
        return true;
 
 new_file:
diff --git a/fs/cachefiles/xattr.c b/fs/cachefiles/xattr.c
index 
52383b1d0ba63d4a09413177d8c0d841b5b5b43c..f8ae78b3f7b6d368526a86b454bf0febd1ccc509
 100644
--- a/fs/cachefiles/xattr.c
+++ b/fs/cachefiles/xattr.c
@@ -179,7 +179,7 @@ int cachefiles_remove_object_xattr(struct cachefiles_cache 
*cache,
                        ret = 0;
                else if (ret != -ENOMEM)
                        cachefiles_io_error(cache,
-                                           "Can't remove xattr from %lu"
+                                           "Can't remove xattr from %llu"
                                            " (error %d)",
                                            d_backing_inode(dentry)->i_ino, 
-ret);
        }

-- 
2.53.0


Reply via email to