#define RES_SEEK_POS_LO m9_l4
#define RES_SYMLOOP m9_s3
#define RES_UID m9_s4
+#define RES_CONREQS m9_s3
/* VFS/FS flags */
#define REQ_RDONLY 001
fs_m_out.RES_GID = root->i_stat.gid;
fs_m_out.RES_DEV = NO_DEV;
+ fs_m_out.RES_CONREQS = 1;/* We can handle only 1 request at a time */
+
fs_mounted = TRUE;
return OK;
fs_m_out.RES_UID = root_ip->i_uid;
fs_m_out.RES_GID = root_ip->i_gid;
+ fs_m_out.RES_CONREQS = 1; /* We can handle only 1 request at a time */
+
return(r);
}
m_out.RES_GID = opt.gid;
m_out.RES_DEV = NO_DEV;
+ m_out.RES_CONREQS = 1; /* We can handle only 1 request at a time */
+
state.mounted = TRUE;
return OK;
fs_m_out.RES_UID = SYS_UID; /* Always root */
fs_m_out.RES_GID = SYS_GID; /* operator */
+ fs_m_out.RES_CONREQS = 1; /* We can handle only 1 request at a time */
+
return(r);
}
fs_m_out.RES_UID = root_ip->i_uid;
fs_m_out.RES_GID = root_ip->i_gid;
+ fs_m_out.RES_CONREQS = 1; /* We can handle only 1 request at a time */
+
return(r);
}