summaryrefslogtreecommitdiff
path: root/emulators/vmware3/files/fo_ioctl.patch
blob: 6cfde2c4c06f6ea723557e542c86b997f8ff5b58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
--- vmmon-only/freebsd/linux_emu.c	Tue Aug 20 12:40:02 2002
+++ vmmon-only/freebsd/linux_emu.c	Tue Aug 20 12:42:23 2002
@@ -306,7 +306,7 @@
 	struct linux_floppy_struct fls;
 	struct fd_type fdt;
 
-	if ((error = fo_ioctl(fp, FD_GTYPE, (caddr_t)&fdt, td)) != 0)
+	if ((error = fo_ioctl(fp, FD_GTYPE, (caddr_t)&fdt, td->td_ucred, td)) != 0)
 	    return error;
 	bzero(&fls, sizeof(fls));
 	
@@ -330,7 +330,7 @@
 	struct linux_hd_geometry drive_geo;
 	struct disklabel dl;
 	
-	if ((error = fo_ioctl(fp, DIOCGDINFO, (caddr_t)&dl, td)) != 0)
+	if ((error = fo_ioctl(fp, DIOCGDINFO, (caddr_t)&dl, td->td_ucred, td)) != 0)
 	    return error;
 
 	bzero(&drive_geo, sizeof(drive_geo));
@@ -351,7 +351,7 @@
 	struct linux_hd_driveid driveid;
 	unsigned int capacity;
 
-	if ((error = fo_ioctl(fp, DIOCGDINFO, (caddr_t)&dl, td)) != 0)
+	if ((error = fo_ioctl(fp, DIOCGDINFO, (caddr_t)&dl, td->td_ucred, td)) != 0)
 	    return error;
 
 	bzero(&driveid, sizeof(driveid));
@@ -388,7 +388,7 @@
 	struct ioc_vol bsd_vol;
 	struct linux_cdrom_volctrl linux_vol;
 
-	if ((error = fo_ioctl(fp, CDIOCGETVOL, (caddr_t)&bsd_vol, td)) != 0)
+	if ((error = fo_ioctl(fp, CDIOCGETVOL, (caddr_t)&bsd_vol, td->td_ucred, td)) != 0)
 	    return error;
 
 	linux_vol.channel0 = bsd_vol.vol[0];
@@ -411,7 +411,7 @@
 	if ((error = copyin(muls, &ms, sizeof(ms))) != 0)
 	    return error;
 
-	if ((error = fo_ioctl(fp, CDIOREADTOCHEADER, (caddr_t)&h, td)) != 0)
+	if ((error = fo_ioctl(fp, CDIOREADTOCHEADER, (caddr_t)&h, td->td_ucred, td)) != 0)
 	    return error;
 	
 	bzero(&t, sizeof(t));
@@ -419,7 +419,7 @@
 	t.address_format = ms.addr_format ; /* BSD and LINUX formats equal */
 	t.track = 0; /* get content from the first track */
 
-	if ((error = fo_ioctl(fp, CDIOREADTOCENTRY, (caddr_t)&t, td)) != 0) 
+	if ((error = fo_ioctl(fp, CDIOREADTOCENTRY, (caddr_t)&t, td->td_ucred, td)) != 0) 
 	    return error;
 	    
 	bsd_to_linux_msf_lba(ms.addr_format, &t.entry.addr, &ms.addr);
--- vmnet-only/freebsd/vmnet_linux.c	Tue Aug 20 12:40:02 2002
+++ vmnet-only/freebsd/vmnet_linux.c	Tue Aug 20 12:42:59 2002
@@ -90,7 +90,7 @@
 
     switch (macAddr.version) {
 	case 1:
-	  error = fo_ioctl(fp, SIOCSIFADDR, (caddr_t)macAddr.addr, td);
+	  error = fo_ioctl(fp, SIOCSIFADDR, (caddr_t)macAddr.addr, td->td_ucred, td);
 	  DEB(printf("Get ethernet address: %6D\n", macAddr.addr, ":"));
 	  break;
 	default: