Commit 632861f0 authored by Al Viro's avatar Al Viro
Browse files

pohmelfs: propagate umode_t



Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 09208d15
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -590,13 +590,13 @@ out:
 * during writeback for given inode.
 */
struct pohmelfs_inode *pohmelfs_create_entry_local(struct pohmelfs_sb *psb,
	struct pohmelfs_inode *parent, struct qstr *str, u64 start, int mode)
	struct pohmelfs_inode *parent, struct qstr *str, u64 start, umode_t mode)
{
	struct pohmelfs_inode *npi;
	int err = -ENOMEM;
	struct netfs_inode_info info;

	dprintk("%s: name: '%s', mode: %o, start: %llu.\n",
	dprintk("%s: name: '%s', mode: %ho, start: %llu.\n",
			__func__, str->name, mode, start);

	info.mode = mode;
@@ -630,7 +630,8 @@ err_out_unlock:
/*
 * Create local object and bind it to dentry.
 */
static int pohmelfs_create_entry(struct inode *dir, struct dentry *dentry, u64 start, int mode)
static int pohmelfs_create_entry(struct inode *dir, struct dentry *dentry,
				 u64 start, umode_t mode)
{
	struct pohmelfs_sb *psb = POHMELFS_SB(dir->i_sb);
	struct pohmelfs_inode *npi, *parent;
+1 −1
Original line number Diff line number Diff line
@@ -776,7 +776,7 @@ struct pohmelfs_name *pohmelfs_search_hash(struct pohmelfs_inode *pi, u32 hash);
void pohmelfs_inode_del_inode(struct pohmelfs_sb *psb, struct pohmelfs_inode *pi);

struct pohmelfs_inode *pohmelfs_create_entry_local(struct pohmelfs_sb *psb,
	struct pohmelfs_inode *parent, struct qstr *str, u64 start, int mode);
	struct pohmelfs_inode *parent, struct qstr *str, u64 start, umode_t mode);

int pohmelfs_write_create_inode(struct pohmelfs_inode *pi);

+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ static struct backing_dev_info ramfs_backing_dev_info = {
};

struct inode *ramfs_get_inode(struct super_block *sb,
				const struct inode *dir, int mode, dev_t dev)
				const struct inode *dir, umode_t mode, dev_t dev)
{
	struct inode * inode = new_inode(sb);

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
#define _LINUX_RAMFS_H

struct inode *ramfs_get_inode(struct super_block *sb, const struct inode *dir,
	 int mode, dev_t dev);
	 umode_t mode, dev_t dev);
extern struct dentry *ramfs_mount(struct file_system_type *fs_type,
	 int flags, const char *dev_name, void *data);