Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Jul 2005 17:57:42 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 81178 for review
Message-ID:  <200507291757.j6THvg2R083178@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=81178

Change 81178 by jhb@jhb_slimer on 2005/07/29 17:57:19

	Add missing SYSVIPC module depends.

Affected files ...

.. //depot/projects/smpng/sys/compat/svr4/svr4_ipc.c#8 edit
.. //depot/projects/smpng/sys/i386/ibcs2/ibcs2_ipc.c#7 edit

Differences ...

==== //depot/projects/smpng/sys/compat/svr4/svr4_ipc.c#8 (text+ko) ====

@@ -385,6 +385,8 @@
 		return EINVAL;
 	}
 }
+
+MODULE_DEPEND(svr4elf, sysvsem, 1, 1, 1);
 #endif
 
 #ifdef SYSVMSG
@@ -579,6 +581,8 @@
 		return EINVAL;
 	}
 }
+
+MODULE_DEPEND(svr4elf, sysvmsg, 1, 1, 1);
 #endif
 
 #ifdef SYSVSHM
@@ -788,4 +792,6 @@
 		return ENOSYS;
 	}
 }
+
+MODULE_DEPEND(svr4elf, sysvshm, 1, 1, 1);
 #endif /* SYSVSHM */

==== //depot/projects/smpng/sys/i386/ibcs2/ibcs2_ipc.c#7 (text+ko) ====

@@ -405,3 +405,7 @@
 	}
 	return EINVAL;
 }
+
+MODULE_DEPEND(ibcs2, sysvmsg, 1, 1, 1);
+MODULE_DEPEND(ibcs2, sysvsem, 1, 1, 1);
+MODULE_DEPEND(ibcs2, sysvshm, 1, 1, 1);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507291757.j6THvg2R083178>