4 * Copyright (C) 2002 by John Newbigin
6 * Please add a note about your changes to smbfs in the ChangeLog file.
9 #include <linux/kernel.h>
10 #include <linux/errno.h>
11 #include <linux/fcntl.h>
12 #include <linux/stat.h>
14 #include <linux/slab.h>
15 #include <linux/pagemap.h>
16 #include <linux/net.h>
17 #include <linux/namei.h>
19 #include <asm/uaccess.h>
20 #include <asm/system.h>
22 #include <linux/smbno.h>
23 #include <linux/smb_fs.h>
25 #include "smb_debug.h"
28 int smb_symlink(struct inode
*inode
, struct dentry
*dentry
, const char *oldname
)
30 DEBUG1("create symlink %s -> %s/%s\n", oldname
, DENTRY_PATH(dentry
));
32 return smb_proc_symlink(server_from_dentry(dentry
), dentry
, oldname
);
35 static void *smb_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
37 char *link
= __getname();
38 DEBUG1("followlink of %s/%s\n", DENTRY_PATH(dentry
));
41 link
= ERR_PTR(-ENOMEM
);
43 int len
= smb_proc_read_link(server_from_dentry(dentry
),
44 dentry
, link
, PATH_MAX
- 1);
52 nd_set_link(nd
, link
);
56 static void smb_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *p
)
58 char *s
= nd_get_link(nd
);
63 const struct inode_operations smb_link_inode_operations
=
65 .readlink
= generic_readlink
,
66 .follow_link
= smb_follow_link
,
67 .put_link
= smb_put_link
,