namei.c (18bb1db3e7607e4a997d50991a6f9fa5b0f8722c) namei.c (4acdaf27ebe2034c342f3be57ef49aed1ad885ef)
1/*
2 * linux/fs/minix/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7#include "minix.h"
8

--- 40 unchanged lines hidden (view full) ---

49 if (inode) {
50 minix_set_inode(inode, rdev);
51 mark_inode_dirty(inode);
52 error = add_nondir(dentry, inode);
53 }
54 return error;
55}
56
1/*
2 * linux/fs/minix/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7#include "minix.h"
8

--- 40 unchanged lines hidden (view full) ---

49 if (inode) {
50 minix_set_inode(inode, rdev);
51 mark_inode_dirty(inode);
52 error = add_nondir(dentry, inode);
53 }
54 return error;
55}
56
57static int minix_create(struct inode * dir, struct dentry *dentry, int mode,
57static int minix_create(struct inode *dir, struct dentry *dentry, umode_t mode,
58 struct nameidata *nd)
59{
60 return minix_mknod(dir, dentry, mode, 0);
61}
62
63static int minix_symlink(struct inode * dir, struct dentry *dentry,
64 const char * symname)
65{

--- 204 unchanged lines hidden ---
58 struct nameidata *nd)
59{
60 return minix_mknod(dir, dentry, mode, 0);
61}
62
63static int minix_symlink(struct inode * dir, struct dentry *dentry,
64 const char * symname)
65{

--- 204 unchanged lines hidden ---