Commit 7b796ae3 authored by Martin Brandenburg's avatar Martin Brandenburg Committed by Mike Marshall

orangefs: remove ORANGEFS_READDIR macros

They are clones of the ORANGEFS_ITERATE macros in use elsewhere.  Delete
ORANGEFS_ITERATE_NEXT which is a hack previously used by readdir.
Signed-off-by: default avatarMartin Brandenburg <martin@omnibond.com>
Signed-off-by: default avatarMike Marshall <hubcap@omnibond.com>
parent 480e3e53
...@@ -304,13 +304,13 @@ static int orangefs_dir_iterate(struct file *file, ...@@ -304,13 +304,13 @@ static int orangefs_dir_iterate(struct file *file,
* Must read more if the user has sought past what has been read * Must read more if the user has sought past what has been read
* so far. Stop a user who has sought past the end. * so far. Stop a user who has sought past the end.
*/ */
while (od->token != ORANGEFS_READDIR_END && while (od->token != ORANGEFS_ITERATE_END &&
ctx->pos > od->end) { ctx->pos > od->end) {
r = orangefs_dir_more(oi, od, dentry); r = orangefs_dir_more(oi, od, dentry);
if (r) if (r)
return r; return r;
} }
if (od->token == ORANGEFS_READDIR_END && ctx->pos > od->end) if (od->token == ORANGEFS_ITERATE_END && ctx->pos > od->end)
return -EIO; return -EIO;
/* Then try to fill if there's any left in the buffer. */ /* Then try to fill if there's any left in the buffer. */
...@@ -321,7 +321,7 @@ static int orangefs_dir_iterate(struct file *file, ...@@ -321,7 +321,7 @@ static int orangefs_dir_iterate(struct file *file,
} }
/* Finally get some more and try to fill. */ /* Finally get some more and try to fill. */
if (od->token != ORANGEFS_READDIR_END) { if (od->token != ORANGEFS_ITERATE_END) {
r = orangefs_dir_more(oi, od, dentry); r = orangefs_dir_more(oi, od, dentry);
if (r) if (r)
return r; return r;
...@@ -339,7 +339,7 @@ static int orangefs_dir_open(struct inode *inode, struct file *file) ...@@ -339,7 +339,7 @@ static int orangefs_dir_open(struct inode *inode, struct file *file)
if (!file->private_data) if (!file->private_data)
return -ENOMEM; return -ENOMEM;
od = file->private_data; od = file->private_data;
od->token = ORANGEFS_READDIR_START; od->token = ORANGEFS_ITERATE_START;
od->part = NULL; od->part = NULL;
od->end = 1 << PART_SHIFT; od->end = 1 << PART_SHIFT;
od->error = 0; od->error = 0;
......
...@@ -138,13 +138,8 @@ typedef __s64 ORANGEFS_offset; ...@@ -138,13 +138,8 @@ typedef __s64 ORANGEFS_offset;
#define ORANGEFS_G_SGID (1 << 10) #define ORANGEFS_G_SGID (1 << 10)
#define ORANGEFS_U_SUID (1 << 11) #define ORANGEFS_U_SUID (1 << 11)
/* definition taken from stdint.h */ #define ORANGEFS_ITERATE_START 2147483646
#define INT32_MAX (2147483647) #define ORANGEFS_ITERATE_END 2147483645
#define ORANGEFS_ITERATE_START (INT32_MAX - 1)
#define ORANGEFS_ITERATE_END (INT32_MAX - 2)
#define ORANGEFS_ITERATE_NEXT (INT32_MAX - 3)
#define ORANGEFS_READDIR_START ORANGEFS_ITERATE_START
#define ORANGEFS_READDIR_END ORANGEFS_ITERATE_END
#define ORANGEFS_IMMUTABLE_FL FS_IMMUTABLE_FL #define ORANGEFS_IMMUTABLE_FL FS_IMMUTABLE_FL
#define ORANGEFS_APPEND_FL FS_APPEND_FL #define ORANGEFS_APPEND_FL FS_APPEND_FL
#define ORANGEFS_NOATIME_FL FS_NOATIME_FL #define ORANGEFS_NOATIME_FL FS_NOATIME_FL
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment