Remove useless SMP check code.

This commit is contained in:
Dag-Erling Smørgrav 2003-12-07 17:37:44 +00:00
parent 5c64c936ec
commit e4b3851568
2 changed files with 0 additions and 22 deletions

View File

@ -383,16 +383,6 @@ nwfs_quotactl(mp, cmd, uid, arg, td)
int
nwfs_init(struct vfsconf *vfsp)
{
#ifndef SMP
int name[2];
int olen, ncpu, plen, error;
name[0] = CTL_HW;
name[1] = HW_NCPU;
error = kernel_sysctl(curthread, name, 2, &ncpu, &olen, NULL, 0, &plen);
if (error == 0 && ncpu > 1)
printf("warning: nwfs module compiled without SMP support.");
#endif
nwfs_hash_init();
nwfs_pbuf_freecnt = nswbuf / 2 + 1;
NCPVODEBUG("always happy to load!\n");

View File

@ -330,18 +330,6 @@ smbfs_quotactl(mp, cmd, uid, arg, td)
int
smbfs_init(struct vfsconf *vfsp)
{
#ifndef SMP
int name[2];
int ncpu, error;
size_t olen, plen;
name[0] = CTL_HW;
name[1] = HW_NCPU;
error = kernel_sysctl(curthread, name, 2, &ncpu, &olen, NULL, 0, &plen);
if (error == 0 && ncpu > 1)
printf("warning: smbfs module compiled without SMP support.");
#endif
#ifdef SMBFS_USEZONE
smbfsmount_zone = zinit("SMBFSMOUNT", sizeof(struct smbmount), 0, 0, 1);
#endif