mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 06:37:59 +00:00
9p: propagate umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
587228be4a
commit
3eda0de677
4 changed files with 15 additions and 14 deletions
|
@ -54,9 +54,9 @@ extern struct kmem_cache *v9fs_inode_cache;
|
||||||
|
|
||||||
struct inode *v9fs_alloc_inode(struct super_block *sb);
|
struct inode *v9fs_alloc_inode(struct super_block *sb);
|
||||||
void v9fs_destroy_inode(struct inode *inode);
|
void v9fs_destroy_inode(struct inode *inode);
|
||||||
struct inode *v9fs_get_inode(struct super_block *sb, int mode, dev_t);
|
struct inode *v9fs_get_inode(struct super_block *sb, umode_t mode, dev_t);
|
||||||
int v9fs_init_inode(struct v9fs_session_info *v9ses,
|
int v9fs_init_inode(struct v9fs_session_info *v9ses,
|
||||||
struct inode *inode, int mode, dev_t);
|
struct inode *inode, umode_t mode, dev_t);
|
||||||
void v9fs_evict_inode(struct inode *inode);
|
void v9fs_evict_inode(struct inode *inode);
|
||||||
ino_t v9fs_qid2ino(struct p9_qid *qid);
|
ino_t v9fs_qid2ino(struct p9_qid *qid);
|
||||||
void v9fs_stat2inode(struct p9_wstat *, struct inode *, struct super_block *);
|
void v9fs_stat2inode(struct p9_wstat *, struct inode *, struct super_block *);
|
||||||
|
|
|
@ -59,7 +59,7 @@ static const struct inode_operations v9fs_symlink_inode_operations;
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, int mode)
|
static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, umode_t mode)
|
||||||
{
|
{
|
||||||
int res;
|
int res;
|
||||||
res = mode & 0777;
|
res = mode & 0777;
|
||||||
|
@ -94,11 +94,11 @@ static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, int mode)
|
||||||
* @rdev: major number, minor number in case of device files.
|
* @rdev: major number, minor number in case of device files.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
static int p9mode2unixmode(struct v9fs_session_info *v9ses,
|
static umode_t p9mode2unixmode(struct v9fs_session_info *v9ses,
|
||||||
struct p9_wstat *stat, dev_t *rdev)
|
struct p9_wstat *stat, dev_t *rdev)
|
||||||
{
|
{
|
||||||
int res;
|
int res;
|
||||||
int mode = stat->mode;
|
u32 mode = stat->mode;
|
||||||
|
|
||||||
res = mode & S_IALLUGO;
|
res = mode & S_IALLUGO;
|
||||||
*rdev = 0;
|
*rdev = 0;
|
||||||
|
@ -255,7 +255,7 @@ void v9fs_destroy_inode(struct inode *inode)
|
||||||
}
|
}
|
||||||
|
|
||||||
int v9fs_init_inode(struct v9fs_session_info *v9ses,
|
int v9fs_init_inode(struct v9fs_session_info *v9ses,
|
||||||
struct inode *inode, int mode, dev_t rdev)
|
struct inode *inode, umode_t mode, dev_t rdev)
|
||||||
{
|
{
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
|
@ -329,7 +329,7 @@ int v9fs_init_inode(struct v9fs_session_info *v9ses,
|
||||||
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
P9_DPRINTK(P9_DEBUG_ERROR, "BAD mode 0x%x S_IFMT 0x%x\n",
|
P9_DPRINTK(P9_DEBUG_ERROR, "BAD mode 0x%hx S_IFMT 0x%x\n",
|
||||||
mode, mode & S_IFMT);
|
mode, mode & S_IFMT);
|
||||||
err = -EINVAL;
|
err = -EINVAL;
|
||||||
goto error;
|
goto error;
|
||||||
|
@ -346,13 +346,13 @@ error:
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct inode *v9fs_get_inode(struct super_block *sb, int mode, dev_t rdev)
|
struct inode *v9fs_get_inode(struct super_block *sb, umode_t mode, dev_t rdev)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
struct inode *inode;
|
struct inode *inode;
|
||||||
struct v9fs_session_info *v9ses = sb->s_fs_info;
|
struct v9fs_session_info *v9ses = sb->s_fs_info;
|
||||||
|
|
||||||
P9_DPRINTK(P9_DEBUG_VFS, "super block: %p mode: %o\n", sb, mode);
|
P9_DPRINTK(P9_DEBUG_VFS, "super block: %p mode: %ho\n", sb, mode);
|
||||||
|
|
||||||
inode = new_inode(sb);
|
inode = new_inode(sb);
|
||||||
if (!inode) {
|
if (!inode) {
|
||||||
|
@ -486,7 +486,8 @@ static struct inode *v9fs_qid_iget(struct super_block *sb,
|
||||||
int new)
|
int new)
|
||||||
{
|
{
|
||||||
dev_t rdev;
|
dev_t rdev;
|
||||||
int retval, umode;
|
int retval;
|
||||||
|
umode_t umode;
|
||||||
unsigned long i_ino;
|
unsigned long i_ino;
|
||||||
struct inode *inode;
|
struct inode *inode;
|
||||||
struct v9fs_session_info *v9ses = sb->s_fs_info;
|
struct v9fs_session_info *v9ses = sb->s_fs_info;
|
||||||
|
@ -1125,7 +1126,7 @@ void
|
||||||
v9fs_stat2inode(struct p9_wstat *stat, struct inode *inode,
|
v9fs_stat2inode(struct p9_wstat *stat, struct inode *inode,
|
||||||
struct super_block *sb)
|
struct super_block *sb)
|
||||||
{
|
{
|
||||||
mode_t mode;
|
umode_t mode;
|
||||||
char ext[32];
|
char ext[32];
|
||||||
char tag_name[14];
|
char tag_name[14];
|
||||||
unsigned int i_nlink;
|
unsigned int i_nlink;
|
||||||
|
|
|
@ -594,7 +594,7 @@ int v9fs_vfs_setattr_dotl(struct dentry *dentry, struct iattr *iattr)
|
||||||
void
|
void
|
||||||
v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
|
v9fs_stat2inode_dotl(struct p9_stat_dotl *stat, struct inode *inode)
|
||||||
{
|
{
|
||||||
mode_t mode;
|
umode_t mode;
|
||||||
struct v9fs_inode *v9inode = V9FS_I(inode);
|
struct v9fs_inode *v9inode = V9FS_I(inode);
|
||||||
|
|
||||||
if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
|
if ((stat->st_result_mask & P9_STATS_BASIC) == P9_STATS_BASIC) {
|
||||||
|
|
|
@ -117,7 +117,7 @@ static struct dentry *v9fs_mount(struct file_system_type *fs_type, int flags,
|
||||||
struct inode *inode = NULL;
|
struct inode *inode = NULL;
|
||||||
struct dentry *root = NULL;
|
struct dentry *root = NULL;
|
||||||
struct v9fs_session_info *v9ses = NULL;
|
struct v9fs_session_info *v9ses = NULL;
|
||||||
int mode = S_IRWXUGO | S_ISVTX;
|
umode_t mode = S_IRWXUGO | S_ISVTX;
|
||||||
struct p9_fid *fid;
|
struct p9_fid *fid;
|
||||||
int retval = 0;
|
int retval = 0;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue