summaryrefslogtreecommitdiff
path: root/sys/src/lib9p/mount.c
blob: 1ab41825ce15b0538ac878af419b84aa24c1cc0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <u.h>
#include <libc.h>
#include <fcall.h>
#include <thread.h>
#include <9p.h>
#include <auth.h>

void
postmountsrv(Srv *s, char *name, char *mtpt, int flag)
{
	int sfd;

	sfd = postsrv(s, name);
	if(sfd < 0)
		sysfatal("postsrv: %r");
	if(mtpt != nil){
		if(amount(sfd, mtpt, flag, "") == -1)
			sysfatal("mount %s: %r", mtpt);
		/* mount closed sfd */
	} else
		close(sfd);
}