CVS commit: src/sys/dev/usb

2019-01-30 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Jan 31 05:25:48 UTC 2019 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Add missing callout_destroy() in mue_detach(). To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/dev/usb/if_mue.c Please note

CVS commit: src/sys/dev/usb

2019-01-30 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jan 30 11:13:26 UTC 2019 Modified Files: src/sys/dev/usb: if_axen.c if_axenreg.h Log Message: Fix HW checksum offloading. - Enable ones specified in if_capenable and remove AXEN_TOE macro. - Check correct bit and set appropriate

CVS commit: src/sys/dev/usb

2019-01-30 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Jan 30 11:11:45 UTC 2019 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Fix mue_sethwcsum(): - Check appropriate flags to enable RX checksum offloading. - We don't support ICMP/IGMP checksum offloading. Tested both on

CVS commit: src/share/man/man4

2019-01-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Jan 27 09:22:19 UTC 2019 Modified Files: src/share/man/man4: uslsa.4 Log Message: Update list of supported adapters. - add Adafruit 954 USB to TTL Serial Cable - sort entries Bump date. To generate a diff of this commit: cvs

CVS commit: src/sys

2019-01-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Jan 27 09:19:37 UTC 2019 Modified Files: src/sys/dev/fdt: fdt_subr.c src/sys/rump/dev/lib/libscsipi: scsipi_component.c src/sys/rump/dev/lib/libucom: ucom_at_usb.c src/sys/rump/dev/lib/libulpt:

CVS commit: src/sys/arch/mvme68k/stand/wrtvid

2019-01-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Jan 8 00:00:53 UTC 2019 Modified Files: src/sys/arch/mvme68k/stand/wrtvid: wrtvid.c Log Message: Include unistd.h for write(2) and close(2). To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9

CVS commit: src/sys/dev/usb

2019-01-05 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Jan 6 00:39:05 UTC 2019 Modified Files: src/sys/dev/usb: if_axe.c Log Message: Fix kernel panic on arm reported by @furandon_pig on Twitter. Hardware header is 2-byte aligned in RX buffer, not 4-byte. For some architectures,

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

2019-01-04 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Jan 4 21:39:38 UTC 2019 Modified Files: src/sys/arch/aarch64/include: param.h Log Message: ALIGNBYTES32 should be (8 - 1), not (4 - 1) for EABI: https://nxr.netbsd.org/xref/src/sys/arch/arm/include/cdefs.h#56 Now, sshd for

CVS commit: src/sys/dev/usb

2018-12-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Dec 28 22:55:20 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Define DPRINTF() as __nothing when !USB_DEBUG. Drop excess braces. No functional changes intended. To generate a diff of this commit: cvs rdiff

CVS commit: src/external/gpl3

2018-12-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Dec 28 21:30:20 UTC 2018 Modified Files: src/external/gpl3/gcc.old/dist/gcc/config/m68k: netbsd-elf.h src/external/gpl3/gcc/dist/gcc/config/m68k: netbsd-elf.h Log Message: PR toolchain/53810 PR toolchain/53684 PR

CVS commit: src/sys/dev/usb

2018-12-22 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Dec 22 16:58:51 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Fix previous; We also need to turn off IFF_ALLMULTI bit when it is disabled. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25

CVS commit: src/sys/net

2018-12-21 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Dec 22 04:28:30 UTC 2018 Modified Files: src/sys/net: if_bridge.c Log Message: Take the interface out of promiscuous mode in bridge_delete_member() instead of bridge_ioctl_del(). Otherwise, the member interfaces are left in

CVS commit: src/sys/dev/usb

2018-12-19 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Dec 20 02:52:59 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Set IFF_ALLMULTI bit appropriately when we fall back to "allmulti". To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24

CVS commit: src/sys/net

2018-12-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Dec 15 07:38:58 UTC 2018 Modified Files: src/sys/net: ether_sw_offload.c if_bridge.c Log Message: Improve wording in comments: replace "chain" with "queue" for sequence of mbuf's connected by m_nextpkt, in order to avoid

CVS commit: src/sys/net

2018-12-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Dec 15 07:29:44 UTC 2018 Modified Files: src/sys/net: ether_sw_offload.c Log Message: Replace panic with rate-limited LOG_ERR message when we encounter invalid ether frame with non-zero csum flags. Requested by thorpej. To

CVS commit: src/sys/net

2018-12-13 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Dec 13 20:54:50 UTC 2018 Modified Files: src/sys/net: ether_sw_offload.c Log Message: Panic rather than silently dropping packets when TX offload options are enabled for unsupported frame types. To generate a diff of this

CVS commit: src/sys/net

2018-12-13 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Dec 13 20:44:33 UTC 2018 Modified Files: src/sys/net: ether_sw_offload.c Log Message: Also take care of non-DIAGNOSTIC case. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/net/ether_sw_offload.c Please

CVS commit: src/sys/net

2018-12-13 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Dec 13 12:13:33 UTC 2018 Modified Files: src/sys/net: ether_sw_offload.c Log Message: Fix (bridge && !inet6) build. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/net/ether_sw_offload.c Please note that

CVS commit: src/share/man/man4

2018-12-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Dec 12 02:26:40 UTC 2018 Modified Files: src/share/man/man4: shmif.4 Log Message: Document capability of TX/RX offload and environment variable RUMP_SHMIF_CAPENABLE. Bump date. part of PR kern/53562 To generate a diff of this

CVS commit: src/sys

2018-12-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Dec 12 01:53:52 UTC 2018 Modified Files: src/sys/netinet: ip_output.c src/sys/netinet6: ip6_output.c Log Message: Simplify logic in ip{,6}_output(). Now, we have M_CSUM_TSOv[46] bit in ifp->if_csum_flags_tx when TSO[46]

CVS commit: src/sys/rump/net/lib/libshmif

2018-12-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Dec 12 01:51:32 UTC 2018 Modified Files: src/sys/rump/net/lib/libshmif: if_shmem.c Log Message: Add TX/RX offload capabilities to shmif(4). They are emulated in software by ether_sw_offload_[tr]x(). For rump kernels,

CVS commit: src/sys

2018-12-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Dec 12 01:46:47 UTC 2018 Modified Files: src/sys/net: if.c if_bridge.c if_bridgevar.h src/sys/rump/librump/rumpnet: net_stub.c Log Message: PR kern/53562 Handle TX offload in software when a packet is sent via

CVS commit: src/sys

2018-12-11 Thread Rin Okuyama
01:40:20 rin Exp $ # @@ -15,6 +15,7 @@ SRCS= if.c if_loop.c route.c rtsock.c ra SRCS+= if_43.c SRCS+= if_llatbl.c SRCS+= net_component.c +SRCS+= ether_sw_offload.c .include Added files: Index: src/sys/net/ether_sw_offload.c diff -u /dev/null src/sys/net/ether_sw_offload.c:1.1 --- /dev/null Wed De

CVS commit: src/sys/dev/usb

2018-12-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Dec 11 13:35:03 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c if_muereg.h Log Message: Determine the frame size as a function of MTU. XXX Jumbo frame is not yet supported. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/dev/usb

2018-12-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Dec 11 09:05:50 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Stop assigning random MAC address when it cannot be obtained from H/W. It was intended only for debugging. To generate a diff of this commit: cvs

CVS commit: src/sys/dev/usb

2018-12-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Dec 11 08:16:57 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c if_muevar.h Log Message: Support checksum offloading for mue(4) by Robert Swindells and adjusted by myself. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/dev/usb

2018-12-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Dec 4 01:35:15 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Remove duplicate ;'s. No binary changes intended. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/sys/dev/usb/if_mue.c Please

CVS commit: src/sys/compat/netbsd32

2018-10-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Oct 12 05:06:05 UTC 2018 Modified Files: src/sys/compat/netbsd32: netbsd32_ioctl.c Log Message: PR kern/53666 Correct misleading names of dummy variables. No binary changes intended. To generate a diff of this commit: cvs

CVS commit: src/distrib/sets/lists/comp

2018-09-26 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 26 12:59:38 UTC 2018 Modified Files: src/distrib/sets/lists/comp: mi Log Message: Revive netipsec/keysock.h, accidentally marked obsolete in r1.2230. Reported by Robert Swindells on current-users. To generate a diff of

CVS commit: src/etc/etc.amiga

2018-09-23 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 23 06:39:23 UTC 2018 Modified Files: src/etc/etc.amiga: Makefile.inc Log Message: Remove ISDN. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/etc/etc.amiga/Makefile.inc Please note that diffs are not

CVS commit: src/sys

2018-09-22 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Sep 22 12:24:04 UTC 2018 Modified Files: src/sys/arch/aarch64/conf: Makefile.aarch64 src/sys/arch/acorn32/conf: Makefile.acorn32 src/sys/arch/alpha/conf: Makefile.alpha src/sys/arch/amd64/conf:

CVS commit: src/sys/arch

2018-09-22 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Sep 22 12:05:52 UTC 2018 Modified Files: src/sys/arch/sun2/conf: Makefile.sun2 src/sys/arch/sun3/conf: Makefile.sun3 Log Message: No need to specify COMPAT_AS anymore. Now, it is automatically determined from

CVS commit: src/usr.sbin/sysinst/arch/atari

2018-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Sep 20 12:28:33 UTC 2018 Modified Files: src/usr.sbin/sysinst/arch/atari: Makefile Log Message: Enable NOPARTMAN for install media. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3

CVS commit: src/usr.sbin/sysinst

2018-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Sep 20 12:27:42 UTC 2018 Modified Files: src/usr.sbin/sysinst: Makefile.inc defs.h install.c main.c menus.mi Added Files: src/usr.sbin/sysinst: menus.pm Log Message: Add NOPARTMAN compile-time option, which drops

CVS commit: src/share/man/man9

2018-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Sep 20 07:08:00 UTC 2018 Modified Files: src/share/man/man9: pci.9 Log Message: - pci_intr_setattr() is in pci_intr(9) - pci_intr_type() is in pci_msi(9) To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48

CVS commit: src/share/man/man9

2018-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Sep 20 06:54:36 UTC 2018 Modified Files: src/share/man/man9: Makefile Log Message: Link pci_intr_*(9) to pci_intr(9), except for those described in pci_msi(9). To generate a diff of this commit: cvs rdiff -u -r1.429 -r1.430

CVS commit: src/share/man/man9

2018-09-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Sep 20 06:48:53 UTC 2018 Modified Files: src/share/man/man9: pci_intr.9 Log Message: pci_intr_type() is described in pci_msi(9). To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/share/man/man9/pci_intr.9

CVS commit: src/sys/arch/atari/dev

2018-09-19 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 19 23:28:58 UTC 2018 Modified Files: src/sys/arch/atari/dev: wskbdmap_atari.c Log Message: Remove unused KBD_NULLMAP entries copy-paste from sys/dev/pckbport. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5

CVS commit: src/sys/arch/evbmips/conf

2018-09-19 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 19 23:22:17 UTC 2018 Modified Files: src/sys/arch/evbmips/conf: GDIUM LOONGSON Log Message: Remove invalid option copy-paste from hpcmips. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33

CVS commit: src/sys

2018-09-19 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 19 07:54:11 UTC 2018 Modified Files: src/sys/netinet: in_offload.c src/sys/netinet6: in6_offload.c Log Message: Fix in_undefer_cksum() and in6_undefer_cksum(). The 4th argument for in[46]_cksum() should be length of

CVS commit: src/sys/arch/ews4800mips/conf

2018-09-19 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Sep 19 07:26:54 UTC 2018 Removed Files: src/sys/arch/ews4800mips/conf: Makefile.ews4800mips.inc Log Message: This file was only for setting COMPAT_AS appropriately, which is automatically done in sys/compat/common/Makefile.inc

CVS commit: src/lib/libcurses

2018-09-18 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Sep 18 22:51:00 UTC 2018 Modified Files: src/lib/libcurses: tstp.c Log Message: PR lib/53615 Before invoking a previous signal handler, make sure it is not SIG_*. Fix potential crash with SIGWINCH. OK roy To generate a diff

CVS commit: src/lib/libcurses

2018-09-18 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Sep 18 22:46:18 UTC 2018 Modified Files: src/lib/libcurses: get_wch.c getch.c Log Message: PR lib/53615 getch() and get_wch() should return KEY_RESIZE when interrupted by SIGWINCH. OK roy To generate a diff of this commit:

CVS commit: src/sys/dev/hpc

2018-09-17 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Sep 18 02:58:10 UTC 2018 Modified Files: src/sys/dev/hpc: hpckbd.c Log Message: Apply workaround introduced in r1.31 to hpcmips. Fix kernel crash when console is attached. Now, my MC/R550 boots multiuser. Thanks Masahiko Ito

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 02:00:36 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Style. No functional changes. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/dev/usb/if_mue.c Please note that diffs are

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:56:29 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Check range of EEPROM address rather truncate implicitly. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/dev/usb/if_mue.c

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:44:11 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Correct nonsense message in KASSERTMSG. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/dev/usb/if_mue.c Please note that

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:41:28 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: - Style (total_len ---> totlen). - Fix printf format (totlen is unsigned). To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:29:28 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Do not turn on IFF_OACTIVE if transfer fails. Remove redundant error message. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:27:21 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Drop wrong KASSERT; we don't need TCP headers here. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/dev/usb/if_mue.c Please

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:23:09 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c if_muereg.h Log Message: Rewrite mue_encap(); drop too long packets rather than panic. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:18:30 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Allow ethernet frame with VLAN tag. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/dev/usb/if_mue.c Please note that diffs

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:13:26 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Correct lower bound of RX packet length; don't forget FCS. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/dev/usb/if_mue.c

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 01:07:38 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: - Improve error messages. - Switch from debug printf to normal printf for real errors. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9

CVS commit: src/sys/dev/usb

2018-09-15 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Sep 16 00:58:47 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Use proper integer types. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/dev/usb/if_mue.c Please note that diffs are not

CVS commit: src/external/bsd/nvi/dist/docs/vi.man

2018-09-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 14 13:19:15 UTC 2018 Modified Files: src/external/bsd/nvi/dist/docs/vi.man: vi.1 Log Message: Fix description for -r option reflecting the actual behavior. Suggested by christos on current-users. To generate a diff of this

CVS commit: src/share/man/man4

2018-09-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Sep 14 08:11:30 UTC 2018 Modified Files: src/share/man/man4: mpls.4 Log Message: pseudo-device ifmpls was renamed to mpls long ago. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/share/man/man4/mpls.4

CVS commit: src/sys/dev/usb

2018-08-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Aug 31 11:21:00 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Convert debug printf to KASSERTMSG for check of RX buffer length. Also turn KASSERT into KASSERTMSG for that of TX buffer. To generate a diff of

CVS commit: src/sys/dev/usb

2018-08-30 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Aug 30 09:59:12 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Check buffer length before copy. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/dev/usb/if_mue.c Please note that diffs are

CVS commit: src/sys/dev/usb

2018-08-30 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Aug 30 09:00:08 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c if_muereg.h if_muevar.h Log Message: Support added for TCP segmentation offload (TSO). Improve TX performance around 10% if enabled. To generate a diff of this

CVS commit: src/sys/dev/ic

2018-08-29 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Aug 29 16:51:51 UTC 2018 Modified Files: src/sys/dev/ic: adv.c Log Message: Note added for a strange value of residual counts in successful read/write. Seems like a H/W bug. The best thing we can do would be to leave the code as

CVS commit: src/sys/netinet

2018-08-28 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Aug 28 07:28:01 UTC 2018 Modified Files: src/sys/netinet: cpu_in_cksum.c Log Message: No need to update mlen also in the case of (meln & 16) != 0. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/sys/dev/usb

2018-08-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Aug 27 14:59:04 UTC 2018 Modified Files: src/sys/dev/usb: if_mue.c Log Message: Check ifp->if_capenable, not ifp->if_capabilities, when enable some features. Not a real problem since ifp->if_capabilities = 0 at the moment. To

CVS commit: src/sys/arch/zaurus/conf

2018-08-26 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Aug 26 23:30:29 UTC 2018 Modified Files: src/sys/arch/zaurus/conf: INSTALL_C700 Log Message: Disable mue(4) for INSTALL_C70 like other USB NICs. Should fix build. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5

CVS commit: src/doc

2018-08-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Aug 25 21:01:28 UTC 2018 Modified Files: src/doc: CHANGES Log Message: Add mue(4). To generate a diff of this commit: cvs rdiff -u -r1.2432 -r1.2433 src/doc/CHANGES Please note that diffs are not public domain; they are

CVS commit: src/sys/arch/arm/broadcom

2018-08-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Aug 25 20:55:15 UTC 2018 Modified Files: src/sys/arch/arm/broadcom: bcm283x_platform.c Log Message: Set mac-address property to mue(4). To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14

CVS commit: src/sys/arch

2018-08-25 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Aug 25 20:52:42 UTC 2018 Modified Files: src/sys/arch/algor/conf: P4032 P5064 P6032 src/sys/arch/alpha/conf: GENERIC src/sys/arch/amd64/conf: ALL XEN3_DOM0 src/sys/arch/cats/conf: GENERIC INSTALL

CVS commit: src

2018-08-25 Thread Rin Okuyama
r netintro 4 , +.Xr ukphy 4 , +.Xr usb 4 , +.\".Xr hostname.if 5 , +.Xr ifconfig 8 +.Sh HISTORY +The +.Nm +device driver first appeared in +.Ox 6.3 and +.Nx 9.0 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Kevin Lo Aq Mt ke...@openbsd.org +for +.Ox and ported to +.Nx by +.An Ri

CVS commit: src/sys/external/gpl2/dts/dist/arch/arm/boot/dts

2018-08-22 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Aug 22 13:16:41 UTC 2018 Modified Files: src/sys/external/gpl2/dts/dist/arch/arm/boot/dts: bcm283x.dtsi Log Message: Explicitly disable v3d, pixelvalve, and hvs for bcm283x at the moment. When these devices or hdmi are enabled,

CVS commit: src/sys/arch/arm/broadcom

2018-08-21 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Aug 21 08:45:17 UTC 2018 Modified Files: src/sys/arch/arm/broadcom: bcm283x_platform.c Log Message: Correctly report memory size, not clock rate when VERBOSE_INIT_ARM. To generate a diff of this commit: cvs rdiff -u -r1.12

CVS commit: src/sys/arch/arm/broadcom

2018-08-19 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Aug 19 09:18:48 UTC 2018 Modified Files: src/sys/arch/arm/broadcom: bcm2835_emmc.c bcm2835_mbox.c Log Message: Clean up leftover when converting intr_establish() to fdtbus_intr_establish(). The latter accept only flags 0 or

CVS commit: src/sys/arch/evbarm/conf

2018-08-18 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Aug 18 09:29:45 UTC 2018 Modified Files: src/sys/arch/evbarm/conf: files.evbarm Log Message: Fix a bug introduced in the previous revision; We don't define arm32 anywhere, and majors.aarch64 is used unconditionally. To

CVS commit: src/sys/dev/usb

2018-08-12 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Aug 12 06:02:38 UTC 2018 Modified Files: src/sys/dev/usb: if_bwfm_usb.c if_smsc.c usbroothub.c Log Message: Add missing __KERNEL_RCSID. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/dev/usb/if_bwfm_usb.c

CVS commit: src/sys/dev/usb

2018-08-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Aug 12 04:19:31 UTC 2018 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: regen. To generate a diff of this commit: cvs rdiff -u -r1.750 -r1.751 src/sys/dev/usb/usbdevs.h \

CVS commit: src/sys/dev/usb

2018-08-11 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Aug 12 04:17:54 UTC 2018 Modified Files: src/sys/dev/usb: usbdevs Log Message: Add SMSC LAN7505 USB 2.0 gigabit ethernet device. To generate a diff of this commit: cvs rdiff -u -r1.757 -r1.758 src/sys/dev/usb/usbdevs Please

CVS commit: src/sys/arch/arm/broadcom

2018-08-09 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Aug 10 04:44:16 UTC 2018 Modified Files: src/sys/arch/arm/broadcom: bcm283x_platform.c Log Message: * Convert bus address to physical address in xxx_bs_mmap(), as done in xxx_bs_map(). * Reuse bs_map and bs_mmap in

CVS commit: src/sys/external/bsd/dwc2

2018-08-09 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Fri Aug 10 04:24:46 UTC 2018 Modified Files: src/sys/external/bsd/dwc2: dwc2.c Log Message: Fix debug build. Also make formats more consistent with others in DPRINTF added in the previous commit. To generate a diff of this commit:

CVS commit: src/external/bsd/nvi/dist/ex

2018-08-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Aug 7 11:41:23 UTC 2018 Modified Files: src/external/bsd/nvi/dist/ex: ex_script.c Log Message: Use wp and wlen instead of ip and ilen for consistency. No binary changes intended. To generate a diff of this commit: cvs rdiff

CVS commit: src/external/bsd/nvi/dist/common

2018-08-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Aug 7 11:25:45 UTC 2018 Modified Files: src/external/bsd/nvi/dist/common: vi_db1.c Log Message: Remove unnecessary buffer allocation and memcpy. Partially taken from nvi2. To generate a diff of this commit: cvs rdiff -u -r1.9

CVS commit: src/sys/external/bsd/dwc2

2018-08-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Aug 7 08:36:31 UTC 2018 Modified Files: src/sys/external/bsd/dwc2: dwc2.c Log Message: Do not call usb_syncmem(9) with len = 0 to avoid diagnostic assertion failure in bus_dmamap_sync(9) on Raspberry Pi 3 Model B running in

CVS commit: src/external/bsd/nvi

2018-08-07 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Aug 7 08:05:48 UTC 2018 Modified Files: src/external/bsd/nvi/dist/cl: cl_funcs.c cl_main.c src/external/bsd/nvi/dist/common: gs.h options.c options_f.c src/external/bsd/nvi/dist/docs/vi.man: vi.1

CVS commit: src/external/bsd/nvi/dist/common

2018-07-31 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Aug 1 02:48:47 UTC 2018 Modified Files: src/external/bsd/nvi/dist/common: conv.h Log Message: As described in comments, we treat non-spacing chars as single-width ones. To generate a diff of this commit: cvs rdiff -u -r1.3

CVS commit: src/external/bsd/nvi/dist

2018-06-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Jun 3 08:08:37 UTC 2018 Modified Files: src/external/bsd/nvi/dist/common: conv.h src/external/bsd/nvi/dist/vi: vs_line.c vs_relative.c Log Message: Make sure that every wide char occupies at least one display width: -

CVS commit: src/share/locale/ctype

2018-06-03 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Jun 3 07:54:51 UTC 2018 Modified Files: src/share/locale/ctype: en_US.UTF-8.src Log Message: Add characters in "Emoji & Pictographs" from Unicode 10.0.0: http://www.unicode.org/charts/ They are classified as PUNCT, which is

CVS commit: src/sys/netisdn

2018-04-21 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Apr 21 08:30:19 UTC 2018 Modified Files: src/sys/netisdn: i4b_ipr.c Log Message: Remove unused variable since previous revision. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 src/sys/netisdn/i4b_ipr.c Please

CVS commit: src

2018-04-10 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Apr 11 00:26:38 UTC 2018 Modified Files: src/distrib/sets/lists/base: rescue.mi src/rescue: list Log Message: Add progress(1) into /rescue. No objection when proposed on tech-userlevel@. To generate a diff of this

CVS commit: src/external/bsd/nvi/dist/vi

2018-04-10 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Apr 10 12:44:41 UTC 2018 Modified Files: src/external/bsd/nvi/dist/vi: vs_refresh.c Log Message: PR bin/53164: Comment why we abort here. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10

CVS commit: src/sys/dev/cardbus

2018-04-02 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Apr 2 11:02:53 UTC 2018 Modified Files: src/sys/dev/cardbus: ahc_cardbus.c Log Message: Remove extra printf duplicate with MI codes. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37

CVS commit: src/sys/dev/ic

2018-04-02 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Apr 2 10:44:06 UTC 2018 Modified Files: src/sys/dev/ic: aic7xxx.c Log Message: Use ahc_freedmamem() for consistency. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.133 -r1.134

CVS commit: src/sys/dev/ic

2018-04-02 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Apr 2 10:32:47 UTC 2018 Modified Files: src/sys/dev/ic: aic7xxx.c Log Message: Initialize ahc->shared_data_size appropriately. Fix panic when detach. To generate a diff of this commit: cvs rdiff -u -r1.132 -r1.133

CVS commit: src/sys/dev/ic

2018-03-22 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Mar 22 14:07:42 UTC 2018 Modified Files: src/sys/dev/ic: ninjascsi32.c Log Message: Redo previous; reset async events only if scsibus has already been attached. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26

CVS commit: src/sys/arch/amd64/conf

2018-03-22 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Mar 22 12:26:29 UTC 2018 Modified Files: src/sys/arch/amd64/conf: GENERIC Log Message: Add njs(4) at pci(4) and cardbus(4). To generate a diff of this commit: cvs rdiff -u -r1.485 -r1.486 src/sys/arch/amd64/conf/GENERIC

CVS commit: src/sys/dev/ic

2018-03-22 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Thu Mar 22 12:20:56 UTC 2018 Modified Files: src/sys/dev/ic: ninjascsi32.c Log Message: Do not call scsipi routines via njsc32_init before scsibus is attached. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25

CVS commit: src/distrib/sets/lists/xdebug

2018-03-14 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Wed Mar 14 13:23:31 UTC 2018 Modified Files: src/distrib/sets/lists/xdebug: md.i386 Log Message: Restore shlib version accidentally bumped in the previous commit. Fix debug build for i386. To generate a diff of this commit: cvs

CVS commit: src/sys/arch/amiga/dev

2018-03-04 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Mar 5 04:23:00 UTC 2018 Modified Files: src/sys/arch/amiga/dev: grf_et.c Log Message: Remove duplicate vgaw() accidentally introduced in the previous revision. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36

CVS commit: src/sys/dev/ic

2018-02-06 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Tue Feb 6 13:26:32 UTC 2018 Modified Files: src/sys/dev/ic: msm6242b.c Log Message: Remove misplaced semicolon, found by GCC 6. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/dev/ic/msm6242b.c Please note

CVS commit: src

2018-01-27 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sun Jan 28 01:09:58 UTC 2018 Modified Files: src/distrib/zaurus/ramdisk: Makefile list src/sys/arch/zaurus/conf: INSTALL Log Message: Shrink ramdisk to fit INSTALL kernel within 5MB: - drop shutdown - replace disklabel,

CVS commit: src/sys/dev/wscons

2018-01-20 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Sat Jan 20 23:27:06 UTC 2018 Modified Files: src/sys/dev/wscons: wsemul_vt100.c Log Message: Correct wrong assertion code introduced by rev 1.41: http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/dev/wscons/wsemul_vt100.c#rev1.41 Fix

CVS commit: src/sys/arch

2017-12-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Dec 25 06:39:00 UTC 2017 Modified Files: src/sys/arch/amd64/conf: INSTALL src/sys/arch/i386/conf: INSTALL Log Message: Disable nouveau for INSTALL as in a similar manner to other DRMKMS drivers. XXX pullup to netbsd-8

CVS commit: src/sys/arch/i386/conf

2017-12-24 Thread Rin Okuyama
Module Name:src Committed By: rin Date: Mon Dec 25 06:35:57 UTC 2017 Modified Files: src/sys/arch/i386/conf: INSTALL Log Message: install/52845: Enable vga@isa and pcdisplay for INSTALL. Otherwise, install media do not boot on pre-PCI machines. XXX pullup to netbsd-8 and

<    4   5   6   7   8   9   10   11   >