git: libc/strptime: Handle ISO 8601 time zone formats in %z.

2016-08-06 Thread Rimvydas Jasinskas
commit da8348cb60464ffcaf48f0009a6fc4e77b6f285f Author: zrj Date: Wed Jul 27 19:17:54 2016 +0300 libc/strptime: Handle ISO 8601 time zone formats in %z. Formats of +hh:mm +hh Z are now also accepted to previous +hhmm. Summary of changes:

git: libc/strptime: Fix "%Y %W %w %H:%M:%S".

2016-08-06 Thread Rimvydas Jasinskas
commit bdc0b26a268b832d03e29c483ec5af19476f904e Author: zrj Date: Tue Jul 26 15:29:59 2016 +0300 libc/strptime: Fix "%Y %W %w %H:%M:%S". Also throw in the fix for "12:34:56 2016 30 0", "%H:%M:%S %Y %W %w". Correct partial format reads are still

git: strptime.3: Sync with FreeBSD.

2016-08-06 Thread Rimvydas Jasinskas
commit baaf9cb9171ce45556f3c4dcb4af7f59d8380837 Author: zrj Date: Tue Jul 26 16:48:35 2016 +0300 strptime.3: Sync with FreeBSD. Summary of changes: lib/libc/stdtime/strptime.3 | 17 +++-- 1 file changed, 7 insertions(+), 10 deletions(-)

git: libc/strptime: Check for NULL, not 0.

2016-08-06 Thread Rimvydas Jasinskas
commit 4d0d600c6e8ea2aeb3e2a4204e65a6ed07945ffb Author: zrj Date: Tue Jul 26 09:59:42 2016 +0300 libc/strptime: Check for NULL, not 0. Also add check for gmtime_r() result. While there, perform license change as per FreeBSD r267544 Summary

git: libc/strptime: Attempt to fix up %U and %W.

2016-08-06 Thread Rimvydas Jasinskas
commit b88e86541fe9061d2e24b73dac338830db307d3f Author: zrj Date: Tue Jul 26 15:14:49 2016 +0300 libc/strptime: Attempt to fix up %U and %W. Thera are still few issues left. Taken-from: FreeBSD Summary of changes:

git: libc/strptime: Add support for %t and %n per POSIX.

2016-08-06 Thread Rimvydas Jasinskas
commit 19da7d45beaef542a791b2fdc024dd0506957830 Author: zrj Date: Tue Jul 26 13:05:36 2016 +0300 libc/strptime: Add support for %t and %n per POSIX. Only skip space for %e and fail on unknown specifiers. Also remove magic year 1900 constants.

git: kernel - Fix memcpy assembly ABI

2016-08-06 Thread Matthew Dillon
commit 74857ad3db8fb4082c9162fe8e6e159371132cac Author: Matthew Dillon Date: Sat Aug 6 21:25:26 2016 -0700 kernel - Fix memcpy assembly ABI * memcpy must return the original (dst) argument, and wasn't for the kernel. Nothing used it explicitly,

git: DragonFly_RELEASE_4_6 kernel - Fix memcpy assembly ABI

2016-08-06 Thread Matthew Dillon
commit adab1d794e75802c6a562f3753bee0971a054be4 Author: Matthew Dillon Date: Sat Aug 6 21:25:26 2016 -0700 kernel - Fix memcpy assembly ABI * memcpy must return the original (dst) argument, and wasn't for the kernel. Nothing used it explicitly,

git: DragonFly_RELEASE_4_6 libc - Include information on the 'e' flag in the popen() manual page.

2016-08-06 Thread Matthew Dillon
commit 09b0c4f7695482a72fee5c8f590cca31fe6a68c3 Author: Matthew Dillon Date: Sat Aug 6 11:05:10 2016 -0700 libc - Include information on the 'e' flag in the popen() manual page. * Include information on the 'e' flag in the popen() manual page.

git: libc - Include information on the 'e' flag in the popen() manual page.

2016-08-06 Thread Matthew Dillon
commit 622dc5dae3a2120fdaff68b0642084f41ec44578 Author: Matthew Dillon Date: Sat Aug 6 11:05:10 2016 -0700 libc - Include information on the 'e' flag in the popen() manual page. * Include information on the 'e' flag in the popen() manual page.

git: kernel, world - Remove the remaining vestiges of linux emul

2016-08-06 Thread Matthew Dillon
commit 85aae976e20fc6b5be7ebb996fdf69c1c31e2b5b Author: Matthew Dillon Date: Sat Aug 6 10:53:59 2016 -0700 kernel, world - Remove the remaining vestiges of linux emul * Remove the remaining bits of the 32-bit linux emulation code. This code

git: sys/vfs/hammer: Add HAMMER_VOL_BUF_SIZE()

2016-08-06 Thread Tomohiro Kusumi
commit 0dd9c29834ac0e9b965cf243552f98929f3caa6b Author: Tomohiro Kusumi Date: Sat Aug 6 18:58:58 2016 +0900 sys/vfs/hammer: Add HAMMER_VOL_BUF_SIZE() Summary of changes: sbin/hammer/cmd_recover.c| 2 +- sbin/hammer/ondisk.c | 2 +-

git: sbin/hammer: Remove rel_volume()

2016-08-06 Thread Tomohiro Kusumi
commit c6c4cbd9be7d7d4666836015c8e590b6fde1033f Author: Tomohiro Kusumi Date: Sat Aug 6 17:54:29 2016 +0900 sbin/hammer: Remove rel_volume() It does nothing after da519351 which got rid of unnecessary volume-modified flag. volume_info list

git: sbin/hammer: Directly access volume in volume list

2016-08-06 Thread Tomohiro Kusumi
commit 871ff6cbfafa87f4b91f97e323feb6b5b67febb2 Author: Tomohiro Kusumi Date: Sat Aug 6 21:08:15 2016 +0900 sbin/hammer: Directly access volume in volume list This is what ondisk code does. No reference/etc to acquire via get_volume(). Summary of