1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Comment out mqfs_create_link. Inline some small functions.

This commit is contained in:
David Xu 2005-12-09 02:38:29 +00:00
parent 5c4745177f
commit 102178d0df
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=153254

View File

@ -219,12 +219,12 @@ static struct fileops mqueueops;
#ifdef notyet
static struct mqfs_node *mqfs_create_dir(struct mqfs_node *parent,
const char *name, int namelen);
static struct mqfs_node *mqfs_create_link(struct mqfs_node *parent,
const char *name, int namelen);
#endif
static struct mqfs_node *mqfs_create_file(struct mqfs_node *parent,
const char *name, int namelen);
struct mqfs_node *mqfs_create_link(struct mqfs_node *parent,
const char *name, int namelen);
static int mqfs_destroy(struct mqfs_node *mn);
static void mqfs_fileno_alloc(struct mqfs_info *mi, struct mqfs_node *mn);
static void mqfs_fileno_free(struct mqfs_info *mi, struct mqfs_node *mn);
@ -1845,13 +1845,13 @@ notifier_search(struct proc *p, int fd)
return (nt);
}
static void
static __inline void
notifier_insert(struct proc *p, struct mqueue_notifier *nt)
{
LIST_INSERT_HEAD(&p->p_mqnotifier, nt, nt_link);
}
static void
static __inline void
notifier_delete(struct proc *p, struct mqueue_notifier *nt)
{
LIST_REMOVE(nt, nt_link);