CVS commit: src/sys/netinet6

2021-08-09 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Aug 10 06:29:56 UTC 2021

Modified Files:
src/sys/netinet6: in6_src.c

Log Message:
PR kern/56348
MTU discovery fails with IPv6 sockets bound to IPv4 mapped address

pick up the IPv4 route for IPv4 mapped IPv6 address to get the correct
MTU and not any unrelated/inappropriate MTU from IPv6 routes. IPv4 mapped
IPv6 addresses are always handled by the IPv4 stack and MTU discovery
is solely handled with the IPv4 routing table.


To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/sys/netinet6/in6_src.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/cddl/osnet/sys/sys

2021-07-18 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jul 18 07:22:22 UTC 2021

Modified Files:
src/external/cddl/osnet/sys/sys: vnode.h

Log Message:
PR kern/56316: vn_open doesn't follow symlinks

remove setting of O_NOFOLLOW. restores ZFS being able
to open devices via symlinks again.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/external/cddl/osnet/sys/sys/vnode.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2021-02-18 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Thu Feb 18 15:13:38 UTC 2021

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_timer.c

Log Message:
PR bin/55973:

fix routing message triggered one shot interface update.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/ntp/dist/ntpd/ntp_timer.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/ic

2020-12-04 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Dec  4 23:03:11 UTC 2020

Modified Files:
src/sys/dev/ic: nvme.c

Log Message:
PR kern/55839:
handle multiple nvme_rescan()s correctly by doing the
name-space identify only once per nsid.

fixes issue where modloading triggers multiple
rescans.


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/sys/dev/ic/nvme.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/crypto/dist/ipsec-tools/src/racoon

2020-11-25 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Nov 25 10:57:11 UTC 2020

Modified Files:
src/crypto/dist/ipsec-tools/src/racoon: grabmyaddr.c

Log Message:
Fix address advancing for i386 and other 32-bit platforms.
Makes racoon grok IPv6 addresses again on these platforms.


To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 \
src/crypto/dist/ipsec-tools/src/racoon/grabmyaddr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/netinet

2020-11-12 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Thu Nov 12 13:13:45 UTC 2020

Modified Files:
src/sys/netinet: ip_mroute.c

Log Message:
PR kern/55779:

restore non-desctructive guarantee of ip_mforward() mbuf
argument. This avoids generation invalid UDP checksums
on multicast packets in ip_output().

XXX the root cause of the misguided fix in 2008 should be
XXX investigated


To generate a diff of this commit:
cvs rdiff -u -r1.163 -r1.164 src/sys/netinet/ip_mroute.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/cddl/osnet/dist/uts/common/fs/zfs

2020-10-09 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Oct  9 08:18:01 UTC 2020

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: dmu_tx.c

Log Message:
PR kern/55705:
don't attempt to sleep for negative time, we are late anyway - avoids 
DIAGNOSTIC panic


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/dmu_tx.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/ic

2020-09-22 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Sep 22 11:53:10 UTC 2020

Modified Files:
src/sys/dev/ic: ld_nvme.c nvme.c

Log Message:
PR kern/55674:
move name space availability check from ld_nvme.c:ld_nvme_attach()
to nvme.c:nvme_rescan().
this avoids allocation of ld(4) instances for every possible
name space, even if it is not usable. it also reduces the device
node flood generated from that strategy.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/ic/ld_nvme.c
cvs rdiff -u -r1.49 -r1.50 src/sys/dev/ic/nvme.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/netinet

2020-09-11 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Sep 11 09:08:47 UTC 2020

Modified Files:
src/sys/netinet: tcp_input.c

Log Message:
PR/kern 55567

fix the data-only fast path. RCV.UP and SND.WL1 could be left behind
on long sequences of data only packets. pull them along to avoid relative
sequence wraps.

consistent with FreeBSD

addresses second failure mode of PR/kern 55567.

pullup to netbsd-8
pullup to netbsd-9


To generate a diff of this commit:
cvs rdiff -u -r1.419 -r1.420 src/sys/netinet/tcp_input.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2020-09-03 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Thu Sep  3 07:26:41 UTC 2020

Modified Files:
src/external/bsd/ntp/dist/ntpd: refclock_parse.c

Log Message:
remove unneeded newline in quotes variable string - keeps ntpq happy


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/external/bsd/ntp/dist/ntpd/refclock_parse.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/netinet

2020-09-02 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Sep  2 15:08:46 UTC 2020

Modified Files:
src/sys/netinet: tcp_input.c

Log Message:
Fix fast path for uni directional transfers
pure ACK case:

drag snd_wl2 along so only newer
ACKs can update the window size.
also avoids the state where snd_wl2
is eventually larger than th_ack and thus
blocking the window update mechanism and
the connection gets stuck for a lng
time in the zero sized send window state.

see PR/kern 55567

ok thorpej@, also found in FreeBSD


To generate a diff of this commit:
cvs rdiff -u -r1.418 -r1.419 src/sys/netinet/tcp_input.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/mii

2020-08-27 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Thu Aug 27 10:10:23 UTC 2020

Modified Files:
src/sys/dev/mii: mii_physubr.c

Log Message:
Move mii_phy_statusmsg(sc) back to its original position. Fixes
deafness bug on macppc reported and tested by martin@
Thanks !


To generate a diff of this commit:
cvs rdiff -u -r1.93 -r1.94 src/sys/dev/mii/mii_physubr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/mii

2020-08-24 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Mon Aug 24 12:46:04 UTC 2020

Modified Files:
src/sys/dev/mii: mii_physubr.c

Log Message:
Keep the change check invariant intact. The previous code could miss
status updates by picking up a new status different from the tested
status. This left addresses in the DETACHED state although the
link status is already UP again.

addresses PR/kern 55538


To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 src/sys/dev/mii/mii_physubr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2020-08-04 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Aug  4 13:20:45 UTC 2020

Modified Files:
src/sys/arch/arm/broadcom: bcm2835_spi.c
src/sys/dev/spi: spi.c spivar.h

Log Message:
Use mutex for lwp/interrupt coordination. using splX() simply does not work
on multiprocessor systems.

fixes PR kern/55506


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/broadcom/bcm2835_spi.c
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/spi/spi.c
cvs rdiff -u -r1.9 -r1.10 src/sys/dev/spi/spivar.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/net

2020-01-16 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Thu Jan 16 13:16:59 UTC 2020

Modified Files:
src/sys/net: if_ethersubr.c

Log Message:
use the CARP interface for arp/nd instead of the carp parent interface.
this provides the correct source mac address for the packets.

there are routers out there that cache the source mac during
nd and then subsequently bypass/miss packet filters on carp
interfaces as they send to the parent interface mac instead of the
correct carp interface mac.


To generate a diff of this commit:
cvs rdiff -u -r1.280 -r1.281 src/sys/net/if_ethersubr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2020-01-16 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Thu Jan 16 12:56:40 UTC 2020

Modified Files:
src/share/man/man4: carp.4
src/sys/netinet: ip_carp.c ip_carp.h

Log Message:
Provide SIOCGIFMEDIA ioctl to deliver link status.
Add link0 (IFF_LINK0) flag to map INIT state to LINK_STATE_DOWN
instead of LINK_STATE_UNKNOWN. This allows routing software to
suppress routes to the interface of the carp interface when in
init state (e. g. link down in the parent interface).


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/share/man/man4/carp.4
cvs rdiff -u -r1.104 -r1.105 src/sys/netinet/ip_carp.c
cvs rdiff -u -r1.10 -r1.11 src/sys/netinet/ip_carp.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/ufs/ffs

2019-04-14 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Apr 14 15:55:24 UTC 2019

Modified Files:
src/sys/ufs/ffs: ffs_alloc.c

Log Message:
PR/53990, PR/52380, PR/52102: UFS2 cylinder group inode allocation botch

Fix rare allocation botch in ffs_nodealloccg().

Conditions:
   a) less than
#_of_initialized_inodes(cg->cg_initediblk)
- inodes_per_filesystem_block
  are allocated in the cylinder group
   b) cg->cg_irotor points to a uninterupted run of
  allocated inodes in the inode bitmap up to the
  end of dynamically initialized inodes
  (cg->cg_initediblk)

In this case the next inode after this run was returned
without initializing the respective inode block. As the
block is not initialized these inodes could trigger panics
on inode consistency due to old (uninitialized) disk data.

In very rare cases data loss could occur when
the uninitialized inode block is initialized via the
normal mechanism.
Further conditions to occur after the above:
   c) no panic
   d) no (forced) fsck
   e) and more than cg->cg_initediblk - inodes_per_filesystem_block
  allocated inodes.

Fix:
Always insure allocation always in initialized inode range
extending the initialized inode range as needed.

Add KASSERTMSG() safeguards.

ok hannken@


To generate a diff of this commit:
cvs rdiff -u -r1.163 -r1.164 src/sys/ufs/ffs/ffs_alloc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev

2019-03-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Thu Mar 28 10:44:29 UTC 2019

Modified Files:
src/sys/dev/scsipi: scsi_spc.h scsiconf.c scsipi_base.c scsipiconf.c
scsipiconf.h
src/sys/dev/usb: umass_scsipi.c

Log Message:
Add reading of supported opcodes and their timeouts
at attachment time. Though this information is optional,
it allows to override our fixed timeouts with device
provided timeouts. These timeouts will override the
hardcoded values if the device provided timeouts
exceed the hardcoded values and are less than a day.

Using the device provided timeouts avoids premature
device resets and unreliable operation due to
inadequate timeouts.

Due to the limited implementations of USB
umass devices this feature is disabled for all
umass attached devices.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/scsipi/scsi_spc.h
cvs rdiff -u -r1.283 -r1.284 src/sys/dev/scsipi/scsiconf.c
cvs rdiff -u -r1.181 -r1.182 src/sys/dev/scsipi/scsipi_base.c
cvs rdiff -u -r1.44 -r1.45 src/sys/dev/scsipi/scsipiconf.c
cvs rdiff -u -r1.129 -r1.130 src/sys/dev/scsipi/scsipiconf.h
cvs rdiff -u -r1.60 -r1.61 src/sys/dev/usb/umass_scsipi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2019-03-11 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Mon Mar 11 14:35:22 UTC 2019

Modified Files:
src/sys/dev/pci: mpii.c

Log Message:
PR/54045

fix mpii to adhere to physio diagnostic invariant that
fully processed data must not post an error:
1) verify expected scspi state via KASSERT() instead of just
   setting the variables.
2) set xs->resid only in known good conditions
3) insure setting errors in all error paths and refrain
   from clearing xs->resid in error paths.

While there do some cosmectic clean up:
1) extend and relocate some debug output
2) mpii HBAs can also manage non-disk devices like tapes etc,
   so log that physical "devices" instead of physical "disks" are
   attached or detached.

Tested with NEOSeries FlexStor II and luckily a broken tape drive 8-(

mpii0 at pci1 dev 0 function 0: vendor 1000 product 00ab (rev. 0x01)
mpii0: interrupting at irq 11
mpii0: HBA 9400-8i8e, firmware 3.0.4.0, MPI 2.6
mpii0: physical device inserted in slot 9
mpii0: physical device inserted in slot 13
mpii0: physical device inserted in slot 16
st0 at scsibus0 target 9 lun 0:  tape removable
st0: density code 92, variable blocks, write-enabled
ch0 at scsibus0 target 9 lun 1:  changer removable
ch0: 23 slots, 2 drives, 1 picker, 1 portal
st0: tagged queueing
ch0: tagged queueing
st1 at scsibus0 target 13 lun 0:  tape removable
st1: density code 92, variable blocks, write-enabled
st1: tagged queueing
ses0 at scsibus0 target 16 lun 0:  enclosure services fixed

Note: pullup-8


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/dev/pci/mpii.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/scsipi

2019-02-12 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Feb 12 13:49:13 UTC 2019

Modified Files:
src/sys/dev/scsipi: files.scsipi

Log Message:
 Fix, but disable the commented SUN compatibility in st.c to write
 final file marks by opening and immediately closing the device
 in O_WRONLY mode. That code has not been working since around 1998.
 It can now be enabled with options ST_SUNCOMPAT.


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/sys/dev/scsipi/files.scsipi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/scsipi

2019-02-12 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Feb 12 13:43:40 UTC 2019

Modified Files:
src/sys/dev/scsipi: st.c

Log Message:
Fix PR kern/53949:

Fix inconsistent/incomplete file mark handling to conform again
to mtio(4) at close(2) time. This was necessary as the PREVENT/ALLOW
bracket was reduced from a whole mount session to cover only the
open(2)/close(2) time on ~2002-03-22. The rationale was to allow
robots and humans to change the media during a mount session.

Unfortunately this lead to file marks being written to potentially other
media at the beginning on drives that used the two file marks as EOM
pattern. In order for that to happen the media had to be removed after
data and at most one file mark had been written before removal.

The mount error message has been clarified and a warning about
potential data/file mark lossage on UNIT ATTENTION
during an active mount session with unfinished file marks has been
added.

While there, fix, but disable the commented SUN compatibility to write
final file marks by opening and immediately closing the device
in O_WRONLY mode. That code has not been working since around 1998.
It can now be enabled with options ST_SUNCOMPAT.

Additionally debug output coverage has been extended.


To generate a diff of this commit:
cvs rdiff -u -r1.235 -r1.236 src/sys/dev/scsipi/st.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2018-12-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Dec 28 15:06:07 UTC 2018

Modified Files:
src/sys/dev/pci: mpii.c

Log Message:
fix LUN handling (byte order issue)

now ch0 on a NEOSeries FlexStor II is detected again on LUN 1
this is a regression introduced in 1.15 update and 1.8.10.3 pullup

Tested with NEOSeries FlexStor II:
mpii0 at pci1 dev 0 function 0: vendor 1000 product 00ab (rev. 0x01)
mpii0: interrupting at irq 11
mpii0: HBA 9400-8i8e, firmware 3.0.4.0, MPI 2.6
mpii0: physical disk inserted in slot 9
mpii0: physical disk inserted in slot 13
mpii0: physical disk inserted in slot 16
st0 at scsibus0 target 9 lun 0:  tape removable
st0: drive empty
st0: tagged queueing
st1 at scsibus0 target 13 lun 0:  tape removable
st1: drive empty
ch0 at scsibus0 target 13 lun 1:  changer removable
ch0: 23 slots, 2 drives, 1 picker, 1 portal
st1: tagged queueing
ch0: tagged queueing
ses0 at scsibus0 target 16 lun 0:  enclosure services fixed
ses0: SCSI-3 SES Device


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/dev/pci/mpii.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/x86/pci

2018-01-27 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Jan 27 21:24:30 UTC 2018

Modified Files:
src/sys/arch/x86/pci: amdsmn.c

Log Message:
rescan amdsmnbus instead of amdsmn (fixes panic)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/x86/pci/amdsmn.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sbin/raidctl

2017-11-20 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Mon Nov 20 18:37:56 UTC 2017

Modified Files:
src/sbin/raidctl: raidctl.8 rf_configure.c

Log Message:
support NAME= syntax for disks and spares


To generate a diff of this commit:
cvs rdiff -u -r1.72 -r1.73 src/sbin/raidctl/raidctl.8
cvs rdiff -u -r1.26 -r1.27 src/sbin/raidctl/rf_configure.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/netinet6

2017-05-13 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat May 13 20:13:27 UTC 2017

Modified Files:
src/sys/netinet6: mld6.c

Log Message:
avoid a double ifa_release() and thus a panic
when e. g. running ifmcstat
CVS: --
CVS: CVSROOT  cvs.NetBSD.org:/cvsroot
CVS: please use "PR category/123" to have the commitmsg appended to PR 123
CVS:
CVS: Please evaluate your changes and consider the following.
CVS: Abort checkin if you answer no.
CVS: => For all changes:
CVS: Do the changed files compile?
CVS: Has the change been tested?
CVS: => If you are not completely familiar with the changed components:
CVS: Has the change been posted for review?
CVS: Have you allowed enough time for feedback?
CVS: => If the change is major:
CVS: => If the change adds files to, or removes files from $DESTDIR:
CVS: => If you are changing a library or kernel interface:
CVS: Have you successfully run "./build.sh release"?


To generate a diff of this commit:
cvs rdiff -u -r1.88 -r1.89 src/sys/netinet6/mld6.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2017-03-08 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Mar  8 08:00:09 UTC 2017

Modified Files:
src/sys/dev/pci: if_wm.c

Log Message:
PR kern/52039: use same safeguard as for the 82578


To generate a diff of this commit:
cvs rdiff -u -r1.496 -r1.497 src/sys/dev/pci/if_wm.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/scsipi

2016-09-17 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Sep 17 18:53:13 UTC 2016

Modified Files:
src/sys/dev/scsipi: scsipi_verbose.c

Log Message:
ASC/ASCQ table updated from http://www.t10.org/lists/asc-num.txt 2016-07-30


To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/sys/dev/scsipi/scsipi_verbose.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/i2c

2016-07-03 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jul  3 12:26:55 UTC 2016

Modified Files:
src/sys/dev/i2c: hytp14.c hytp14var.h

Log Message:
convert device polling from callout to kthread.
Solves:
- hung initialization on A20 (bananapi)
- allows iic_exec() implementations to use condvars


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/i2c/hytp14.c
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/i2c/hytp14var.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/fs/tmpfs

2016-03-12 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Mar 12 10:51:01 UTC 2016

Modified Files:
src/sys/fs/tmpfs: tmpfs_vnops.c

Log Message:
do no access uninitialized variables in KASSERTs - fixes build


To generate a diff of this commit:
cvs rdiff -u -r1.124 -r1.125 src/sys/fs/tmpfs/tmpfs_vnops.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2015-07-10 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Jul 10 21:31:19 UTC 2015

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_control.c

Log Message:
backport fix for bug 2867 -  ntpd with autokey active crashed by 'ntpq -crv'


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/ntp/dist/ntpd/ntp_control.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/scripts

2015-07-10 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Jul 10 21:27:49 UTC 2015

Modified Files:
src/external/bsd/ntp/scripts: mkver

Log Message:
update imported version to reality


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/ntp/scripts/mkver

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpq

2015-06-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jun 28 15:37:37 UTC 2015

Modified Files:
src/external/bsd/ntp/dist/ntpq: ntpq-subs.c

Log Message:
fix ifstats command by relaxing invalid sanity check - ntp bug #2860


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/ntp/dist/ntpq/ntpq-subs.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/i2c

2014-06-29 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jun 29 09:52:43 UTC 2014

Modified Files:
src/sys/dev/i2c: hytp14.c

Log Message:
allow i2c address 0x01-0x7F
igore responses if the sensor is in command mode


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/i2c/hytp14.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/gpio

2014-06-29 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jun 29 09:32:24 UTC 2014

Modified Files:
src/sys/dev/gpio: gpio.c

Log Message:
make implementation match gpio(4) man entry. do no change configuration
if no flags are be set (allows non-destructive inquiry via GPIOSET again).


To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/gpio/gpio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/i2c

2014-06-29 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jun 29 09:06:05 UTC 2014

Modified Files:
src/sys/dev/i2c: hytp14reg.h

Log Message:
remove artifacts inspired by misleading documentation
fix address caculation macros
fix typoes


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/i2c/hytp14reg.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2014-05-18 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun May 18 11:46:24 UTC 2014

Modified Files:
src/doc: CHANGES
src/share/man/man4: Makefile
src/sys/dev/i2c: files.i2c
src/sys/dev/sysmon: sysmon_envsys_tables.c
src/sys/modules: Makefile
src/sys/sys: envsys.h
src/usr.sbin/envstat: envstat.8 envstat.c
Added Files:
src/share/man/man4: hythygtemp.4
src/sys/dev/i2c: hytp14.c hytp14reg.h hytp14var.h
src/sys/modules/hythygtemp: Makefile hythygtemp.ioconf

Log Message:
add HYT-221/271/939 humidity/temperature I2C sensor
extend envsys(4) framework by %rH (relative humidity)


To generate a diff of this commit:
cvs rdiff -u -r1.1925 -r1.1926 src/doc/CHANGES
cvs rdiff -u -r1.613 -r1.614 src/share/man/man4/Makefile
cvs rdiff -u -r0 -r1.1 src/share/man/man4/hythygtemp.4
cvs rdiff -u -r1.53 -r1.54 src/sys/dev/i2c/files.i2c
cvs rdiff -u -r0 -r1.1 src/sys/dev/i2c/hytp14.c src/sys/dev/i2c/hytp14reg.h \
src/sys/dev/i2c/hytp14var.h
cvs rdiff -u -r1.11 -r1.12 src/sys/dev/sysmon/sysmon_envsys_tables.c
cvs rdiff -u -r1.135 -r1.136 src/sys/modules/Makefile
cvs rdiff -u -r0 -r1.1 src/sys/modules/hythygtemp/Makefile \
src/sys/modules/hythygtemp/hythygtemp.ioconf
cvs rdiff -u -r1.33 -r1.34 src/sys/sys/envsys.h
cvs rdiff -u -r1.61 -r1.62 src/usr.sbin/envstat/envstat.8
cvs rdiff -u -r1.94 -r1.95 src/usr.sbin/envstat/envstat.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/onewire

2014-05-14 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed May 14 08:14:56 UTC 2014

Modified Files:
src/sys/dev/onewire: owtemp.c

Log Message:
calculate extended precision as per DS1920/DS1820 data sheets


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/dev/onewire/owtemp.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2014-04-23 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Apr 23 07:04:01 UTC 2014

Modified Files:
src/distrib/sets/lists/man: mi
src/share/man/man4/man4.evbarm: Makefile
Added Files:
src/share/man/man4/man4.evbarm: bcmgpio.4
Removed Files:
src/share/man/man4: bcmgpio.4

Log Message:
install bcmgpio.4 for evbarm arch


To generate a diff of this commit:
cvs rdiff -u -r1.1470 -r1.1471 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.2 -r0 src/share/man/man4/bcmgpio.4
cvs rdiff -u -r1.5 -r1.6 src/share/man/man4/man4.evbarm/Makefile
cvs rdiff -u -r0 -r1.1 src/share/man/man4/man4.evbarm/bcmgpio.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2014-04-22 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Apr 23 06:53:14 UTC 2014

Modified Files:
src/share/man/man4: Makefile

Log Message:
move mcp23s17gpio.4 to MI SPI drivers section


To generate a diff of this commit:
cvs rdiff -u -r1.612 -r1.613 src/share/man/man4/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2014-04-22 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Apr 22 18:51:35 UTC 2014

Modified Files:
src/distrib/sets/lists/man: mi
src/doc: CHANGES
src/sys/arch/arm/broadcom: bcm2835_gpio_subr.c bcm2835_gpio_subr.h
bcm2835_gpioreg.h bcm2835_obio.c files.bcm2835
src/sys/arch/evbarm/conf: RPI
Added Files:
src/share/man/man4: bcmgpio.4
src/sys/arch/arm/broadcom: bcm2835_gpio.c

Log Message:
add a driver for BCM2835 obio gpio


To generate a diff of this commit:
cvs rdiff -u -r1.1469 -r1.1470 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.1918 -r1.1919 src/doc/CHANGES
cvs rdiff -u -r0 -r1.1 src/share/man/man4/bcmgpio.4
cvs rdiff -u -r0 -r1.1 src/sys/arch/arm/broadcom/bcm2835_gpio.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/broadcom/bcm2835_gpio_subr.c \
src/sys/arch/arm/broadcom/bcm2835_gpioreg.h
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/broadcom/bcm2835_gpio_subr.h
cvs rdiff -u -r1.19 -r1.20 src/sys/arch/arm/broadcom/bcm2835_obio.c
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/arm/broadcom/files.bcm2835
cvs rdiff -u -r1.43 -r1.44 src/sys/arch/evbarm/conf/RPI

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2014-04-06 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Apr  6 17:59:39 UTC 2014

Modified Files:
src/distrib/sets/lists/man: mi
src/doc: CHANGES
src/share/man/man4: Makefile
src/sys/arch/evbarm/conf: RPI
src/sys/dev/spi: files.spi
Added Files:
src/share/man/man4: mcp23s17gpio.4
src/sys/dev/spi: mcp23s17.c mcp23s17.h

Log Message:
add Microchip MCP23S17 GPIO driver
(via SPI interface)


To generate a diff of this commit:
cvs rdiff -u -r1.1467 -r1.1468 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.1910 -r1.1911 src/doc/CHANGES
cvs rdiff -u -r1.611 -r1.612 src/share/man/man4/Makefile
cvs rdiff -u -r0 -r1.1 src/share/man/man4/mcp23s17gpio.4
cvs rdiff -u -r1.42 -r1.43 src/sys/arch/evbarm/conf/RPI
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/spi/files.spi
cvs rdiff -u -r0 -r1.1 src/sys/dev/spi/mcp23s17.c src/sys/dev/spi/mcp23s17.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/libntp

2014-04-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Apr  1 17:34:44 UTC 2014

Modified Files:
src/external/bsd/ntp/dist/libntp: atouint.c

Log Message:
remove stray 'return 0;' that effectively disabled atouint().

Hi Christos!


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/dist/libntp/atouint.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/libntp

2014-01-20 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Mon Jan 20 19:03:33 UTC 2014

Modified Files:
src/external/bsd/ntp/dist/libntp: work_fork.c

Log Message:
fix voluntary self-destruct (kill(0, SIGUP)) after successful int_res run and 
interface change


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/ntp/dist/libntp/work_fork.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/lib/libparse

2014-01-05 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jan  5 15:47:23 UTC 2014

Modified Files:
src/external/bsd/ntp/lib/libparse: Makefile

Log Message:
- add new clk_sel240x.c


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/lib/libparse/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/include

2014-01-05 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jan  5 15:39:13 UTC 2014

Modified Files:
src/external/bsd/ntp/include: config.h

Log Message:
- enable the rest of the PARSE clocks (missed config option when merging)


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/ntp/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp

2014-01-05 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jan  5 15:13:36 UTC 2014

Modified Files:
src/external/bsd/ntp/dist/ntpd: refclock_parse.c
src/external/bsd/ntp/include: config.h

Log Message:
- enable PARSE clocks (missed config option when merging)
- remove all conflict markers/finish merge in refclock_parse.c:1.10


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/ntp/dist/ntpd/refclock_parse.c
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/ntp/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/scsipi

2013-08-09 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Aug  9 19:58:44 UTC 2013

Modified Files:
src/sys/dev/scsipi: ch.c

Log Message:
bump command timeout to 5 minutes. several
types of changers (Overland PowerLoader, Dell
PowerVault) have been exceeding the 100 sec
limit aborting a perfectly (slowly) progressing
operation.


To generate a diff of this commit:
cvs rdiff -u -r1.87 -r1.88 src/sys/dev/scsipi/ch.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2013-08-09 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Aug  9 19:51:29 UTC 2013

Modified Files:
src/sys/dev/pci: mpii.c

Log Message:
fix issues when reading variable block sized tapes.

symptoms:
generic HBA error on console when reading
with a larger blocksize. blocks read
are padded to requested block size with
a 5a... a5... pattern.

problems fixed:
- controller scsi_status values did not match
  the ones used by the spsipi layer.
  a mapping function was introduced.
- when experiencing an underrun (read 64k and
  get a 63k block) the controller posted
  not a SUCCESS status but CHECK status. handle
  that like SUCCESS adjusting xs->resid and set
  XS_SENSE.
  now the correct data amount is returned and
  nothing is 'added' and no 'generic HBA error'
  occurs.
- make decisions using variables and constants
  from the controller domain.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/pci/mpii.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2013-08-08 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Thu Aug  8 07:06:13 UTC 2013

Modified Files:
src/sys/dev/pci: mpii.c

Log Message:
Allow 8 luns instead of 1. This enables access to the changer device on
a Dell PV-124T:
ch0 at scsibus0 target 9 lun 1:  changer removable
ch0: 16 slots, 1 drive, 1 picker, 0 portals


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/mpii.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2013-06-10 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Mon Jun 10 07:14:02 UTC 2013

Modified Files:
src/distrib/sets/lists/man: mi
src/doc: CHANGES
src/share/man/man4: gpio.4 isa.4
src/share/man/man4/man4.x86: Makefile soekrisgpio.4
src/sys/arch/amd64/conf: GENERIC
src/sys/arch/i386/conf: ALL GENERIC
src/sys/dev/isa: files.isa soekrisgpio.c

Log Message:
adjust soekrisgpio driver to NetBSD


To generate a diff of this commit:
cvs rdiff -u -r1.1429 -r1.1430 src/distrib/sets/lists/man/mi
cvs rdiff -u -r1.1826 -r1.1827 src/doc/CHANGES
cvs rdiff -u -r1.24 -r1.25 src/share/man/man4/gpio.4
cvs rdiff -u -r1.42 -r1.43 src/share/man/man4/isa.4
cvs rdiff -u -r1.13 -r1.14 src/share/man/man4/man4.x86/Makefile
cvs rdiff -u -r1.1.1.1 -r1.2 src/share/man/man4/man4.x86/soekrisgpio.4
cvs rdiff -u -r1.377 -r1.378 src/sys/arch/amd64/conf/GENERIC
cvs rdiff -u -r1.359 -r1.360 src/sys/arch/i386/conf/ALL
cvs rdiff -u -r1.1094 -r1.1095 src/sys/arch/i386/conf/GENERIC
cvs rdiff -u -r1.162 -r1.163 src/sys/dev/isa/files.isa
cvs rdiff -u -r1.1.1.1 -r1.2 src/sys/dev/isa/soekrisgpio.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS import: src

2013-06-09 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Mon Jun 10 06:04:35 UTC 2013

Update of /cvsroot/src
In directory ivanova.netbsd.org:/tmp/cvs-serv13274

Log Message:
Import of proposed patch to OpenBSD for supporting GPIO and status
leds on a Soekris net6501

patch posted on 2013-01-14 17:11:00 at
http://permalink.gmane.org/gmane.os.openbsd.tech/31317


Status:

Vendor Tag: matt_dainty
Release Tags:   GMANE_20130114171100

N src/sys/dev/isa/soekrisgpio.c
N src/share/man/man4/man4.x86/soekrisgpio.4

No conflicts created by this import



CVS commit: src/lib/libc/sys

2013-06-07 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Jun  8 06:05:03 UTC 2013

Modified Files:
src/lib/libc/sys: chflags.2

Log Message:
Bring description in sync with errors-section and implementation reality.
(changing super-user only flags is not silently ignored)


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/lib/libc/sys/chflags.2

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/ufs/ufs

2013-06-07 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Jun  8 05:47:02 UTC 2013

Modified Files:
src/sys/ufs/ufs: ufs_vnops.c

Log Message:
fix clearing of system-flags (schg, sappnd). clearing system flags is possible 
again
at securelevel < 1.
reviewed by christos@


To generate a diff of this commit:
cvs rdiff -u -r1.212 -r1.213 src/sys/ufs/ufs/ufs_vnops.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys

2013-05-26 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun May 26 18:07:42 UTC 2013

Modified Files:
src/sys/conf: files
src/sys/kern: kern_tc.c
src/sys/sys: timepps.h

Log Message:
Extend kernel PPS api with pps_ref_event().
pps_ref_event() allows capturing PPS time stamps
that are not generated at precisely 1Hz (e. g.
by reading a precision clock via callout()).

This extension allows clock drivers to supply PPS
time-stamps and drive the kernel NTP PLL
without the overhead of interrupt-handling and
-processing.


To generate a diff of this commit:
cvs rdiff -u -r1.1070 -r1.1071 src/sys/conf/files
cvs rdiff -u -r1.44 -r1.45 src/sys/kern/kern_tc.c
cvs rdiff -u -r1.20 -r1.21 src/sys/sys/timepps.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/ic

2013-04-27 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Apr 27 13:25:09 UTC 2013

Modified Files:
src/sys/dev/ic: aic79xx_inline.h

Log Message:
fix panic due to physaddr instead of offset being passed to ahd_dmamap_sync


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/dev/ic/aic79xx_inline.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.sbin/route6d

2013-04-15 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Mon Apr 15 07:58:36 UTC 2013

Modified Files:
src/usr.sbin/route6d: route6d.c

Log Message:
reenable routing functionality by using RT_ROUNDUP for ROUNDUP when available


To generate a diff of this commit:
cvs rdiff -u -r1.66 -r1.67 src/usr.sbin/route6d/route6d.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2013-04-07 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Apr  7 14:14:50 UTC 2013

Modified Files:
src/distrib/sets/lists/man: mi

Log Message:
add pcap-tstamp.* to man list


To generate a diff of this commit:
cvs rdiff -u -r1.1424 -r1.1425 src/distrib/sets/lists/man/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/net

2013-04-07 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Apr  7 14:12:06 UTC 2013

Modified Files:
src/sys/net: dlt.h

Log Message:
recover DLT_HIPPY and DLT_HDLC from before for if_hippisubr.c and hd64570.c


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/net/dlt.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2012-08-17 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Aug 17 22:37:26 UTC 2012

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_io.c

Log Message:
re-enable broadcast client config after interface re-scanning
make broadcast transmission work again


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/ntp/dist/ntpd/ntp_io.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2012-08-11 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 11 20:09:08 UTC 2012

Modified Files:
src/external/bsd/ntp/dist/ntpd: refclock_parse.c

Log Message:
fix some fallout from append correction


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/ntp/dist/ntpd/refclock_parse.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sbin/routed

2012-06-24 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jun 24 16:24:35 UTC 2012

Modified Files:
src/sbin/routed: if.c

Log Message:
PR/44647: commit fix proposed by Takahiro HAYASHI
verified to be working in -current and also helps NetBSD-6 BETA2


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sbin/routed/if.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/net

2012-03-20 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Mar 20 12:04:01 UTC 2012

Modified Files:
src/lib/libc/net: getaddrinfo.c

Log Message:
PR pkg/46206
re-establish fqdn lookup when AI_ADDRCONFIG is used in hints
AI_ADDRCONFIG led to fqdn lookup being skipped as the systems didn't
configure any PF_UNSPEC addresses - check was too strict here.
Thnaks to Ryo ONODERA for testing.


To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 src/lib/libc/net/getaddrinfo.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/lib/libc/net

2012-03-20 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Mar 20 10:34:33 UTC 2012

Modified Files:
src/lib/libc/net: getaddrinfo.c

Log Message:
PR 46206: fix programmed SIGSEGV
more work is needed as tests seem to indicate that name resolution now
does no seem to work (firefox reports Server not found)
thanks to Ryo ONODERA for testing.


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 src/lib/libc/net/getaddrinfo.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpq

2012-02-03 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Fri Feb  3 10:20:29 UTC 2012

Modified Files:
src/external/bsd/ntp/dist/ntpq: ntpq.c

Log Message:
Clang compile fix from Joerg Sonneberger approved by releng.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/ntp/dist/ntpq/ntpq.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2012-02-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 22:48:16 UTC 2012

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_request.c
src/external/bsd/ntp/dist/ntpdc: ntpdc.c
src/external/bsd/ntp/dist/ntpq: ntpq.c

Log Message:
cleanup printf fmt differences between i386/amd64


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/ntp/dist/ntpd/ntp_request.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/ntp/dist/ntpdc/ntpdc.c
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/dist/ntpq/ntpq.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/bin/sntp

2012-02-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 21:22:19 UTC 2012

Modified Files:
src/external/bsd/ntp/bin/sntp: Makefile

Log Message:
use WARNS=0 until const issue is resolved


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/bin/sntp/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2012-02-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 21:21:26 UTC 2012

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_io.c

Log Message:
initialize min_dist


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/ntp/dist/ntpd/ntp_io.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/lib/libopts

2012-02-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 20:49:09 UTC 2012

Modified Files:
src/external/bsd/ntp/lib/libopts: Makefile

Log Message:
build libopts with WARNS=0 for now


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/lib/libopts/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp

2012-02-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 20:48:02 UTC 2012

Modified Files:
src/external/bsd/ntp: Makefile.inc
src/external/bsd/ntp/dist/ntpd: ntp_control.c ntp_io.c ntp_refclock.c
ntp_restrict.c refclock_jjy.c
src/external/bsd/ntp/dist/ntpq: ntpq.c
src/external/bsd/ntp/dist/sntp: crypto.c log.c main.c networking.c
networking.h
src/external/bsd/ntp/dist/sntp/libopts: numeric.c
src/external/bsd/ntp/dist/sntp/libopts/autoopts: options.h
src/external/bsd/ntp/dist/util: ntp-keygen-opts.c

Log Message:
back to WARNS=4 (constify and signedness corrections)


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/ntp/Makefile.inc
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/dist/ntpd/ntp_control.c
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/ntp/dist/ntpd/ntp_io.c
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/dist/ntpd/ntp_refclock.c \
src/external/bsd/ntp/dist/ntpd/refclock_jjy.c
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/ntp/dist/ntpd/ntp_restrict.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/ntp/dist/ntpq/ntpq.c
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/dist/sntp/crypto.c \
src/external/bsd/ntp/dist/sntp/main.c \
src/external/bsd/ntp/dist/sntp/networking.h
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/ntp/dist/sntp/log.c
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/dist/sntp/networking.c
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/ntp/dist/sntp/libopts/numeric.c
cvs rdiff -u -r1.3 -r1.4 \
src/external/bsd/ntp/dist/sntp/libopts/autoopts/options.h
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/dist/util/ntp-keygen-opts.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2012-02-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 13:01:29 UTC 2012

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_keyword.h

Log Message:
bin/45906: regenerate ntpd/ntp_keyword.h to accommodate our changes


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/dist/ntpd/ntp_keyword.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2012-02-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 08:59:07 UTC 2012

Modified Files:
src/doc: 3RDPARTY CHANGES

Log Message:
document ntp 4.2.6p5 import


To generate a diff of this commit:
cvs rdiff -u -r1.903 -r1.904 src/doc/3RDPARTY
cvs rdiff -u -r1.1664 -r1.1665 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/lib/libntp

2012-02-01 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 08:15:21 UTC 2012

Modified Files:
src/external/bsd/ntp/lib/libntp: Makefile

Log Message:
add libotps for autoopts headers to CPPFLAGS


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/ntp/lib/libntp/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/scripts

2012-01-31 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 07:54:58 UTC 2012

Modified Files:
src/external/bsd/ntp/scripts: mkver

Log Message:
NTP 4.2.6p5 (Harlan Stenn , 2011/12/24)

Focus: Bug fixes

Severity: Medium

This is a recommended upgrade.

This release updates sys_rootdisp and sys_jitter calculations to match the
RFC specification, fixes a potential IPv6 address matching error for the
"nic" and "interface" configuration directives, suppresses the creation of
extraneous ephemeral associations for certain broadcastclient and
multicastclient configurations, cleans up some ntpq display issues, and
includes improvements to orphan mode, minor bugs fixes and code clean-ups.

New features / changes in this release:

ntpd

 * Updated "nic" and "interface" IPv6 address handling to prevent
   mismatches with localhost [::1] and wildcard [::] which resulted from
   using the address/prefix format (e.g. fe80::/64)
 * Fix orphan mode stratum incorrectly counting to infinity
 * Orphan parent selection metric updated to includes missing ntohl()
 * Non-printable stratum 16 refid no longer sent to ntp
 * Duplicate ephemeral associations suppressed for broadcastclient and
   multicastclient without broadcastdelay
 * Exclude undetermined sys_refid from use in loopback TEST12
 * Exclude MODE_SERVER responses from KoD rate limiting
 * Include root delay in clock_update() sys_rootdisp calculations
 * get_systime() updated to exclude sys_residual offset (which only
   affected bits "below" sys_tick, the precision threshold)
 * sys.peer jitter weighting corrected in sys_jitter calculation

ntpq

 * -n option extended to include the billboard "server" column
 * IPv6 addresses in the local column truncated to prevent overruns

---
NTP 4.2.6p4 (Harlan Stenn , 2011/09/22)

Focus: Bug fixes and portability improvements

Severity: Medium

This is a recommended upgrade.

This release includes build infrastructure updates, code
clean-ups, minor bug fixes, fixes for a number of minor
ref-clock issues, and documentation revisions.

Portability improvements affect AIX, HP-UX, Linux, OS X and 64-bit time_t.

New features / changes in this release:

Build system

* Fix checking for struct rtattr
* Update config.guess and config.sub for AIX
* Upgrade required version of autogen and libopts for building
  from our source code repository

ntpd

* Back-ported several fixes for Coverity warnings from ntp-dev
* Fix a rare boundary condition in UNLINK_EXPR_SLIST()
* Allow "logconfig =allall" configuration directive
* Bind tentative IPv6 addresses on Linux
* Correct WWVB/Spectracom driver to timestamp CR instead of LF
* Improved tally bit handling to prevent incorrect ntpq peer status reports
* Exclude the Undisciplined Local Clock and ACTS drivers from the initial
  candidate list unless they are designated a "prefer peer"
* Prevent the consideration of Undisciplined Local Clock or ACTS drivers for
  selection during the 'tos orphanwait' period
* Prefer an Orphan Mode Parent over the Undisciplined Local Clock or ACTS
  drivers
* Improved support of the Parse Refclock trusttime flag in Meinberg mode
* Back-port utility routines from ntp-dev: mprintf(), emalloc_zero()
* Added the NTPD_TICKADJ_PPM environment variable for specifying baseline
  clock slew on Microsoft Windows
* Code cleanup in libntpq

ntpdc

* Fix timerstats reporting

ntpdate

* Reduce time required to set clock
* Allow a timeout greater than 2 seconds

sntp

* Backward incompatible command-line option change:
  -l/--filelog changed -l/--logfile (to be consistent with ntpd)

Documentation

* Update html2man. Fix some tags in the .html files
* Distribute ntp-wait.html

---
NTP 4.2.6p3 (Harlan Stenn , 2011/01/03)

Focus: Bug fixes and portability improvements

Severity: Medium

This is a recommended upgrade.

This release includes build infrastructure updates, code
clean-ups, minor bug fixes, fixes for a number of minor
ref-clock issues, and documentation revisions.

Portability improvements in this release affect AIX, Atari FreeMiNT,
FreeBSD4, Linux and Microsoft Windows.

New features / changes in this release:

Build system
* Use lsb_release to get information about Linux distributions.
* 'test' is in /usr/bin (instead of /bin) on some systems.
* Basic sanity checks for the ChangeLog file.
* Source certain build files with ./filename for systems without . in PATH.
* IRIX portability fix.
* Use a single copy of the "libopts" code.
* autogen/libopts upgrade.
* configure.ac m4 quoting cleanup.

ntpd
* Do not bind to IN6_IFF_ANYCAST addresses.
* Log the reason for exiting under Windows.
* Multicast fixes for Windows.
* Interpolation fixes for Windows.
* IPv4 and IPv6 Multicast fixes.
* Manycast solicitation fixes and general repairs.
* JJY refclock cleanup.
* NMEA refclock improvements.
* Oncore debug message cleanup.
* Palisade refclock now builds under Linux.
* Give RAWDCF more baud rates.
* Support Truetime Satellite clocks under Windows.
* Support Arbit

CVS commit: src/external/bsd/ntp

2012-01-31 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 07:53:52 UTC 2012

Modified Files:
src/external/bsd/ntp: importdate

Log Message:
merge import ntp-4-2-6p5


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/importdate

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp

2012-01-31 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Wed Feb  1 07:46:30 UTC 2012

Modified Files:
src/external/bsd/ntp: Makefile.inc
src/external/bsd/ntp/bin/ntp-keygen: Makefile
src/external/bsd/ntp/bin/ntpd: Makefile
src/external/bsd/ntp/bin/ntpdate: Makefile
src/external/bsd/ntp/bin/ntpdc: Makefile
src/external/bsd/ntp/bin/ntpq: Makefile
src/external/bsd/ntp/bin/ntptime: Makefile
src/external/bsd/ntp/bin/sntp: Makefile
src/external/bsd/ntp/dist/include: ntp_config.h ntp_fp.h ntp_request.h
ntp_stdlib.h ntpd.h
src/external/bsd/ntp/dist/lib/isc: inet_pton.c netaddr.c
src/external/bsd/ntp/dist/lib/isc/unix: net.c
src/external/bsd/ntp/dist/libntp: audio.c humandate.c icom.c modetoa.c
ntp_lineedit.c ssl_init.c
src/external/bsd/ntp/dist/ntpd: complete.conf keyword-gen.c
ntp_config.c ntp_control.c ntp_crypto.c ntp_filegen.c ntp_intres.c
ntp_io.c ntp_keyword.h ntp_loopfilter.c ntp_parser.c ntp_parser.h
ntp_parser.y ntp_peer.c ntp_proto.c ntp_refclock.c ntp_request.c
ntp_scanner.c ntp_util.c ntpd-opts.h ntpd.c refclock_acts.c
refclock_arc.c refclock_heath.c refclock_jjy.c refclock_jupiter.c
refclock_neoclock4x.c refclock_nmea.c refclock_oncore.c
refclock_parse.c refclock_pcf.c refclock_wwvb.c
src/external/bsd/ntp/dist/ntpdate: ntpdate.c
src/external/bsd/ntp/dist/ntpdc: ntpdc.c ntpdc_ops.c
src/external/bsd/ntp/dist/ntpq: ntpq-subs.c ntpq.1 ntpq.c ntpq.h
src/external/bsd/ntp/dist/sntp: crypto.c kod_management.c log.c log.h
main.c networking.c networking.h
src/external/bsd/ntp/dist/sntp/libopts: autoopts.h nested.c
parse-duration.c save.c stack.c
src/external/bsd/ntp/dist/sntp/libopts/autoopts: options.h
src/external/bsd/ntp/dist/util: ntp-keygen-opts.c ntp-keygen.c
src/external/bsd/ntp/lib/libntp: Makefile
src/external/bsd/ntp/lib/libopts: Makefile

Log Message:
merge import ntp-4-2-6p5


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/ntp/Makefile.inc
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/bin/ntp-keygen/Makefile
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/ntp/bin/ntpd/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/bin/ntpdate/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/ntp/bin/ntpdc/Makefile
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/bin/ntpq/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/bin/ntptime/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/bin/sntp/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/dist/include/ntp_config.h \
src/external/bsd/ntp/dist/include/ntp_fp.h \
src/external/bsd/ntp/dist/include/ntp_request.h \
src/external/bsd/ntp/dist/include/ntp_stdlib.h \
src/external/bsd/ntp/dist/include/ntpd.h
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/dist/lib/isc/inet_pton.c \
src/external/bsd/ntp/dist/lib/isc/netaddr.c
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/dist/lib/isc/unix/net.c
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/dist/libntp/audio.c
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/dist/libntp/humandate.c \
src/external/bsd/ntp/dist/libntp/icom.c \
src/external/bsd/ntp/dist/libntp/modetoa.c \
src/external/bsd/ntp/dist/libntp/ntp_lineedit.c \
src/external/bsd/ntp/dist/libntp/ssl_init.c
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/dist/ntpd/complete.conf \
src/external/bsd/ntp/dist/ntpd/keyword-gen.c \
src/external/bsd/ntp/dist/ntpd/ntp_filegen.c \
src/external/bsd/ntp/dist/ntpd/ntp_keyword.h \
src/external/bsd/ntp/dist/ntpd/ntp_loopfilter.c \
src/external/bsd/ntp/dist/ntpd/ntp_parser.h \
src/external/bsd/ntp/dist/ntpd/ntp_peer.c \
src/external/bsd/ntp/dist/ntpd/ntp_proto.c \
src/external/bsd/ntp/dist/ntpd/ntp_refclock.c \
src/external/bsd/ntp/dist/ntpd/ntp_util.c \
src/external/bsd/ntp/dist/ntpd/ntpd-opts.h \
src/external/bsd/ntp/dist/ntpd/refclock_arc.c \
src/external/bsd/ntp/dist/ntpd/refclock_heath.c \
src/external/bsd/ntp/dist/ntpd/refclock_jjy.c \
src/external/bsd/ntp/dist/ntpd/refclock_pcf.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/ntp/dist/ntpd/ntp_config.c \
src/external/bsd/ntp/dist/ntpd/ntp_control.c \
src/external/bsd/ntp/dist/ntpd/ntp_parser.c \
src/external/bsd/ntp/dist/ntpd/ntp_parser.y \
src/external/bsd/ntp/dist/ntpd/refclock_parse.c
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/dist/ntpd/ntp_crypto.c \
src/external/bsd/ntp/dist/ntpd/ntp_intres.c \
src/external/bsd/ntp/dist/ntpd/ntp_scanner.c \
src/external/bsd/ntp/dist/ntpd/refclock_acts.c \
src/external/bsd/ntp/dist/ntpd/refclock_jupiter.c \
src/external/bsd/ntp/dist/ntpd/refclock_neoclock4x.c \
src/external/bsd/ntp/dist/ntpd/refclock_nmea.c
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/ntp/dist/ntpd/ntp_io.c
c

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

2012-01-31 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Jan 31 21:29:40 UTC 2012

Update of /cvsroot/src/external/bsd/ntp/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv2606

Log Message:
Import ntp 4.2.6p5

Status:

Vendor Tag: UDEL
Release Tags:   ntp-4-2-6p5

U src/external/bsd/ntp/dist/CommitLog-4.1.0
U src/external/bsd/ntp/dist/COPYRIGHT
U src/external/bsd/ntp/dist/ChangeLog
U src/external/bsd/ntp/dist/CommitLog
U src/external/bsd/ntp/dist/Makefile.am
U src/external/bsd/ntp/dist/INSTALL
U src/external/bsd/ntp/dist/NOTES.y2kfixes
U src/external/bsd/ntp/dist/Makefile.in
U src/external/bsd/ntp/dist/NEWS
U src/external/bsd/ntp/dist/README.bk
U src/external/bsd/ntp/dist/README
U src/external/bsd/ntp/dist/bincheck.mf
U src/external/bsd/ntp/dist/README.hackers
U src/external/bsd/ntp/dist/README.patches
U src/external/bsd/ntp/dist/README.refclocks
U src/external/bsd/ntp/dist/README.versions
U src/external/bsd/ntp/dist/TODO
U src/external/bsd/ntp/dist/WHERE-TO-START
U src/external/bsd/ntp/dist/aclocal.m4
U src/external/bsd/ntp/dist/bootstrap
U src/external/bsd/ntp/dist/build
U src/external/bsd/ntp/dist/compile
U src/external/bsd/ntp/dist/config.guess
U src/external/bsd/ntp/dist/config.h.in
U src/external/bsd/ntp/dist/config.sub
U src/external/bsd/ntp/dist/configure
U src/external/bsd/ntp/dist/configure.ac
U src/external/bsd/ntp/dist/depcomp
U src/external/bsd/ntp/dist/deps-ver
U src/external/bsd/ntp/dist/depsver.mf
U src/external/bsd/ntp/dist/dot.emacs
U src/external/bsd/ntp/dist/excludes
U src/external/bsd/ntp/dist/flock-build
U src/external/bsd/ntp/dist/install-sh
U src/external/bsd/ntp/dist/ltmain.sh
U src/external/bsd/ntp/dist/missing
U src/external/bsd/ntp/dist/packageinfo.sh
U src/external/bsd/ntp/dist/readme.y2kfixes
U src/external/bsd/ntp/dist/results.y2kfixes
U src/external/bsd/ntp/dist/version.m4
U src/external/bsd/ntp/dist/version
U src/external/bsd/ntp/dist/ylwrap
U src/external/bsd/ntp/dist/ElectricFence/tstheap.c
U src/external/bsd/ntp/dist/ElectricFence/efence.c
U src/external/bsd/ntp/dist/ElectricFence/eftest.c
U src/external/bsd/ntp/dist/ElectricFence/README
U src/external/bsd/ntp/dist/ElectricFence/page.c
U src/external/bsd/ntp/dist/ElectricFence/libefence.3
U src/external/bsd/ntp/dist/ElectricFence/Makefile.in
U src/external/bsd/ntp/dist/ElectricFence/print.c
U src/external/bsd/ntp/dist/ElectricFence/CHANGES
U src/external/bsd/ntp/dist/ElectricFence/Makefile.am
U src/external/bsd/ntp/dist/ElectricFence/COPYING
U src/external/bsd/ntp/dist/ElectricFence/efence.h
U src/external/bsd/ntp/dist/adjtimed/adjtimed.c
U src/external/bsd/ntp/dist/adjtimed/README
U src/external/bsd/ntp/dist/adjtimed/Makefile.in
U src/external/bsd/ntp/dist/adjtimed/Makefile.am
U src/external/bsd/ntp/dist/clockstuff/clktest.c
U src/external/bsd/ntp/dist/clockstuff/propdelay.c
U src/external/bsd/ntp/dist/clockstuff/chutest.c
U src/external/bsd/ntp/dist/clockstuff/Makefile.am
U src/external/bsd/ntp/dist/clockstuff/Makefile.in
U src/external/bsd/ntp/dist/clockstuff/README
U src/external/bsd/ntp/dist/conf/beauregard.conf
U src/external/bsd/ntp/dist/conf/malarky.conf
U src/external/bsd/ntp/dist/conf/pogo.conf
U src/external/bsd/ntp/dist/conf/rackety.conf
U src/external/bsd/ntp/dist/conf/grundoon.conf
U src/external/bsd/ntp/dist/conf/baldwin.conf
U src/external/bsd/ntp/dist/conf/README
U src/external/bsd/ntp/dist/html/ntptrace.html
U src/external/bsd/ntp/dist/html/kern.html
U src/external/bsd/ntp/dist/html/copyright.html
U src/external/bsd/ntp/dist/html/release.html
U src/external/bsd/ntp/dist/html/xleave.html
U src/external/bsd/ntp/dist/html/sntp.html
U src/external/bsd/ntp/dist/html/rate.html
U src/external/bsd/ntp/dist/html/accopt.html
U src/external/bsd/ntp/dist/html/config.html
U src/external/bsd/ntp/dist/html/ntpdc.html
U src/external/bsd/ntp/dist/html/rdebug.html
U src/external/bsd/ntp/dist/html/refclock.html
U src/external/bsd/ntp/dist/html/comdex.html
U src/external/bsd/ntp/dist/html/miscopt.html
U src/external/bsd/ntp/dist/html/ntp_conf.html
U src/external/bsd/ntp/dist/html/quick.html
U src/external/bsd/ntp/dist/html/manyopt.html
U src/external/bsd/ntp/dist/html/parsedata.html
U src/external/bsd/ntp/dist/html/extern.html
U src/external/bsd/ntp/dist/html/decode.html
U src/external/bsd/ntp/dist/html/howto.html
N src/external/bsd/ntp/dist/html/ntp-wait.html
U src/external/bsd/ntp/dist/html/build.html
U src/external/bsd/ntp/dist/html/ntpdsim.html
U src/external/bsd/ntp/dist/html/authopt.html
U src/external/bsd/ntp/dist/html/pps.html
U src/external/bsd/ntp/dist/html/parsenew.html
U src/external/bsd/ntp/dist/html/ntpdate.html
U src/external/bsd/ntp/dist/html/kernpps.html
U src/external/bsd/ntp/dist/html/gadget.html
U src/external/bsd/ntp/dist/html/msyslog.html
U src/external/bsd/ntp/dist/html/assoc.html
U src/external/bsd/ntp/dist/html/tickadj.html
U src/external/bsd/ntp/dist/html/ntpq.html
U src/external/bsd/ntp/dist/html/hints.html
U src/external/bsd/ntp/dist/html/clockopt.html
U src/external/

CVS commit: src/doc

2012-01-31 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Jan 31 20:11:42 UTC 2012

Modified Files:
src/doc: 3RDPARTY

Log Message:
update ntp current version


To generate a diff of this commit:
cvs rdiff -u -r1.902 -r1.903 src/doc/3RDPARTY

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp

2012-01-31 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Tue Jan 31 20:05:13 UTC 2012

Modified Files:
src/external/bsd/ntp: ntp2netbsd

Log Message:
fix instructions in comment part


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/ntp2netbsd

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/libntp

2011-06-19 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jun 19 15:58:07 UTC 2011

Modified Files:
src/external/bsd/ntp/dist/libntp: ntp_lineedit.c

Log Message:
fix lineedit functionality. ntpq and friends would just exit on empty lines
which is not intended - there is a quit command for that purpose.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/ntp/dist/libntp/ntp_lineedit.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2011-01-09 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jan  9 14:49:40 UTC 2011

Modified Files:
src/external/bsd/ntp/dist/lib/isc/unix: net.c
src/external/bsd/ntp/dist/ntpd: ntp_io.c

Log Message:
make ntp compile for MKINET6=no


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/ntp/dist/lib/isc/unix/net.c
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/ntp/dist/ntpd/ntp_io.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp

2010-09-04 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Sep  4 17:06:06 UTC 2010

Modified Files:
src/external/bsd/ntp: Makefile.inc

Log Message:
fix MKINET6=no compile


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp

2010-08-29 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Aug 29 18:55:51 UTC 2010

Modified Files:
src/external/bsd/ntp: Makefile.inc
src/external/bsd/ntp/bin/ntpd: Makefile
src/external/bsd/ntp/include: config.h

Log Message:
support to follow NetBSD build options for
MKCRYPTO
MKMDNS
MKINET6


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/Makefile.inc
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/ntp/bin/ntpd/Makefile
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2010-08-29 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Aug 29 18:54:30 UTC 2010

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_intres.c

Log Message:
make IPV6 support decision consistent with code in ntp_io.c


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/ntp/dist/ntpd/ntp_intres.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/lib/libntp

2010-08-29 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Aug 29 18:52:59 UTC 2010

Modified Files:
src/external/bsd/ntp/lib/libntp: Makefile

Log Message:
remove commented out cruft


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/lib/libntp/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/bin/ntpd

2010-08-29 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Aug 29 11:15:33 UTC 2010

Modified Files:
src/external/bsd/ntp/bin/ntpd: Makefile

Log Message:
only refer to libdns_sd when mDNS is compiled in


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/ntp/bin/ntpd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp

2010-08-29 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Aug 29 10:13:07 UTC 2010

Modified Files:
src/external/bsd/ntp/bin/ntpd: Makefile
src/external/bsd/ntp/include: config.h

Log Message:
make mDNS registration depend on compile time build option MKMDNS


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/bsd/ntp/bin/ntpd/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/include/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/sntp

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 20:54:24 UTC 2010

Modified Files:
src/external/bsd/ntp/dist/sntp: networking.c

Log Message:
using a char * as timeout value is a unique concept - atol() the string


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/dist/sntp/networking.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpd

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 20:52:55 UTC 2010

Modified Files:
src/external/bsd/ntp/dist/ntpd: ntp_scanner.c

Log Message:
don't return an int casted pointer as 'boolean' value - compare result of 
strchr with NULL


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/ntp/dist/ntpd/ntp_scanner.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/bin/ntpd

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 20:51:08 UTC 2010

Modified Files:
src/external/bsd/ntp/bin/ntpd: Makefile

Log Message:
disable .y.c rule - ntp_parser.y needs bison which is not part of the tool chain


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ntp/bin/ntpd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



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

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 16:17:32 UTC 2010

Modified Files:
src/distrib/sets/lists/misc: mi

Log Message:
adjust to new NTP 4.2.6 build


To generate a diff of this commit:
cvs rdiff -u -r1.167 -r1.168 src/distrib/sets/lists/misc/mi

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 15:56:46 UTC 2010

Modified Files:
src/doc: CHANGES

Log Message:
unhook NTP 4.2.4 build, acivate NTP 4.2.6 build in external/bsd/ntp


To generate a diff of this commit:
cvs rdiff -u -r1.1432 -r1.1433 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 15:47:08 UTC 2010

Modified Files:
src/external/bsd: Makefile

Log Message:
hook in ntp 4.2.6 reachover build (new location in external/bsd/ntp)


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/external/bsd/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.sbin

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 15:45:48 UTC 2010

Modified Files:
src/usr.sbin: Makefile

Log Message:
unhook ntp 4.2.4 reachover build


To generate a diff of this commit:
cvs rdiff -u -r1.246 -r1.247 src/usr.sbin/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 15:42:46 UTC 2010

Modified Files:
src/external/bsd/ntp: Makefile
src/external/bsd/ntp/bin: Makefile Makefile.inc
src/external/bsd/ntp/bin/ntp-keygen: Makefile
src/external/bsd/ntp/bin/ntpd: Makefile
src/external/bsd/ntp/bin/ntpdate: Makefile
src/external/bsd/ntp/bin/ntpdc: Makefile
src/external/bsd/ntp/bin/ntpq: Makefile
src/external/bsd/ntp/bin/ntptime: Makefile
Added Files:
src/external/bsd/ntp/bin/ntpdate: ntpdate.8
src/external/bsd/ntp/bin/ntptime: ntptime.8
src/external/bsd/ntp/bin/ntptrace: Makefile ntptrace.8 ntptrace.awk
src/external/bsd/ntp/bin/sntp: Makefile
src/external/bsd/ntp/html: Makefile

Log Message:
add installation of manual pages, html files and up to now missing commands 
(sntp, ntptrace)


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/bin/Makefile \
src/external/bsd/ntp/bin/Makefile.inc
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/bin/ntp-keygen/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/bin/ntpd/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/bin/ntpdate/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/ntp/bin/ntpdate/ntpdate.8
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/bin/ntpdc/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/bin/ntpq/Makefile
cvs rdiff -u -r1.1 -r1.2 src/external/bsd/ntp/bin/ntptime/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/ntp/bin/ntptime/ntptime.8
cvs rdiff -u -r0 -r1.1 src/external/bsd/ntp/bin/ntptrace/Makefile \
src/external/bsd/ntp/bin/ntptrace/ntptrace.8 \
src/external/bsd/ntp/bin/ntptrace/ntptrace.awk
cvs rdiff -u -r0 -r1.1 src/external/bsd/ntp/bin/sntp/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/ntp/html/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/ntpq

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 15:40:24 UTC 2010

Modified Files:
src/external/bsd/ntp/dist/ntpq: ntpq.1

Log Message:
.sp only takes a single arg


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/ntp/dist/ntpq/ntpq.1

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/sntp

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 15:39:25 UTC 2010

Modified Files:
src/external/bsd/ntp/dist/sntp: networking.c

Log Message:
fix DEBUG compilation


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/ntp/dist/sntp/networking.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/bsd/ntp/dist/sntp

2010-08-28 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Aug 28 15:38:55 UTC 2010

Modified Files:
src/external/bsd/ntp/dist/sntp: kod_management.c

Log Message:
remove uncondition #define DEBUG


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/ntp/dist/sntp/kod_management.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/usb

2010-06-27 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jun 27 10:41:26 UTC 2010

Modified Files:
src/sys/dev/usb: umodem_common.c usb_quirks.c usb_quirks.h

Log Message:
add quirk for CDC-ACM devices that do not have a CDC UNION interface descriptor.
idea gleened from Linux cdc-acm implementation (which has a long list of these 
devices)
first tested/added device is MTK GPS receiver.


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/usb/umodem_common.c
cvs rdiff -u -r1.66 -r1.67 src/sys/dev/usb/usb_quirks.c
cvs rdiff -u -r1.23 -r1.24 src/sys/dev/usb/usb_quirks.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/usb

2010-06-27 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sun Jun 27 10:32:13 UTC 2010

Modified Files:
src/sys/dev/usb: usbdevs usbdevs.h usbdevs_data.h

Log Message:
add MTK chipset based GPS receiver (e. g. Qstarz BT-Q1000eX)


To generate a diff of this commit:
cvs rdiff -u -r1.559 -r1.560 src/sys/dev/usb/usbdevs
cvs rdiff -u -r1.552 -r1.553 src/sys/dev/usb/usbdevs.h
cvs rdiff -u -r1.553 -r1.554 src/sys/dev/usb/usbdevs_data.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/usb

2010-06-19 Thread Frank Kardel
Module Name:src
Committed By:   kardel
Date:   Sat Jun 19 22:41:33 UTC 2010

Modified Files:
src/sys/dev/usb: u3g.c usbdevs usbdevs.h usbdevs_data.h

Log Message:
add Huawei E1750 Mobile Broadband HSPA USB Stick


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/usb/u3g.c
cvs rdiff -u -r1.558 -r1.559 src/sys/dev/usb/usbdevs
cvs rdiff -u -r1.551 -r1.552 src/sys/dev/usb/usbdevs.h
cvs rdiff -u -r1.552 -r1.553 src/sys/dev/usb/usbdevs_data.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



  1   2   >