Re: git: 8e28d84935f2 - main - OpenSSH: Update to 10.0p2

2025-08-26 Thread A FreeBSD User
gt; +fatal("input_userauth_request: no authctxt"); > + > +if ((r = sshpkt_get_cstring(ssh, &user, NULL)) != 0 || > +(r = sshpkt_get_cstring(ssh, &service, NULL)) != 0 || > +(r = sshpkt_get_cstring(ssh, &method, NULL)) != 0) > +goto out; > +debug("userauth-request for user %s service %s method %s", user, > service, method); > +debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); > + > +if ((style = strchr(user, ':')) != NULL) > +*style++ = 0; > + > +if (authctxt->attempt >= 1024) > +auth_maxtries_exceeded(ssh); > +if (authctxt->attempt++ == 0) { > +/* setup auth context */ > +authctxt->pw = mm_getpwnamallow(ssh, user); > +authctxt->user = xstrdup(user); > +if (authctxt->pw && strcmp(service, "ssh-connection")==0) { > +authctxt->valid = 1; > +debug2_f("setting up authctxt for %s", user); > +} else { > +authctxt->valid = 0; > +/* Invalid user, fake password information */ > +authctxt->pw = fakepw(); > +#ifdef SSH_AUDIT_EVENTS > +mm_audit_event(ssh, SSH_INVALID_USER); > +#endif > +} > +#ifdef USE_PAM > +if (options.use_pam) > +mm_start_pam(ssh); > +#endif > +ssh_packet_set_log_preamble(ssh, "%suser %s", > +authctxt->valid ? "authenticating " : "invalid ", user); > +setproctitle("%s [net]", authctxt->valid ? user : "unknown"); > +authctxt->service = xstrdup(service); > +authctxt->style = style ? xstrdup(style) : NULL; > +mm_inform_authserv(service, style); > +userauth_banner(ssh); > +if ((r = kex_server_update_ext_info(ssh)) != 0) > +fatal_fr(r, "kex_server_update_ext_info failed"); > +if (auth2_setup_methods_lists(authctxt) != 0) > +ssh_packet_disconnect(ssh, > +"no authentication methods enabled"); > +} else if (strcmp(user, authctxt->user) != 0 || > +strcmp(service, authctxt->service) != 0) { > +ssh_packet_disconnect(ssh, "Change of username or service " > +"not allowed: (%s,%s) -> (%s,%s)", > +authctxt->user, authctxt->service, user, service); > +} > +/* reset state */ > +auth2_challenge_stop(ssh); > + > +#ifdef GSSAPI > +/* XXX move to auth2_gssapi_stop() */ > +ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL); > +ssh_dispatch_set(ssh, SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL); > +#endif > + > +auth2_authctxt_reset_info(authctxt); > +authctxt->postponed = 0; > +authctxt->server_caused_failure = 0; > + > +/* try to authenticate user */ > +m = authmethod_lookup(authctxt, method); > +if (m != NULL && authctxt->failures < options.max_authtries) { > +debug2("input_userauth_request: try method %s", method); > +authenticated = m->userauth(ssh, method); > +} > +if (!authctxt->authenticated && strcmp(method, "none") != 0) > +ensure_minimum_time_since(tstart, > +user_specific_delay(authctxt->user)); > +userauth_finish(ssh, authenticated, method, NULL); > *** 13039 LINES SKIPPED *** > Buildworld/buildkernel fails due to amutual error which might be : [...] make[5]: /usr/src/secure/libexec/sshd-auth/Makefile:41: Variable "MK_GSSAPI" is undefined in make[5] in directory "/usr/src/secure/libexec/sshd-auth" Regards, oh -- A FreeBSD user pgp0oEWJnJkWg.pgp Description: OpenPGP digital signature

Re: git: b44cc1b479fe - main - loader: do not try to open directories with TFTP

2025-08-20 Thread A FreeBSD User
ftp >>> referenced by open.c >>> open.o:(open) in archive >>> /usr/obj/usr/src/amd64.amd64/stand/libsa32/libsa32.a >>> referenced by mount.c >>> mount.o:(mount) in archive >>> /usr/obj/usr/src/amd64.amd64/stand/libsa32/libsa32.a --- all_subdir_usr.sbin --- -function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-address-of-packed-member -Qunused-arguments -c /usr/src/contrib/tcpdump/print-ntp.c -o print-ntp.pieo --- all_subdir_stand --- *** [gptzfsboot.out] Error code 1 -- A FreeBSD user

Re: git: 8d8a745c456c - main - libutil: Drop auth_getval()

2025-08-03 Thread A FreeBSD User
ar * const *_white, > const char * const *_more_white); > int expand_number(const char *_buf, int64_t *_num); > A warning should be issued about transition of libutil.so.9 -> libutil.so.10! make delete-old-libs has a great impact (as usual) on a running/working system regarding python, perl, X11, claws-mail and other software. A quick and dirty (but working) workaround was using the libmap.conf mechanism. Kind regards, oh -- A FreeBSD user pgplpjbOYfNHg.pgp Description: OpenPGP digital signature

Re: git: ae07a5805b19 - main - krb5: Add version maps

2025-07-22 Thread A FreeBSD User
zfs_status.pico libzfs_util.pico libzfs_compat.pico libzfs_zmount.pico libshare.pico nfs.pico os/freebsd/nfs.pico os/freebsd/smb.pico cityhash.pico zfeature_common.pico zfs_comutil.pico zfs_deleg.pico zfs_fletcher.pico zfs_fletcher_superscalar.pico zfs_fletcher_superscalar4.pico zfs_namecheck.p

Re: git: df114daef4c4 - main - Import the Hardware Trace (HWT) framework.

2025-07-03 Thread A FreeBSD User
int hwt_config_set(struct thread *td, struct hwt_context *ctx, > +struct hwt_set_config *sconf); > +void hwt_config_free(struct hwt_context *ctx); > + > +#endif /* !_DEV_HWT_HWT_CONFIG_H_ */ > diff --git a/sys/dev/hwt/hwt_context.c b/sys/dev/hwt/hwt_context.c > new file mode 100644 > index ..9af76cffc928 > --- /dev/null > +++ b/sys/dev/hwt/hwt_context.c > @@ -0,0 +1,201 @@ > +/*- > + * SPDX-License-Identifier: BSD-2-Clause > + * > + * Copyright (c) 2023-2025 Ruslan Bukin > + * > + * This work was supported by Innovate UK project 105694, "Digital Security > + * by Design (DSbD) Technology Platform Prototype". > + * > + * Redistribution and use in source and binary forms, with or without > + * modification, are permitted provided that the following conditions > + * are met: > + * 1. Redistributions of source code must retain the above copyright > + *notice, this list of conditions and the following disclaimer. > + * 2. Redistributions in binary form must reproduce the above copyright > + *notice, this list of conditions and the following disclaimer in the > + *documentation and/or other materials provided with the distribution. > + * > + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND > + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE > + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE > + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE > + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL > + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS > + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) > + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT > + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY > + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF > + * SUCH DAMAGE. > + */ > + > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > + > +#include > +#include > +#include > +#include > +#include > +#include > +#include > + > +#define HWT_DEBUG > +#undef HWT_DEBUG > + > +#ifdef HWT_DEBUG > +#define dprintf(fmt, ...) printf(fmt, ##__VA_ARGS__) > +#else > +#define dprintf(fmt, ...) > +#endif > + > +static MALLOC_DEFINE(M_HWT_CTX, "hwt_ctx", "Hardware Trace"); > + > +static bitstr_t *ident_set; > +static int ident_set_size; > +static struct mtx ident_set_mutex; > + > +static int > +hwt_ctx_ident_alloc(int *new_ident) > +{ > + > + mtx_lock(&ident_set_mutex); > + bit_ffc(ident_set, ident_set_size, new_ident); > + if (*new_ident == -1) { > + mtx_unlock(&ident_set_mutex); > + return (ENOMEM); > + } > + bit_set(ident_set, *new_ident); > + mtx_unlock(&ident_set_mutex); > + > + return (0); > mtx)+} > *** 3705 LINES SKIPPED *** > The commit breaks buildkernel: [...] /usr/src/sys/dev/hwt/hwt_contexthash.c:82:2: error: call to undeclared function 'spinlock_enter'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration] 82 | HWT_CTXHASH_LOCK(); | ^ /usr/src/sys/dev/hwt/hwt_contexthash.h:39:28: note: expanded from macro 'HWT_CTXHASH_LOCK' 39 | #define HWT_CTXHASH_LOCK() mtx_lock_spin(&hwt_contexthash_mtx) -- A FreeBSD user pgpBdgcdsaV3N.pgp Description: OpenPGP digital signature

Re: git: 1349a733cf28 - main - ufshci: Introduce the ufshci(4) driver

2025-06-15 Thread A FreeBSD User
Am Tage des Herren Sun, 15 Jun 2025 09:28:38 + (UTC) "Bjoern A. Zeeb" schrieb: > On Sun, 15 Jun 2025, A FreeBSD User wrote: > > > Am Tage des Herren Sun, 15 Jun 2025 06:09:39 GMT > > Warner Losh schrieb: > > > >> The branch main has been

Re: git: 1349a733cf28 - main - ufshci: Introduce the ufshci(4) driver

2025-06-15 Thread A FreeBSD User
> + uint32_t dNumSharedWriteBoosterBufferAllocUnits; > +} __packed; > + > +_Static_assert(sizeof(struct ufshci_device_descriptor) == 89, > +"bad size for ufshci_device_descriptor"); > + > +/* > + * UFS Spec 4.1, section 14.1.5.3 "Configuration Descriptor" > + * ConfigurationDescriptor use big-endian byte ordering. > + */ > +struct ufshci_unit_descriptor_configurable_parameters { > + uint8_t bLUEnable; > + uint8_t bBootLunID; > + uint8_t bLUWriteProtect; > + uint8_t bMemoryType; > + uint32_t dNumAllocUnits; > + uint8_t bDataReliability; > + uint8_t bLogicalBlockSize; > + uint8_t bProvisioningType; > + uint16_t wContextCapabilities; > + union { > + struct { > + uint8_t Reserved[3]; > + uint8_t ReservedHpb[6]; > + } __packed; > + uint16_t wZoneBufferAllocUnits; > + }; > + uint32_t dLUNumWriteBoosterBufferAllocUnits; > +} __packed; > + > +_Static_assert(sizeof(struct ufshci_unit_descriptor_configurable_parameters) > == > + 27, > +"bad size for ufshci_unit_descriptor_configurable_parameters"); > + > +#define UFSHCI_CONFIGURATION_DESCEIPTOR_LU_NUM 8 > + > +struct ufshci_configuration_descriptor { > + uint8_t bLength; > + uint8_t bDescriptorIDN; > + uint8_t bConfDescContinue; > + uint8_t bBootEnable; > + uint8_t bDescrAccessEn; > + uint8_t bInitPowerMode; > + uint8_t bHighPriorityLUN; > + uint8_t bSecureRemovalType; > + uint8_t bInitActiveICCLevel; > + uint16_t wPeriodicRTCUpdate; > + uint8_t Reserved; > + uint8_t bRPMBRegionEnable; > + uint8_t bRPMBRegion1Size; > + uint8_t bRPMBRegion2Size; > + uint8_t bRPMBRegion3Size; > + uint8_t bWriteBoosterBufferPreserveUserSpaceEn; > + uint8_t bWriteBoosterBufferType; > + uint32_t dNumSharedWriteBoosterBufferAllocUnits; > + /* 0x16 */ > + struct ufshci_unit_descriptor_configurable_parameters > + unit_config_params[UFSHCI_CONFIGURATION_DESCEIPTOR_LU_NUM]; > +} __packed; > + > +_Static_assert(sizeof(struct ufshci_configuration_descriptor) == (22 + 27 * > 8), > +"bad size for ufshci_configuration_descriptor"); > + > +/* > + * UFS Spec 4.1, section 14.1.5.4 "Geometry Descriptor" > + * GeometryDescriptor use big-endian byte ordering. > + */ > +struct ufshci_geometry_descriptor { > + uint8_t bLength; > + uint8_t bDescriptorIDN; > + uint8_t bMediaTechnology; > + uint8_t Reserved; > + uint64_t qTotalRawDeviceCapacity; > + uint8_t bMaxNumberLU; > + uint32_t dSegmentSize; > + /* 0x11 */ > + uint8_t bAllocationUnitSize; > + uint8_t bMinAddrBlockSize; > + uint8_t bOptimalReadBlockSize; > + uint8_t bOptimalWriteBlockSize; > + uint8_t bMaxInBufferSize; > + uint8_t bMaxOutBufferSize; > + uint8_t bRPMB_ReadWriteSize; > + uint8_t bDynamicCapacityResourcePolicy; > + uint8_t bDataOrdering; > + uint8_t bMaxContexIDNumber; > + uint8_t bSysDataTagUnitSize; > + uint8_t bSysDataTagResSize; > + uint8_t bSupportedSecRTypes; > + uint16_t wSupportedMemoryTypes; > + /* 0x20 */ > + uint32_t dSystemCodeMaxNAllocU; > + uint16_t wSystemCodeCapAdjFac; > + uint32_t dNonPersistMaxNAllocU; > + uint16_t wNonPersistCapAdjFac; > + uint32_t dEnhanced1MaxNAllocU; > + /* 0x30 */ > + uint16_t wEnhanced1CapAdjFac; > *** 4268 LINES SKIPPED *** > -- A FreeBSD user pgpGMfhtaFkrl.pgp Description: OpenPGP digital signature

Re: git: e453e498cbb8 - main - machine/stdarg.h -> sys/stdarg.h

2025-06-11 Thread A FreeBSD User
; diff --git a/sys/cam/scsi/scsi_xpt.c b/sys/cam/scsi/scsi_xpt.c > index 21cb6beaf1fb..2bb59cb2d92b 100644 > --- a/sys/cam/scsi/scsi_xpt.c > +++ b/sys/cam/scsi/scsi_xpt.c > @@ -40,6 +40,7 @@ > #include > #include > #include > +#include > > #include > #include > @@ -59,7 +60,6 @@ > #include > #include > #include > -#include /* for xpt_print below */ > > struct scsi_quirk_entry { > struct scsi_inquiry_pattern inq_pat; > diff --git a/sys/cddl/compat/opensolaris/kern/opensolaris_string.c > b/sys/cddl/compat/opensolaris/kern/opensolaris_string.c index > ec088f216cb3..4c8eb533e930 > 100644 --- a/sys/cddl/compat/opensolaris/kern/opensolaris_string.c > +++ b/sys/cddl/compat/opensolaris/kern/opensolaris_string.c > @@ -26,7 +26,7 @@ > #include > #include > #include > -#include > +#include > > #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9') > > diff --git a/sys/cddl/compat/opensolaris/sys/cmn_err.h > b/sys/cddl/compat/opensolaris/sys/cmn_err.h index 2623693ec8b7..b3ebf6414e8b > 100644 > --- a/sys/cddl/compat/opensolaris/sys/cmn_err.h > +++ b/sys/cddl/compat/opensolaris/sys/cmn_err.h > @@ -28,7 +28,7 @@ > #define _OPENSOLARIS_SYS_CMN_ERR_H_ > > #include > -#include > +#include > > #ifdef __cplusplus > extern "C" { > diff --git a/sys/cddl/compat/opensolaris/sys/varargs.h > b/sys/cddl/compat/opensolaris/sys/varargs.h index 9684502756cb..bede89fafa18 > 100644 > --- a/sys/cddl/compat/opensolaris/sys/varargs.h > +++ b/sys/cddl/compat/opensolaris/sys/varargs.h > @@ -28,7 +28,7 @@ > #define _OPENSOLARIS_SYS_VARARGS_H_ > > #ifdef _KERNEL > -#include > +#include > #else > #include > #endif > diff --git a/sys/cddl/dev/fbt/fbt.c b/sys/cddl/dev/fbt/fbt.c > index 99a77ba65eb8..da9c4ee2ab76 100644 > --- a/sys/cddl/dev/fbt/fbt.c > +++ b/sys/cddl/dev/fbt/fbt.c > @@ -49,12 +49,12 @@ > #include > #include > #include > +#include > #include > #include > #include > #include > #include > -#include > > #include > #include > diff --git a/sys/cddl/dev/profile/profile.c b/sys/cddl/dev/profile/profile.c > index 3e106aab1c85..23a8c9256708 100644 > --- a/sys/cddl/dev/profile/profile.c > +++ b/sys/cddl/dev/profile/profile.c > @@ -48,11 +48,11 @@ > #include > #include > #include > +#include > #include > #include > #include > #include > -#include > > #include > #include > diff --git a/sys/cddl/dev/systrace/systrace.c > b/sys/cddl/dev/systrace/systrace.c > index c14a663d1995..d8fe1a6430c6 100644 > --- a/sys/cddl/dev/systrace/systrace.c > +++ b/sys/cddl/dev/systrace/systrace.c > @@ -47,6 +47,7 @@ > #include > #include > #include > +#include > #include > #include > #include > @@ -54,8 +55,6 @@ > *** 3126 LINES SKIPPED *** > -- A FreeBSD user pgp1xY5atc4ES.pgp Description: OpenPGP digital signature

Re: git: bc201841d139 - main - mac_do(4): Revamp manual page after MAC/do updates

2024-12-23 Thread FreeBSD User
Am Mon, 23 Dec 2024 14:39:51 GMT Olivier Certner schrieb: Module MAC_DO can not be compiled statically into the kernel. trying so on most recent CURRENT, via options MAC_DO results in a unknown option "MAC_DO" Kind regards, oh > The branch main has been updated by olce: > > URL: > https

Re: git: 9ea8d692f4cb - main - ipfw: use only needed TCP flags for state tracking

2024-12-12 Thread FreeBSD User
Am Thu, 12 Dec 2024 13:06:54 GMT "Andrey V. Elsukov" schrieb: > The branch main has been updated by ae: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=9ea8d692f4cb552902b9e8394260d7f3cf4aefb0 > > commit 9ea8d692f4cb552902b9e8394260d7f3cf4aefb0 > Author: Andrey V. Elsukov > AuthorDate:

Re: git: 01f8ce83242d - main - inpcb: Factor out parts of in6_pcbbind() and in_pcbbind_setup()

2024-12-05 Thread FreeBSD User
On Thu, 5 Dec 2024 15:20:48 GMT Mark Johnston wrote: This commit breaks buildkernel: [...] --- in6_pcb.o --- /usr/src/sys/netinet6/in6_pcb.c:301:20: error: unused variable 'pcbinfo' [-Werror,-Wunused-variable] 301 | struct inpcbinfo *pcbinfo = inp->inp_pcbinfo; > The branch main has

Re: git: 7a7741af18d6 - main - zfs: merge openzfs/zfs@b10992582

2024-10-11 Thread FreeBSD User
Am Fri, 11 Oct 2024 06:48:36 GMT Martin Matuska schrieb: This commit break buildworld: [...] ===> cddl/lib/libzfsbootenv (all) --- all_subdir_cddl/lib/libzpool --- --- arc_os.pico --- /usr/src/sys/contrib/openzfs/module/os/linux/zfs/arc_os.c:45:10: fatal error: 'sys/shrinker.h' file not found 4

Re: git: e2df9bb44109 - main - zfs: merge openzfs/zfs@b10992582

2024-09-09 Thread FreeBSD User
Am Mon, 9 Sep 2024 16:48:12 GMT Martin Matuska schrieb: Hello, the commit seems to breaks buildworld for me, somehow: [...] /usr/src/sys/contrib/openzfs/module/os/linux/zfs/abd_os.c:61:10: fatal error: 'linux/kmap_compat.h' file not found 61 | #include > The branch main has been updated by mm

Re: git: 8d3c3b52423f - main - mpi3mr: Track IO per target counter during queue poll with local variable

2024-06-16 Thread FreeBSD User
Am Thu, 6 Jun 2024 10:39:33 GMT Sumit Saxena schrieb: > The branch main has been updated by ssaxena: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=8d3c3b52423f9740da424aa6dd73a20e694a9e08 > > commit 8d3c3b52423f9740da424aa6dd73a20e694a9e08 > Author: Chandrakanth patil > AuthorDate: 2

Re: git: 800da341bc4a - main - thread: Simplify sanitizer integration with thread creation

2024-04-22 Thread FreeBSD User
Am Mon, 22 Apr 2024 15:54:27 GMT Mark Johnston schrieb: > The branch main has been updated by markj: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=800da341bc4a35f4b4d82d104b130825d9a42ffa > > commit 800da341bc4a35f4b4d82d104b130825d9a42ffa > Author: Mark Johnston > AuthorDate: 2024-0

Re: git: c21bc6f3c242 - main - ddb: Add CTF-based pretty printing

2024-03-22 Thread FreeBSD User
Am Fri, 22 Mar 2024 03:56:19 GMT Bojan Novković schrieb: This commit breaks buildkernel of GENERIC and custom configs, when either options KDB or options DDB or both are commented out: [...] --- kernel --- linking kernel ld: error: undefined symbol: db_ctf_lookup_typename >>> referenced by l

Re: git: c9b6241e250a - main - tcp: address enum-int-mismatch fix gcc13 error after f74352fbcf15341accaf5a92240871f98323215d

2024-02-25 Thread FreeBSD User
Am Sun, 25 Feb 2024 11:49:14 GMT Richard Scheffenegger schrieb: > The branch main has been updated by rscheff: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=c9b6241e250a4f1156e2150ccdbad0d3029dcef6 > > commit c9b6241e250a4f1156e2150ccdbad0d3029dcef6 > Author: Richard Scheffenegger >

Re: git: 315ee00fa961 - main - zfs: merge openzfs/zfs@804414aad

2023-08-28 Thread FreeBSD User
Am Mon, 28 Aug 2023 15:36:57 +0200 FreeBSD User schrieb: > Am Sun, 27 Aug 2023 20:23:14 -0700 > Cy Schubert schrieb: > > > In message <5520d4cf-076c-9a06-7000-9ef608d21...@gmail.com>, Alexander > > Motin wr > > ites: > > > Hi, > > > &g

Re: git: 315ee00fa961 - main - zfs: merge openzfs/zfs@804414aad

2023-08-28 Thread FreeBSD User
Am Sun, 27 Aug 2023 20:23:14 -0700 Cy Schubert schrieb: > In message <5520d4cf-076c-9a06-7000-9ef608d21...@gmail.com>, Alexander > Motin wr > ites: > > Hi, > > > > I've just updated my test system and it happily imported everything. > > Could you give more details? Does "all pools do not impor

Re: git: 315ee00fa961 - main - zfs: merge openzfs/zfs@804414aad

2023-08-26 Thread FreeBSD User
Am Sun, 27 Aug 2023 05:09:06 GMT Martin Matuska schrieb: After updating my CURRENT with this new ZFS code, on reboot all pools do not import automatically anymore as it has been before. Did I miss something? Kind regrads, oh > The branch main has been updated by mm: > > URL: > https://cgit

Re: git: 4f14d4b6b7f0 - main - sctp: cleanup handling of graceful shutdown of the peer

2023-08-19 Thread FreeBSD User
Am Sat, 19 Aug 2023 10:47:25 GMT Michael Tuexen schrieb: > The branch main has been updated by tuexen: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=4f14d4b6b7f0ca49b14379e48117121af3ed2669 > > commit 4f14d4b6b7f0ca49b14379e48117121af3ed2669 > Author: Michael Tuexen > AuthorDate: 202

Re: git: 6ad2a9a64f34 - main - ix: remove stale comment

2023-07-11 Thread FreeBSD User
Am Tue, 11 Jul 2023 16:45:05 GMT Piotr Kubaj schrieb: > The branch main has been updated by pkubaj: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=6ad2a9a64f34ea3b376c3064fcba30b3c8e654dd > > commit 6ad2a9a64f34ea3b376c3064fcba30b3c8e654dd > Author: Piotr Kubaj > AuthorDate: 2023-07-1

Re: git: ee8b0c436d72 - main - lib/libc/string: replace ffs/fls implementations with clang builtins: cc: error: no such file or directory: '/usr/src/lib/libc/i386/string/ffs.S'

2023-07-04 Thread FreeBSD User
Am Tue, 4 Jul 2023 18:46:16 +0100 Jessica Clarke schrieb: > On 4 Jul 2023, at 18:31, FreeBSD User wrote: > > > > Am Mon, 3 Jul 2023 20:23:43 GMT > > Robert Clausecker schrieb: > > > > This commit seems to break buildworld: > > > > [...] >

Re: git: ee8b0c436d72 - main - lib/libc/string: replace ffs/fls implementations with clang builtins: cc: error: no such file or directory: '/usr/src/lib/libc/i386/string/ffs.S'

2023-07-04 Thread FreeBSD User
Am Mon, 3 Jul 2023 20:23:43 GMT Robert Clausecker schrieb: This commit seems to break buildworld: [...] cc -DCOMPAT_32BIT -march=i686 -mmmx -msse -msse2 -target x86_64-unknown-freebsd14.0 -m32 --sysroot=/usr/obj/usr/src/amd64.amd64/tmp -B/usr/obj/usr/src/amd64.amd64/tmp/usr/bin -B/usr/obj/usr

Re: git: b077aed33b7b - main - Merge OpenSSL 3.0.9

2023-06-24 Thread FreeBSD User
On Fri, 23 Jun 2023 23:19:54 GMT Ed Maste wrote: > The branch main has been updated by emaste: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=b077aed33b7b6aefca7b17ddb250cf521f938613 > > commit b077aed33b7b6aefca7b17ddb250cf521f938613 > Merge: b08ee10c0646 b84c4564effd > Author: Pierre

Re: git: b077aed33b7b - main - Merge OpenSSL 3.0.9

2023-06-23 Thread FreeBSD User
Am Fri, 23 Jun 2023 19:56:57 -0700 John Baldwin schrieb: > On 6/23/23 4:19 PM, Ed Maste wrote: > > The branch main has been updated by emaste: > > > > URL: > > https://cgit.FreeBSD.org/src/commit/?id=b077aed33b7b6aefca7b17ddb250cf521f938613 > > > > commit b077aed33b7b6aefca7b17ddb250cf521f9386

Re: git: 2a58b312b62f - main - zfs: merge openzfs/zfs@431083f75

2023-04-15 Thread FreeBSD User
Am Sat, 15 Apr 2023 07:36:25 -0700 Cy Schubert schrieb: > In message <20230415115452.08911...@thor.intern.walstatt.dynvpn.de>, > FreeBSD Us > er writes: > > Am Thu, 13 Apr 2023 22:18:04 -0700 > > Mark Millard schrieb: > > > > > On Apr 13, 2023, at 21:44, Charlie Li wrote: > > > > > > > Ma

Re: git: 2a58b312b62f - main - zfs: merge openzfs/zfs@431083f75

2023-04-15 Thread FreeBSD User
Am Thu, 13 Apr 2023 22:18:04 -0700 Mark Millard schrieb: > On Apr 13, 2023, at 21:44, Charlie Li wrote: > > > Mark Millard wrote: > >> FYI: in my original report for a context that has never had > >> block_cloning enabled, I reported BOTH missing files and > >> file content corruption in the

Re: git: 2a58b312b62f - main - zfs: merge openzfs/zfs@431083f75

2023-04-12 Thread FreeBSD User
Am Wed, 12 Apr 2023 11:51:09 -0400 Charlie Li schrieb: > Cy Schubert wrote: > > I have a "sandhbox" pool, called t, used for /usr/obj and ports wrkdirs, > > and other writes > > I can easily recreate on my laptop. Here are the results of my tests. > > > > Method: > > > > Initially I copied my

Re: git: 2a58b312b62f - main - zfs: merge openzfs/zfs@431083f75

2023-04-09 Thread FreeBSD User
Am Sun, 9 Apr 2023 13:23:05 -0400 Charlie Li schrieb: > Mateusz Guzik wrote: > > On 4/9/23, Charlie Li wrote: > >> I've also started noticing random artefacts and malformed files whilst > >> building packages with poudriere, causing all sorts of "exec format > >> error"s, missing .so files due

Re: git: 58eefc67a1cf - main - vmm vmx: Allocate vpids on demand as each vCPU is initialized.

2022-11-18 Thread FreeBSD User
Am Fri, 18 Nov 2022 18:26:49 GMT John Baldwin schrieb: > The branch main has been updated by jhb: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=58eefc67a1cf16623c23354efd089f65401c0455 > > commit 58eefc67a1cf16623c23354efd089f65401c0455 > Author: John Baldwin > AuthorDate: 2022-11-18

Re: git: d8be3d523dd5 - main - vmm: Use struct vcpu in the rendezvous code.

2022-11-18 Thread FreeBSD User
Am Fri, 18 Nov 2022 18:26:44 GMT John Baldwin schrieb: > The branch main has been updated by jhb: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=d8be3d523dd50a17f48957c1bb2e0cd7bbf02cab > > commit d8be3d523dd50a17f48957c1bb2e0cd7bbf02cab > Author: John Baldwin > AuthorDate: 2022-11-18

Re: git: 497cdf9673ec - main - sh: read more profile files.

2022-10-09 Thread FreeBSD User
Am Sat, 1 Oct 2022 21:31:18 GMT Dag-Erling Smørgrav schrieb: > The branch main has been updated by des: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=497cdf9673ec53d59634bb78862cd8dea3d5c155 > > commit 497cdf9673ec53d59634bb78862cd8dea3d5c155 > Author: Dag-Erling Smørgrav > AuthorDat

Re: git: 7ae99f80b666 - main - pmap_unmapdev/bios: Accept a pointer instead of a vm_offset_t.

2022-09-22 Thread FreeBSD User
Am Thu, 22 Sep 2022 22:10:49 GMT John Baldwin schrieb: > The branch main has been updated by jhb: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=7ae99f80b6661760c5de3edd330b279f04b092a2 > > commit 7ae99f80b6661760c5de3edd330b279f04b092a2 > Author: John Baldwin > AuthorDate: 2022-09-22

Re: git: a5a918b7a906 - main - vmm: permit some IPIs to be handled by userspace

2022-09-07 Thread FreeBSD User
Am Wed, 7 Sep 2022 07:08:58 GMT Emmanuel Vadot schrieb: > The branch main has been updated by manu: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=a5a918b7a906eaa88e0833eac70a15989d535b02 > > commit a5a918b7a906eaa88e0833eac70a15989d535b02 > Author: Corvin Köhne > AuthorDate: 2022-09-

Re: git: 39fdad34e220 - main - stand: impose 510,000 byte limit for /boot/loader and /boot/pxeldr

2022-08-11 Thread FreeBSD User
Am Thu, 11 Aug 2022 03:31:36 GMT Warner Losh schrieb: > The branch main has been updated by imp: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=39fdad34e220c52a433e78f20c8c39412429014e > > commit 39fdad34e220c52a433e78f20c8c39412429014e > Author: Warner Losh > AuthorDate: 2022-08-11 0

Re: git: 39fdad34e220 - main - stand: impose 510,000 byte limit for /boot/loader and /boot/pxeldr

2022-08-11 Thread FreeBSD User
Am Thu, 11 Aug 2022 20:56:05 +0200 FreeBSD User schrieb: > Am Thu, 11 Aug 2022 12:46:46 -0600 > Warner Losh schrieb: > > > On Thu, Aug 11, 2022 at 12:45 PM FreeBSD User > > wrote: > > > > > Am Thu, 11 Aug 2022 20:42:57 +0200 > > > FreeBSD Us

Re: git: 39fdad34e220 - main - stand: impose 510,000 byte limit for /boot/loader and /boot/pxeldr

2022-08-11 Thread FreeBSD User
Am Thu, 11 Aug 2022 12:46:46 -0600 Warner Losh schrieb: > On Thu, Aug 11, 2022 at 12:45 PM FreeBSD User > wrote: > > > Am Thu, 11 Aug 2022 20:42:57 +0200 > > FreeBSD User schrieb: > > > > > Am Thu, 11 Aug 2022 12:23:59 -0600 > > > Warner Losh

Re: git: 39fdad34e220 - main - stand: impose 510,000 byte limit for /boot/loader and /boot/pxeldr

2022-08-11 Thread FreeBSD User
Am Thu, 11 Aug 2022 20:42:57 +0200 FreeBSD User schrieb: > Am Thu, 11 Aug 2022 12:23:59 -0600 > Warner Losh schrieb: > > > On Thu, Aug 11, 2022 at 12:22 PM FreeBSD User > > wrote: > > > > > Am Thu, 11 Aug 2022 03:31:36 GMT > > > Warner Losh s

Re: git: 39fdad34e220 - main - stand: impose 510,000 byte limit for /boot/loader and /boot/pxeldr

2022-08-11 Thread FreeBSD User
Am Thu, 11 Aug 2022 12:23:59 -0600 Warner Losh schrieb: > On Thu, Aug 11, 2022 at 12:22 PM FreeBSD User > wrote: > > > Am Thu, 11 Aug 2022 03:31:36 GMT > > Warner Losh schrieb: > > > > > The branch main has been updated by imp: > > > > > &

Re: git: 39fdad34e220 - main - stand: impose 510,000 byte limit for /boot/loader and /boot/pxeldr

2022-08-11 Thread FreeBSD User
Am Thu, 11 Aug 2022 03:31:36 GMT Warner Losh schrieb: > The branch main has been updated by imp: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=39fdad34e220c52a433e78f20c8c39412429014e > > commit 39fdad34e220c52a433e78f20c8c39412429014e > Author: Warner Losh > AuthorDate: 2022-08-11 0

Re: git: b076d8d54c2f - main - mptable_hostb: Use legacy_get_pcibus() to fetch PCI bus number.

2022-06-24 Thread FreeBSD User
Am Thu, 23 Jun 2022 15:04:32 -0700 John Baldwin schrieb: > On 6/23/22 2:56 PM, FreeBSD User wrote: > > Am Thu, 23 Jun 2022 17:52:36 GMT > > John Baldwin schrieb: > > > >> The branch main has been updated by jhb: > >> > >> UR

Re: git: b076d8d54c2f - main - mptable_hostb: Use legacy_get_pcibus() to fetch PCI bus number.

2022-06-23 Thread FreeBSD User
Am Thu, 23 Jun 2022 17:52:36 GMT John Baldwin schrieb: > The branch main has been updated by jhb: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=b076d8d54c2fd91a35aad6931d0bfa2aa0122036 > > commit b076d8d54c2fd91a35aad6931d0bfa2aa0122036 > Author: John Baldwin > AuthorDate: 2022-06-23

Re: git: 8b83d7e0ee54 - main - Make -Wunused-but-set-variable a fatal error for clang 13+ for kernel builds.

2022-04-19 Thread FreeBSD User
On Mon, 18 Apr 2022 23:11:52 GMT John Baldwin wrote: > The branch main has been updated by jhb: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=8b83d7e0ee54416b0ee58bd85f9c0ae7fb3357a1 > > commit 8b83d7e0ee54416b0ee58bd85f9c0ae7fb3357a1 > Author: John Baldwin > AuthorDate: 2022-04-18 23

Re: git: e92ffd9b6268 - main - zfs: merge openzfs/zfs@17b2ae0b2 (master) into main

2022-01-23 Thread FreeBSD User
On Sat, 22 Jan 2022 23:10:07 GMT Martin Matuska wrote: > The branch main has been updated by mm: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=e92ffd9b626833ebdbf2742c8ffddc6cd94b963e > > commit e92ffd9b626833ebdbf2742c8ffddc6cd94b963e > Merge: 3c3df3660072 17b2ae0b24d4 > Author: Mart

Re: git: 184c63db3c94 - main - Fix clerical error in page alloc

2021-12-25 Thread FreeBSD User
Am Fri, 24 Dec 2021 08:51:39 GMT schrieb Doug Moore : > The branch main has been updated by dougm: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=184c63db3c949d8ba766dc7b2bd2f082404e169d > > commit 184c63db3c949d8ba766dc7b2bd2f082404e169d > Author: Doug Moore > AuthorDate: 2021-12-24 08

Re: git: a46722b58056 - main - ncurses: register formw as usable lib for LIBADD

2021-11-24 Thread FreeBSD User
On Wed, 24 Nov 2021 10:03:51 GMT Baptiste Daroussin wrote: > The branch main has been updated by bapt: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=a46722b580567799b484b5a81728eaf380777e04 > > commit a46722b580567799b484b5a81728eaf380777e04 > Author: Baptiste Daroussin > AuthorDate:

Re: git: 19261079b743 - main - openssh: update to OpenSSH v8.7p1

2021-09-09 Thread FreeBSD User
Am Wed, 8 Sep 2021 01:07:51 GMT Ed Maste schrieb: > The branch main has been updated by emaste: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=19261079b74319502c6ffa1249920079f0f69a72 > > commit 19261079b74319502c6ffa1249920079f0f69a72 > Merge: c5128c48df3c 66719ee573ac > Author: Ed Ma

Re: git: 97cbd5e72238 - main - loader: open file list should be dynamic

2021-08-11 Thread FreeBSD User
Am Wed, 11 Aug 2021 21:13:55 GMT Toomas Soome schrieb: > The branch main has been updated by tsoome: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=97cbd5e722389a575e820c4e03f38053308f08ea > > commit 97cbd5e722389a575e820c4e03f38053308f08ea > Author: Toomas Soome > AuthorDate: 2021-07

Rbuildworld failure: ar: warning: can't open file: x509_minimal.pieo (an other .pieo files)

2021-08-11 Thread FreeBSD User
Am Wed, 11 Aug 2021 11:46:18 +0200 FreeBSD User schrieb: > Am Wed, 11 Aug 2021 02:18:35 GMT > Alexander Motin schrieb: > > > The branch main has been updated by mav: > > > > URL: > > https://cgit.FreeBSD.org/src/commit/?id=67f508db84b8b789db37c60

Re: git: 67f508db84b8 - main - Mark some sysctls as CTLFLAG_MPSAFE.

2021-08-11 Thread FreeBSD User
Am Wed, 11 Aug 2021 02:18:35 GMT Alexander Motin schrieb: > The branch main has been updated by mav: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=67f508db84b8b789db37c60972f255574417b8ed > > commit 67f508db84b8b789db37c60972f255574417b8ed > Author: Alexander Motin > AuthorDate: 2021