CVS commit: src/sys/rump/dev/lib/librnd

2016-05-30 Thread Antti Kantee
$ */ +/* $NetBSD: rnd_component.c,v 1.5 2016/05/30 14:52:06 pooka Exp $ */ /* * Copyright (c) 2009 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: rnd_component.c,v 1.4 2016/05/16 16:31:07 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rnd_co

CVS commit: src/sys/dev/usb

2016-05-17 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue May 17 11:37:51 UTC 2016 Modified Files: src/sys/dev/usb: usbdi.c Log Message: initialize buf to NULL for error branch on line 532 To generate a diff of this commit: cvs rdiff -u -r1.170 -r1.171 src/sys/dev/usb/usbdi.c Pleas

CVS commit: src/sys/dev/pci

2016-05-17 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue May 17 10:05:31 UTC 2016 Modified Files: src/sys/dev/pci: if_vioif.c Log Message: Try to get more packets going if the transmit interrupt indicates some were sent. Doing so avoids a situation where vioif_start never gets calle

CVS commit: src/sys/rump/dev/lib/librnd

2016-05-16 Thread Antti Kantee
/rnd_component.c:1.3 Tue Jan 26 23:12:16 2016 +++ src/sys/rump/dev/lib/librnd/rnd_component.c Mon May 16 16:31:07 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: rnd_component.c,v 1.3 2016/01/26 23:12:16 pooka Exp $ */ +/* $NetBSD: rnd_component.c,v 1.4 2016/05/16 16:31:07 pooka Exp $ */ /* * Copyright (c) 2009 Antti

CVS commit: src/tests/kernel

2016-05-13 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri May 13 13:22:29 UTC 2016 Modified Files: src/tests/kernel: t_rnd.c Log Message: mark read_random xfail kern/51135 To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/tests/kernel/t_rnd.c Please note that diffs ar

CVS commit: src/tests/kernel

2016-05-12 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu May 12 11:41:43 UTC 2016 Modified Files: src/tests/kernel: t_rnd.c Log Message: Test that reading /dev/random returns within a reasonable time. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/tests/kernel/t_rn

CVS commit: src/sys/rump/dev/lib/libpci

2016-05-10 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue May 10 19:38:29 UTC 2016 Modified Files: src/sys/rump/dev/lib/libpci: Makefile Log Message: Avoid '.' in variable names which are expected to be passed to this Makefile via the env. That character is strictly speaking not allo

CVS commit: src/sys/dev/usb

2016-05-10 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue May 10 15:14:03 UTC 2016 Modified Files: src/sys/dev/usb: ohci.c uhci.c xhci.c Log Message: sprinkle _KERNEL_OPT To generate a diff of this commit: cvs rdiff -u -r1.262 -r1.263 src/sys/dev/usb/ohci.c cvs rdiff -u -r1.272 -r1.

CVS commit: src/sys

2016-05-06 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri May 6 10:19:40 UTC 2016 Modified Files: src/sys/kern: init_sysent.c syscalls.c syscalls_autoload.c systrace_args.c src/sys/rump/include/rump: rump_syscalls.h src/sys/rump/librump/rumpkern: rump_sysca

CVS commit: src/sys/kern

2016-05-06 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri May 6 10:17:34 UTC 2016 Modified Files: src/sys/kern: syscalls.conf Log Message: Include non-portable inside RUMP_CLIENT protection. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/sys/kern/syscalls.conf

CVS commit: src/sys/rump/librump/rumpkern

2016-02-19 Thread Antti Kantee
$ */ /* * Copyright (c) 2010, 2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: scheduler.c,v 1.43 2016/02/08 18:18:19 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: scheduler.c,v 1.44 2016/02/19 18:38:37 pooka Exp $");

CVS commit: src/sys/rump

2016-02-08 Thread Antti Kantee
,v 1.3 2016/02/08 18:18:19 pooka Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved. @@ -144,7 +144,7 @@ typedef void (*rump_proc_vfs_release_fn) extern rump_proc_vfs_init_fn rump_proc_vfs_init; extern rump_proc_vfs_release_fn rump_proc_vfs_release; -extern struct

CVS commit: src/sys/rump/include/rump-sys

2016-02-02 Thread Antti Kantee
-2011 Antti Kantee. All Rights Reserved. @@ -228,13 +228,13 @@ struct rump_sysproxy_ops { }; extern struct rump_sysproxy_ops rump_sysproxy_ops; #define rump_sysproxy_copyin(arg, raddr, laddr, len) \ - rump_sysproxy_ops.rspo_copyin(arg, raddr, laddr, len) + rump_sysproxy_ops.rspo_copyin(arg,

CVS commit: src/sys/rump/librump/rumpvfs

2016-02-02 Thread Antti Kantee
$ */ /* * Copyright (c) 2009, 2010, 2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.137 2016/02/02 12:22:23 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.138 2016/02/02 13:02:34 pooka Exp $"); #include #inclu

CVS commit: src

2016-02-02 Thread Antti Kantee
right (c) 2009, 2010, 2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.136 2016/01/26 23:12:18 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.137 2016/02/02 12:22:23 pooka Exp $"); #include #inc

CVS commit: src/sys/rump/include/rump

2016-02-01 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Feb 2 01:15:58 UTC 2016 Modified Files: src/sys/rump/include/rump: rumpdefs.h rumperr.h rumperrno2host.h Log Message: regen To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/sys/rump/include/rump/rumpdefs.h c

CVS commit: src/sys/rump/include/rump

2016-02-01 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Feb 2 01:15:24 UTC 2016 Modified Files: src/sys/rump/include/rump: makerumpdefs.sh Log Message: snarf fcntl definitions To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/sys/rump/include/rump/makerumpdefs.sh

CVS commit: src/sys/rump/include/rump

2016-02-01 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Feb 2 01:14:26 UTC 2016 Modified Files: src/sys/rump/include/rump: rumpdefs.h rumperr.h rumperrno2host.h Log Message: periodic regen (because having new rcs ids in comments is most useful) To generate a diff of this commit:

CVS commit: src

2016-01-31 Thread Antti Kantee
oka Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved. @@ -132,89 +132,10 @@ _END_DECLS #endif /* - * Begin rump syscall conditionals. Yes, something a little better - * is required here. + * Include macros prehistorically provided by this header. + * The inclusion mi

CVS commit: src/sys

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:49:47 UTC 2016 Modified Files: src/sys/kern: init_sysent.c syscalls.c syscalls_autoload.c systrace_args.c src/sys/rump/include/rump: rump_syscalls.h src/sys/rump/librump/rumpkern: rump_sysca

CVS commit: src/sys/kern

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:46:37 UTC 2016 Modified Files: src/sys/kern: makesyscalls.sh Log Message: fix typo in previous To generate a diff of this commit: cvs rdiff -u -r1.163 -r1.164 src/sys/kern/makesyscalls.sh Please note that diffs are

CVS commit: src/sys/kern

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:44:58 UTC 2016 Modified Files: src/sys/kern: makesyscalls.sh Log Message: "rump_private" -> To generate a diff of this commit: cvs rdiff -u -r1.162 -r1.163 src/sys/kern/makesyscalls.sh Please note that diffs are n

CVS commit: src/sys/rump

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:41:15 UTC 2016 Modified Files: src/sys/rump/dev/lib/libucom: Makefile src/sys/rump/librump/rumpkern: Makefile.rumpkern Log Message: nuke a few missed -Ifactiondir CPPFLAGSitions. To generate a diff of this c

CVS commit: src/sys

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:30:10 UTC 2016 Modified Files: src/sys/kern: vnode_if.c src/sys/rump/include/rump: rumpvnode_if.h src/sys/rump/librump/rumpvfs: rumpvnode_if.c src/sys/sys: vnode_if.h Log Message: regen vnode i

CVS commit: src/sys/kern

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:28:06 UTC 2016 Modified Files: src/sys/kern: vnode_if.sh Log Message: "rump_private.h" -> To generate a diff of this commit: cvs rdiff -u -r1.60 -r1.61 src/sys/kern/vnode_if.sh Please note that diffs are not publi

CVS commit: src/sys/rump

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:25:41 UTC 2016 Modified Files: src/sys/rump/include/rump: rumpkern_if_pub.h rumpnet_if_pub.h rumpvfs_if_pub.h src/sys/rump/include/rump-sys: kern_if.h net_if.h vfs_if.h src/sys/rump/librump/

CVS commit: src/sys/rump

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:24:55 UTC 2016 Modified Files: src/sys/rump: makerumpsyscalls.sh Log Message: "rump_private.h" -> To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/rump/makerumpsyscalls.sh Please note that diffs

CVS commit: src/sys/rump/librump

2016-01-26 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Jan 26 23:22:22 UTC 2016 Modified Files: src/sys/rump/librump/rumpkern: rumpkern.ifspec src/sys/rump/librump/rumpnet: rumpnet.ifspec src/sys/rump/librump/rumpvfs: rumpvfs.ifspec Log Message: generate privhdrs to

CVS commit: src/sys/rump/librump

2016-01-26 Thread Antti Kantee
Thu Apr 23 10:50:00 2015 +++ src/sys/rump/librump/makerumpif.sh Tue Jan 26 23:21:18 2016 @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: makerumpif.sh,v 1.9 2015/04/23 10:50:00 pooka Exp $ +# $NetBSD: makerumpif.sh,v 1.10 2016/01/26 23:21:18 pooka Exp $ # # Copyright (c) 2009, 2015 Antti Kantee. All

CVS commit: src/sys/rump/include/rump

2016-01-25 Thread Antti Kantee
2007-2011 Antti Kantee. All Rights Reserved. @@ -46,17 +46,6 @@ struct lwp; struct modinfo; struct uio; -/* yetch */ -#if defined(__NetBSD__) -#include -#else -#ifndef HAVE_PROP_DICTIONARY_T -#define HAVE_PROP_DICTIONARY_T -struct prop_dictionary; -typedef struct prop_dictionary *prop_diction

CVS commit: src/usr.sbin/npf/npftest

2016-01-25 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Jan 25 12:24:41 UTC 2016 Modified Files: src/usr.sbin/npf/npftest: npftest.c Log Message: include proplib.h if you're going to useuseitit To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/usr.sbin/npf/npftest/

CVS commit: src/tests/rump/rumpkern/h_server

2016-01-25 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Jan 25 12:21:42 UTC 2016 Modified Files: src/tests/rump/rumpkern/h_server: h_simpleserver.c Log Message: include for bool To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/tests/rump/rumpkern/h_server/h_simples

CVS commit: src

2016-01-25 Thread Antti Kantee
31 2016 +++ src/lib/libp2k/p2k.c Mon Jan 25 11:45:58 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: p2k.c,v 1.67 2016/01/23 16:39:31 christos Exp $ */ +/* $NetBSD: p2k.c,v 1.68 2016/01/25 11:45:58 pooka Exp $ */ /* * Copyright (c) 2007, 2008, 2009 Antti Kantee. All Rights Reserved. @@ -58,6 +58

CVS commit: src/share/examples/rump

2016-01-25 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Jan 25 11:01:17 UTC 2016 Modified Files: src/share/examples/rump/ttyserv: Makefile src/share/examples/rump/umserv: Makefile Log Message: add -D_KERNTYPES To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src

CVS commit: src

2016-01-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Jan 25 00:24:23 UTC 2016 Modified Files: src/sys/rump: README.compileopts Added Files: src/lib/librumpuser: README.compileopts Log Message: Move librumpuser compile-time options into the librumpuser source directory. T

CVS commit: src/sys/sys

2016-01-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Sun Jan 24 22:50:23 UTC 2016 Modified Files: src/sys/sys: param.h Log Message: bump version for pr_output change To generate a diff of this commit: cvs rdiff -u -r1.490 -r1.491 src/sys/sys/param.h Please note that diffs are not

CVS commit: src/sys/rump/librump/rumpkern

2016-01-18 Thread Antti Kantee
Exp $ */ +/* $NetBSD: emul.c,v 1.177 2016/01/18 23:27:20 pooka Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.176 2016/01/18 23:21:28 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: emul.c,

CVS commit: src/sys/sys

2016-01-18 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Jan 18 23:27:49 UTC 2016 Modified Files: src/sys/sys: sysctl.h Log Message: Include only if it's needed. (fix build failure) To generate a diff of this commit: cvs rdiff -u -r1.218 -r1.219 src/sys/sys/sysctl.h Please note t

CVS commit: src/sys/rump/librump/rumpkern

2016-01-18 Thread Antti Kantee
) 2007-2011 Antti Kantee. All Rights Reserved. @@ -26,42 +26,20 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.175 2016/01/18 15:53:38 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: emul.c,v 1.176 2016/01/18 23:21:28 pooka Exp $"); #include -#include -#include

CVS commit: src/sys

2016-01-18 Thread Antti Kantee
:48 2015 +++ src/sys/rump/librump/rumpkern/rump.c Mon Jan 18 16:46:08 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: rump.c,v 1.325 2015/08/31 07:38:48 ozaki-r Exp $ */ +/* $NetBSD: rump.c,v 1.326 2016/01/18 16:46:08 pooka Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved. @@ -26,7

CVS commit: src/sys/rump/librump/rumpkern

2016-01-18 Thread Antti Kantee
/rumpkern/emul.c:1.174 Tue Dec 29 10:22:05 2015 +++ src/sys/rump/librump/rumpkern/emul.c Mon Jan 18 15:53:38 2016 @@ -1,4 +1,4 @@ -/* $NetBSD: emul.c,v 1.174 2015/12/29 10:22:05 pgoyette Exp $ */ +/* $NetBSD: emul.c,v 1.175 2016/01/18 15:53:38 pooka Exp $ */ /* * Copyright (c) 2007-2011 Antti

CVS commit: src/sys/rump/dev/lib/libpci

2016-01-18 Thread Antti Kantee
1.7 2016/01/18 14:37:53 pooka Exp $ */ /*- * Copyright (c) 2013 Antti Kantee. All Rights Reserved. @@ -272,6 +272,9 @@ bus_space_unmap(bus_space_tag_t bst, bus bus_size_t size) { + if (bst == 0) + return; + panic("%s: unimplemented", __func__); }

CVS commit: src/tests/fs/vfs

2016-01-13 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Wed Jan 13 12:05:49 UTC 2016 Modified Files: src/tests/fs/vfs: t_vnops.c Log Message: create_many: remove PR kern/50607 xfail Seems to have been fixed by ext2fs_lookup.c 1.79 (thanks, riastradh) To generate a diff of this commit

CVS commit: src/sys/rump/kern/lib/libtty

2016-01-07 Thread Antti Kantee
: tty_component.c,v 1.2 2015/08/20 11:59:16 christos Exp $ */ +/* $NetBSD: tty_component.c,v 1.3 2016/01/07 21:09:01 pooka Exp $ */ /* * Copyright (c) 2010 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: tty_component.c,v 1.2 2015/08/20 11:

CVS commit: src/sys/rump/include/opt

2016-01-07 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Jan 7 21:04:27 UTC 2016 Modified Files: src/sys/rump/include/opt: opt_rumpkernel.h Log Message: use WSEMUL_NO_DUMB and WSEMUL_VT100 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/rump/include/opt/opt_rum

CVS commit: src/sys/rump/include/rump

2016-01-07 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Jan 7 13:54:08 UTC 2016 Modified Files: src/sys/rump/include/rump: rumpdefs.h Log Message: regen To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/sys/rump/include/rump/rumpdefs.h Please note that diffs are

CVS commit: src/tests/fs/vfs

2016-01-02 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Sat Jan 2 12:11:31 UTC 2016 Modified Files: src/tests/fs/vfs: t_vnops.c Log Message: create_many: * add xfails for ext2 and udf * don't try to create a subdirectory for sysvbfs To generate a diff of this commit: cvs rdiff -u

CVS commit: src/tests/fs/vfs

2016-01-01 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 1 15:18:39 UTC 2016 Modified Files: src/tests/fs/vfs: t_vnops.c Log Message: use a shorter filename template in previous (for v7fs) To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 src/tests/fs/vfs/t_vnops.c

CVS commit: src/tests/fs/vfs

2016-01-01 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Jan 1 15:13:57 UTC 2016 Modified Files: src/tests/fs/vfs: t_vnops.c Log Message: Add a test which creates many directory entries. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 src/tests/fs/vfs/t_vnops.c Plea

CVS commit: src/sys/rump/dev/lib

2015-11-16 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Nov 17 01:07:34 UTC 2015 Modified Files: src/sys/rump/dev/lib: Makefile.inc Log Message: Fix argument to empty() Guess none of the fast-running tests exercised the component being initialized ... To generate a diff of this c

CVS commit: src/sys/rump/dev

2015-11-16 Thread Antti Kantee
tBSD: component_simple.c,v 1.1 2015/11/11 21:52:45 pooka Exp $ */ +/* $NetBSD: component_simple.c,v 1.2 2015/11/16 23:27:07 pooka Exp $ */ /* * Copyright (c) 2015 Antti Kantee. All Rights Reserved. @@ -25,12 +25,8 @@ * SUCH DAMAGE. */ -#ifndef COMPONENT_NAME -#error Internal error: COMPO

CVS commit: src/sys/rump

2015-11-15 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Sun Nov 15 16:54:16 UTC 2015 Modified Files: src/sys/rump/dev: Makefile.rumpdevcomp src/sys/rump/fs: Makefile.rumpfscomp src/sys/rump/kern: Makefile.rumpkerncomp src/sys/rump/net: Makefile.rumpnetcomp Log Me

CVS commit: src

2015-11-15 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Sun Nov 15 13:50:10 UTC 2015 Modified Files: src/share/mk: bsd.own.mk src/sys/rump: Makefile.rump Log Message: describe => rumpdescribe To generate a diff of this commit: cvs rdiff -u -r1.879 -r1.880 src/share/mk/bsd.own.

CVS commit: src/sys/fs/sysvbfs

2015-11-13 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Nov 13 13:36:54 UTC 2015 Modified Files: src/sys/fs/sysvbfs: sysvbfs_vnops.c Log Message: Fix bug in readdir loop condition. Reading all dirents using a small buffer and multiple calls now works. Bug found by "Shamar" on #rum

CVS commit: src/usr.bin/config

2015-11-12 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Nov 12 14:38:21 UTC 2015 Modified Files: src/usr.bin/config: defs.h mkioconf.c Log Message: In ioconfname mode, #define IOCONF as the ioconf token. Avoids having to retype the name to call config_init/fini_component(). To ge

CVS commit: src/sys/rump/dev/lib

2015-11-11 Thread Antti Kantee
@@ -0,0 +1,53 @@ +/* $NetBSD: component_simple.c,v 1.1 2015/11/11 21:52:45 pooka Exp $ */ + +/* + * Copyright (c) 2015 Antti Kantee. All Rights Reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions

CVS commit: src/sys/rump/dev/lib/libpci

2015-11-01 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Sun Nov 1 22:41:24 UTC 2015 Modified Files: src/sys/rump/dev/lib/libpci: Makefile Log Message: Allow PCI implementers to specify arbitrary makefile constructs. (interface subject to change) from Robert Millan To generate a diff

CVS commit: src/sys/rump/include/rump

2015-11-01 Thread Antti Kantee
ump/include/rump/rump.h:1.63 Fri Jun 13 15:45:02 2014 +++ src/sys/rump/include/rump/rump.h Sun Nov 1 12:34:28 2015 @@ -1,4 +1,4 @@ -/* $NetBSD: rump.h,v 1.63 2014/06/13 15:45:02 pooka Exp $ */ +/* $NetBSD: rump.h,v 1.64 2015/11/01 12:34:28 pooka Exp $ */ /* * Copyright (c) 2007-2011 Antti Kan

CVS commit: src/sys/dev/pci

2015-11-01 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Sun Nov 1 08:55:05 UTC 2015 Modified Files: src/sys/dev/pci: vioscsi.c Log Message: Use SCSIPI_CHAN_NOSETTLE. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/dev/pci/vioscsi.c Please note that diffs are not

CVS commit: src/sys/rump/dev

2015-11-01 Thread Antti Kantee
ull Sun Nov 1 09:03:29 2015 +++ src/sys/rump/dev/lib/libvirtio_vioscsi/vioscsi_at_virtio.c Sun Nov 1 09:03:28 2015 @@ -0,0 +1,49 @@ +/* $NetBSD: vioscsi_at_virtio.c,v 1.1 2015/11/01 09:03:28 pooka Exp $ */ + +/* + * Copyright (c) 2014 Antti Kantee. All Rights Reserved. + * + * Redistribution and

CVS commit: src/lib/libc/gen

2015-10-25 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Sun Oct 25 16:01:04 UTC 2015 Modified Files: src/lib/libc/gen: Makefile.inc Log Message: Don't include daemon.c in RUMPRUN=yes mode. The standard implementation uses fork(), needs an alternative implementation for Rumprun. To ge

CVS commit: src/share/mk

2015-10-19 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Oct 19 16:17:14 UTC 2015 Modified Files: src/share/mk: bsd.own.mk Log Message: Allow "make describe" to descend into SUBDIRs. To generate a diff of this commit: cvs rdiff -u -r1.876 -r1.877 src/share/mk/bsd.own.mk Please not

CVS commit: src/sys/rump

2015-10-19 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Oct 19 16:16:39 UTC 2015 Modified Files: src/sys/rump: Makefile.rump src/sys/rump/dev/lib/libaudio: Makefile src/sys/rump/dev/lib/libaudio_ac97: Makefile src/sys/rump/dev/lib/libbpf: Makefile src/

CVS commit: src/share/man/man4

2015-10-19 Thread Antti Kantee
man/man4/shmif.4 Mon Oct 19 14:33:11 2015 @@ -1,4 +1,4 @@ -.\" $NetBSD: shmif.4,v 1.3 2010/11/17 18:02:20 wiz Exp $ +.\" $NetBSD: shmif.4,v 1.4 2015/10/19 14:33:11 pooka Exp $ .\" .\" Copyright (c) 2010 Antti Kantee .\" All rights reserved. @@ -28,7 +28,7 @@ .Os .Sh NAME

CVS commit: src

2015-09-21 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Sep 21 21:50:16 UTC 2015 Modified Files: src/lib/librumpuser: rumpuser_port.h src/tools/compat: compat_defs.h src/usr.bin/make: make.h Log Message: Add more compat defs for code compiled for !NetBSD targets. At

CVS commit: src/lib/librumpuser

2015-09-18 Thread Antti Kantee
$ */ /* * Copyright (c) 2007-2010 Antti Kantee. All Rights Reserved. @@ -28,7 +28,7 @@ #include "rumpuser_port.h" #if !defined(lint) -__RCSID("$NetBSD: rumpuser_pth.c,v 1.44 2014/12/16 17:00:17 pooka Exp $"); +__RCSID("$NetBSD: rumpuser_pth.c,v 1.45 2015/09/18 10:56:

CVS commit: src/sys/rump/librump/rumpkern

2015-09-15 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Sep 15 15:09:11 UTC 2015 Modified Files: src/sys/rump/librump/rumpkern: Makefile.rumpkern Log Message: Use the more widely accepted version of alphabetical order. To generate a diff of this commit: cvs rdiff -u -r1.163 -r1.16

CVS commit: src

2015-09-15 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Sep 15 14:57:35 UTC 2015 Modified Files: src/distrib/sets/lists/comp: mi src/sys/rump/include/rump: Makefile Log Message: install To generate a diff of this commit: cvs rdiff -u -r1.1987 -r1.1988 src/distrib/sets/lis

CVS commit: src/sys/rump/include/rump

2015-09-15 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Sep 15 14:55:55 UTC 2015 Modified Files: src/sys/rump/include/rump: rumpdefs.h rumperr.h Added Files: src/sys/rump/include/rump: rumperrno2host.h Log Message: regen To generate a diff of this commit: cvs rdiff -u -r1.

CVS commit: src/sys/rump/include/rump

2015-09-15 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Sep 15 14:55:12 UTC 2015 Modified Files: src/sys/rump/include/rump: makerumpdefs.sh Log Message: Generate rump_errno2host(): translates rump kernel errnos to host errnos. Essentially, it's a partial I-know-what-I'm-doing sysca

CVS commit: src/sys/rump/dev/lib/libugenhc

2015-09-14 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Sep 14 15:09:35 UTC 2015 Modified Files: src/sys/rump/dev/lib/libugenhc: Makefile Log Message: Fully build ugenhc only on archs where libusb is built. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/rump/d

CVS commit: src/sys/rump/dev/lib/libugenhc

2015-09-14 Thread Antti Kantee
.2 2015/09/14 15:08:50 pooka Exp $ */ /* * Copyright (c) 2009 Antti Kantee. All Rights Reserved. @@ -34,7 +34,16 @@ #include /* - * bus_dma(9) that works for USB drivers + * bus_dma(9) that works for USB drivers. + * + * So why is it here instead of in libusb? Well, first of all, it'

CVS import: src/external/bsd/libc++/dist/libcxxrt

2015-09-11 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Sep 11 11:20:00 UTC 2015 Update of /cvsroot/src/external/bsd/libc++/dist/libcxxrt In directory ivanova.netbsd.org:/tmp/cvs-serv12720 Log Message: Import libcxxrt e64e93fe5bba67a6d52cbe5a97f8770c054bfa65 Implements __cxa_throw_bad_arra

CVS commit: src/sys/rump/include/rump

2015-09-10 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Sep 10 16:21:48 UTC 2015 Modified Files: src/sys/rump/include/rump: rumpdefs.h rumperr.h Log Message: regen To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/rump/include/rump/rumpdefs.h cvs rdiff -u -r1.2

CVS commit: src/sys/rump/include/rump

2015-09-10 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Sep 10 16:21:32 UTC 2015 Modified Files: src/sys/rump/include/rump: makerumpdefs.sh Log Message: Fix #define ERRNO EANOTHERRNO. Was: #define RUMP_ERRNO EANOTHERRNO Now: #define RUMP_ERRNO RUMP_EANOTHERRNO pointed out by Sebas

CVS commit: src/sys/rump/include/rump

2015-09-10 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Sep 10 16:16:35 UTC 2015 Modified Files: src/sys/rump/include/rump: rumpdefs.h rumperr.h Log Message: regen To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/sys/rump/include/rump/rumpdefs.h cvs rdiff -u -r1.1

CVS commit: src/sys/rump/include/rump

2015-09-10 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Sep 10 16:14:22 UTC 2015 Modified Files: src/sys/rump/include/rump: makerumpdefs.sh Log Message: Ignore multiline IOC macros by default. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sys/rump/include/rump/

CVS commit: src/sys/rump

2015-09-08 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Sep 8 12:14:21 UTC 2015 Modified Files: src/sys/rump: TODO Log Message: Remove solved item. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/rump/TODO Please note that diffs are not public domain; they

CVS commit: src/sys/net

2015-08-31 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Aug 31 12:57:45 UTC 2015 Modified Files: src/sys/net: if_llatbl.c Log Message: #if __NetBSD__ -> #if defined(__NetBSD__) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/net/if_llatbl.c Please note that di

CVS commit: src/sys/arch/alpha/include

2015-08-28 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Fri Aug 28 09:30:01 UTC 2015 Modified Files: src/sys/arch/alpha/include: types.h Log Message: Convert to __cpu_simple_lock_nv_t. Somehow missed alpha in the earlier commit. Thanks to uebs for pointing it out. To generate a diff

CVS commit: src/doc

2015-08-27 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Aug 27 12:32:05 UTC 2015 Modified Files: src/doc: HACKS Log Message: update c++/volatile/constexpr entry To generate a diff of this commit: cvs rdiff -u -r1.161 -r1.162 src/doc/HACKS Please note that diffs are not public dom

CVS commit: src

2015-08-27 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Thu Aug 27 12:30:51 UTC 2015 Modified Files: src/lib/libpthread: pthread_types.h src/sys/arch/aarch64/include: types.h src/sys/arch/amd64/include: types.h src/sys/arch/arm/include: types.h src/sys/arc

CVS commit: src/sys/rump/librump/rumpkern

2015-08-25 Thread Antti Kantee
(c) 2010, 2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: scheduler.c,v 1.40 2015/04/22 16:01:07 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: scheduler.c,v 1.41 2015/08/25 14:47:39 pooka Exp $"); #include #inc

CVS commit: src/sys/rump/librump/rumpkern

2015-08-25 Thread Antti Kantee
:1.323 Tue Aug 25 14:52:59 2015 +++ src/sys/rump/librump/rumpkern/rump.c Tue Aug 25 14:53:25 2015 @@ -1,4 +1,4 @@ -/* $NetBSD: rump.c,v 1.323 2015/08/25 14:52:59 pooka Exp $ */ +/* $NetBSD: rump.c,v 1.324 2015/08/25 14:53:25 pooka Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights

CVS commit: src/sys/rump/librump/rumpkern

2015-08-25 Thread Antti Kantee
-2011 Antti Kantee. All Rights Reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.322 2015/07/07 12:38:02 justin Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rump.c,v 1.323 2015/08/25 14:52:59 pooka Exp $"); #include #define ELFSIZE ARCH_ELFSI

CVS commit: src/sys/kern

2015-08-25 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Aug 25 14:52:31 UTC 2015 Modified Files: src/sys/kern: init_sysctl.c init_sysctl_base.c Log Message: Move a bunch of sysctl nodes from init_sysctl (kitchen sink sysctl file) to init_sysctl_base (only base kernel defs). Main mo

CVS commit: src/sys/rump/librump/rumpkern

2015-08-25 Thread Antti Kantee
:1.172 Fri Jul 24 14:11:11 2015 +++ src/sys/rump/librump/rumpkern/emul.c Tue Aug 25 14:47:26 2015 @@ -1,4 +1,4 @@ -/* $NetBSD: emul.c,v 1.172 2015/07/24 14:11:11 pooka Exp $ */ +/* $NetBSD: emul.c,v 1.173 2015/08/25 14:47:26 pooka Exp $ */ /* * Copyright (c) 2007-2011 Antti Kantee. All Rights

CVS commit: src/sys/kern

2015-08-25 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Aug 25 14:32:34 UTC 2015 Modified Files: src/sys/kern: init_sysctl_base.c Log Message: hw nodes do not go under the kern tree, so add new init routine for them To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/s

CVS commit: src/lib/librumphijack

2015-08-25 Thread Antti Kantee
:19 pooka Exp $ */ /*- * Copyright (c) 2011 Antti Kantee. All Rights Reserved. @@ -34,7 +34,7 @@ #include #if !defined(lint) -__RCSID("$NetBSD: hijack.c,v 1.118 2015/08/25 13:45:00 pooka Exp $"); +__RCSID("$NetBSD: hijack.c,v 1.119 2015/08/25 13:50:19 pooka Exp $");

CVS commit: src/lib/libpthread

2015-08-25 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Aug 25 13:46:23 UTC 2015 Modified Files: src/lib/libpthread: pthread_tsd.c Log Message: Revert 1.14 now that the arduous task of fixing rumphijack to allow mmap() in early init has been completed. To generate a diff of this c

CVS commit: src/lib/librumphijack

2015-08-25 Thread Antti Kantee
11 12:54:41 2015 +++ src/lib/librumphijack/hijack.c Tue Aug 25 13:45:00 2015 @@ -1,4 +1,4 @@ -/* $NetBSD: hijack.c,v 1.117 2015/04/11 12:54:41 riastradh Exp $ */ +/* $NetBSD: hijack.c,v 1.118 2015/08/25 13:45:00 pooka Exp $ */ /*- * Copyright (c) 2011 Antti Kantee. All Rights Reserved

CVS commit: src/sys/dev/dkwedge

2015-08-25 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Aug 25 11:08:59 UTC 2015 Modified Files: src/sys/dev/dkwedge: dk.c Log Message: Rename variable to avoid -Wshadow warnings with some compilers. To generate a diff of this commit: cvs rdiff -u -r1.82 -r1.83 src/sys/dev/dkwedge

CVS commit: src/sys/rump

2015-08-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Tue Aug 25 00:08:56 UTC 2015 Modified Files: src/sys/rump/librump/rumpdev: Makefile.rumpdev src/sys/rump/net/lib/libnetinet6: Makefile.inc Log Message: some final -Ifoo/opt removal To generate a diff of this commit: cvs r

CVS commit: src/sys/dev

2015-08-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Aug 24 23:55:04 UTC 2015 Modified Files: src/sys/dev/mii: igphy.c ukphy.c src/sys/dev/pci: pci.c pci_stub.c pci_usrreq.c pciidevar.h src/sys/dev/usb: ehci.c Log Message: add some _KERNEL_OPT as the finishing tou

CVS commit: src/sys/dev/pci

2015-08-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Aug 24 23:52:18 UTC 2015 Modified Files: src/sys/dev/pci: if_iwn.c Log Message: Remove "#ifdef INET" code. Por que? Because opt_inet.h was not included and "#ifdef INET" was just a fancy way of saying "#ifndef NetBSD". To g

CVS commit: src/sys/rump

2015-08-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Aug 24 23:21:51 UTC 2015 Modified Files: src/sys/rump/dev/lib/libmiiphy: Makefile src/sys/rump/dev/lib/libpci: Makefile src/sys/rump/dev/lib/libpci_usbhc: Makefile src/sys/rump/dev/lib/libscsipi: Makefile

CVS commit: src/sys/rump/dev/wip

2015-08-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Aug 24 23:21:16 UTC 2015 Removed Files: src/sys/rump/dev/wip: Makefile Makefile.inc src/sys/rump/dev/wip/libukbd: Makefile UKBD.ioconf ukbd_at_usb.c src/sys/rump/dev/wip/libums: Makefile UMS.ioconf ums_at_usb.c

CVS commit: src/sys/rump/fs/lib/libnfs

2015-08-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Aug 24 23:19:33 UTC 2015 Modified Files: src/sys/rump/fs/lib/libnfs: Makefile Log Message: don't -I imaginary opt directories To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/rump/fs/lib/libnfs/Makefile

CVS commit: src/sys/dev/scsipi

2015-08-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Aug 24 23:13:15 UTC 2015 Modified Files: src/sys/dev/scsipi: if_se.c scsipi_base.c sd.c sdvar.h ses.c st.c st_atapi.c st_scsi.c Log Message: would you like some freshly ground _KERNEL_OPT with that? yes? excellent

CVS commit: src/sys/rump

2015-08-24 Thread Antti Kantee
Module Name:src Committed By: pooka Date: Mon Aug 24 23:04:43 UTC 2015 Modified Files: src/sys/rump/net/lib/libbridge: Makefile src/sys/rump/net/lib/libnet: Makefile src/sys/rump/net/lib/libnetinet: Makefile.inc src/sys/rump/net/lib/libnetmpls: Makef

  1   2   3   4   5   6   7   8   9   10   >