vfs: make first argument of dir_context.actor typed
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -75,11 +75,11 @@ struct ecryptfs_getdents_callback {
|
||||
|
||||
/* Inspired by generic filldir in fs/readdir.c */
|
||||
static int
|
||||
ecryptfs_filldir(void *dirent, const char *lower_name, int lower_namelen,
|
||||
loff_t offset, u64 ino, unsigned int d_type)
|
||||
ecryptfs_filldir(struct dir_context *ctx, const char *lower_name,
|
||||
int lower_namelen, loff_t offset, u64 ino, unsigned int d_type)
|
||||
{
|
||||
struct ecryptfs_getdents_callback *buf =
|
||||
(struct ecryptfs_getdents_callback *)dirent;
|
||||
container_of(ctx, struct ecryptfs_getdents_callback, ctx);
|
||||
size_t name_size;
|
||||
char *name;
|
||||
int rc;
|
||||
|
Reference in New Issue
Block a user