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
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
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
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
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
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
> + 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
; 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
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
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:
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
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
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
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
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
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
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
>
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
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
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
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
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
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:
> >
> > [...]
>
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
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
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
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
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
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
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
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
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
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
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
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-
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
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
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
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
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:
> > >
> > &
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
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
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
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
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
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
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:
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
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
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
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
51 matches
Mail list logo