Date: Sat, 10 Jul 2004 18:49:29 GMT From: Marcel Moolenaar <marcel@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 56980 for review Message-ID: <200407101849.i6AInTnt035798@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=56980 Change 56980 by marcel@marcel_nfs on 2004/07/10 18:49:11 IFC @56979 (KDB frontend) Affected files ... .. //depot/projects/gdb/lib/libarchive/archive_read_extract.c#21 integrate .. //depot/projects/gdb/share/man/man4/tcp.4#6 integrate .. //depot/projects/gdb/sys/alpha/include/kdb.h#2 integrate .. //depot/projects/gdb/sys/amd64/include/kdb.h#4 integrate .. //depot/projects/gdb/sys/i386/include/kdb.h#3 integrate .. //depot/projects/gdb/sys/ia64/include/kdb.h#5 integrate .. //depot/projects/gdb/sys/kern/subr_kdb.c#17 integrate .. //depot/projects/gdb/sys/sparc64/include/kdb.h#4 integrate .. //depot/projects/gdb/sys/sys/kdb.h#13 integrate Differences ... ==== //depot/projects/gdb/lib/libarchive/archive_read_extract.c#21 (text+ko) ==== @@ -25,7 +25,7 @@ */ #include "archive_platform.h" -__FBSDID("$FreeBSD: src/lib/libarchive/archive_read_extract.c,v 1.29 2004/07/08 05:24:48 kientzle Exp $"); +__FBSDID("$FreeBSD: src/lib/libarchive/archive_read_extract.c,v 1.30 2004/07/10 18:10:20 kientzle Exp $"); #include <sys/stat.h> #include <sys/types.h> @@ -477,13 +477,15 @@ unlink(path); } else { /* Doesn't already exist; try building the parent path. */ - if (mkdirpath(a, p, flags) != ARCHIVE_OK) + if (mkdirpath_internal(a, path, flags) != ARCHIVE_OK) return (ARCHIVE_WARN); } /* One final attempt to create the dir. */ - if (mkdirpath_internal(a, path, flags) != ARCHIVE_OK) + if (mkdir(path, SECURE_DIR_MODE) != 0) { + archive_set_error(a, errno, "Can't create directory"); return (ARCHIVE_WARN); + } success: /* Add this dir to the fixup list. */ ==== //depot/projects/gdb/share/man/man4/tcp.4#6 (text+ko) ==== @@ -30,9 +30,9 @@ .\" SUCH DAMAGE. .\" .\" From: @(#)tcp.4 8.1 (Berkeley) 6/5/93 -.\" $FreeBSD: src/share/man/man4/tcp.4,v 1.44 2004/06/21 17:42:49 mpp Exp $ +.\" $FreeBSD: src/share/man/man4/tcp.4,v 1.45 2004/07/10 17:55:13 maxim Exp $ .\" -.Dd March 13, 2003 +.Dd July 10, 2004 .Dt TCP 4 .Os .Sh NAME @@ -477,6 +477,11 @@ connection slow starts, but they are still used for slow starts that occur when the connection has been idle and starts sending again. +.It Va sack.enable +Enable support for RFC 2018, TCP Selective Acknowledgment option, +which allows the receiver to inform the sender about all successfully +arrived segments, allowing the sender to retransmit the missing segments +only. .El .Sh ERRORS A socket operation may fail with one of the following errors returned: ==== //depot/projects/gdb/sys/alpha/include/kdb.h#2 (text+ko) ==== ==== //depot/projects/gdb/sys/amd64/include/kdb.h#4 (text+ko) ==== ==== //depot/projects/gdb/sys/i386/include/kdb.h#3 (text+ko) ==== ==== //depot/projects/gdb/sys/ia64/include/kdb.h#5 (text+ko) ==== ==== //depot/projects/gdb/sys/kern/subr_kdb.c#17 (text+ko) ==== ==== //depot/projects/gdb/sys/sparc64/include/kdb.h#4 (text+ko) ==== ==== //depot/projects/gdb/sys/sys/kdb.h#13 (text+ko) ====
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200407101849.i6AInTnt035798>