summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_sched.c
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2014-07-09 14:42:53 +0000
committerguenther <guenther@openbsd.org>2014-07-09 14:42:53 +0000
commite3b67b35f99e1f906cb119571c0efb88a1914542 (patch)
treef2962386a6d666e812277a3b6090772c65b127df /sys/compat/linux/linux_sched.c
parentFixes a resume time page table issue on amd64 if the piglet was located (diff)
downloadwireguard-openbsd-e3b67b35f99e1f906cb119571c0efb88a1914542.tar.xz
wireguard-openbsd-e3b67b35f99e1f906cb119571c0efb88a1914542.zip
Delete an obsolete comment
Diffstat (limited to 'sys/compat/linux/linux_sched.c')
-rw-r--r--sys/compat/linux/linux_sched.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/compat/linux/linux_sched.c b/sys/compat/linux/linux_sched.c
index 02c15c20f90..f71820b4818 100644
--- a/sys/compat/linux/linux_sched.c
+++ b/sys/compat/linux/linux_sched.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: linux_sched.c,v 1.17 2014/03/30 21:54:49 guenther Exp $ */
+/* $OpenBSD: linux_sched.c,v 1.18 2014/07/09 14:42:53 guenther Exp $ */
/* $NetBSD: linux_sched.c,v 1.6 2000/05/28 05:49:05 thorpej Exp $ */
/*-
@@ -169,12 +169,6 @@ linux_sys_clone(struct proc *p, void *v, register_t *retval)
else
emul->set_tls_base = 0;
- /*
- * Note that Linux does not provide a portable way of specifying
- * the stack area; the caller must know if the stack grows up
- * or down. So, we pass a stack size of 0, so that the code
- * that makes this adjustment is a noop.
- */
error = fork1(p, flags, SCARG(uap, stack), 0, linux_child_return,
NULL, retval, NULL);
if (error)