]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
orangefs: remove unused variable
authorMartin Brandenburg <martin@omnibond.com>
Mon, 4 Apr 2016 20:26:38 +0000 (16:26 -0400)
committerMike Marshall <hubcap@omnibond.com>
Fri, 8 Apr 2016 19:50:44 +0000 (15:50 -0400)
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
fs/orangefs/dir.c

index ba7dec40771e6d902e43551efcba9f528034faf1..324f0af40d7bd3c4c014c5e8de7a7b2b56e129b7 100644 (file)
@@ -153,7 +153,6 @@ static int orangefs_readdir(struct file *file, struct dir_context *ctx)
        struct dentry *dentry = file->f_path.dentry;
        struct orangefs_kernel_op_s *new_op = NULL;
        struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(dentry->d_inode);
-       int buffer_full = 0;
        struct orangefs_readdir_response_s readdir_response;
        void *dents_buf;
        int i = 0;
@@ -350,8 +349,7 @@ get_new_buffer_index:
        /*
         * Did we hit the end of the directory?
         */
-       if (readdir_response.token == ORANGEFS_READDIR_END &&
-           !buffer_full) {
+       if (readdir_response.token == ORANGEFS_READDIR_END) {
                gossip_debug(GOSSIP_DIR_DEBUG,
                "End of dir detected; setting ctx->pos to ORANGEFS_READDIR_END.\n");
                ctx->pos = ORANGEFS_READDIR_END;