Commit f2322b1c authored by David Woodhouse's avatar David Woodhouse Committed by Chris Mason

Btrfs: Optimise NFS readdir hack slightly; don't call readdir() again when done

Date: Sun, 17 Aug 2008 17:12:56 +0100
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
parent 49593bfa
...@@ -2040,6 +2040,7 @@ struct nfshack_dirent { ...@@ -2040,6 +2040,7 @@ struct nfshack_dirent {
struct nfshack_readdir { struct nfshack_readdir {
char *dirent; char *dirent;
size_t used; size_t used;
int full;
}; };
...@@ -2052,8 +2053,10 @@ static int btrfs_nfshack_filldir(void *__buf, const char *name, int namlen, ...@@ -2052,8 +2053,10 @@ static int btrfs_nfshack_filldir(void *__buf, const char *name, int namlen,
unsigned int reclen; unsigned int reclen;
reclen = ALIGN(sizeof(struct nfshack_dirent) + namlen, sizeof(u64)); reclen = ALIGN(sizeof(struct nfshack_dirent) + namlen, sizeof(u64));
if (buf->used + reclen > PAGE_SIZE) if (buf->used + reclen > PAGE_SIZE) {
buf->full = 1;
return -EINVAL; return -EINVAL;
}
de->namlen = namlen; de->namlen = namlen;
de->offset = offset; de->offset = offset;
...@@ -2080,11 +2083,11 @@ static int btrfs_nfshack_readdir(struct file *file, void *dirent, ...@@ -2080,11 +2083,11 @@ static int btrfs_nfshack_readdir(struct file *file, void *dirent,
offset = file->f_pos; offset = file->f_pos;
while (1) { do {
unsigned int reclen; unsigned int reclen;
buf.used = 0; buf.used = 0;
buf.full = 0;
err = btrfs_real_readdir(file, &buf, btrfs_nfshack_filldir); err = btrfs_real_readdir(file, &buf, btrfs_nfshack_filldir);
if (err) if (err)
break; break;
...@@ -2108,7 +2111,7 @@ static int btrfs_nfshack_readdir(struct file *file, void *dirent, ...@@ -2108,7 +2111,7 @@ static int btrfs_nfshack_readdir(struct file *file, void *dirent,
size -= reclen; size -= reclen;
de = (struct nfshack_dirent *)((char *)de + reclen); de = (struct nfshack_dirent *)((char *)de + reclen);
} }
} } while (buf.full);
done: done:
free_page((unsigned long)buf.dirent); free_page((unsigned long)buf.dirent);
......
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