From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.3 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 26955 invoked from network); 31 Oct 2020 07:22:23 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 31 Oct 2020 07:22:23 -0000 Received: (qmail 3096 invoked by uid 550); 31 Oct 2020 07:22:19 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 3077 invoked from network); 31 Oct 2020 07:22:18 -0000 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=slqc7rtu8hExD+f9FyxKB2QzKFbPQXC7SETpb7slEvA=; b=nwaTOH5DffCzJ6Qm9o1eYCdWjtQiRVVGXf7Gh26kPF4U88tozK6tvng6HJ6/FiHWqy 8qfLemDQlj0vhee2myceQEvwD+q5wTpwpZvVDuakRRmp5Ofdi4OpYaGwVch1nB4OWlSF MyoVGRZJaih0UBBYVEFRzJOvi44JCqd0gSItWYj10NdLqiYw1G8krSnGyBkSeyqCtJoF Ih8b5ilCweNwir2LGgNNeck1TxaIkb8t0XvC7bVNQPjDNlAtHafYSD9aJF26R4u8D1mQ DvtygZIalEa2zLS1v+9gkEZxt71QFE4VoKdQqUMMwd+m2VvOx1kO3z4+ai2PupUs1zTJ WfRQ== X-Gm-Message-State: AOAM532N+HdiBt/YWaWc9tEP5+zdxyFfq1yVBAI1z/LyVdPUnPePnLCU 8huAvPvi7/gcdKGJB8K3Ca2LAe2rwoGRHA== X-Google-Smtp-Source: ABdhPJylolcmyZ7dXzneoQ/P5jom2GQ2w0vlES6Fk0urA5ywFp3ZFFUvbuXUwmxlmKrv7ni2Fybukg== X-Received: by 2002:ac2:4204:: with SMTP id y4mr2540701lfh.224.1604128927281; Sat, 31 Oct 2020 00:22:07 -0700 (PDT) Date: Sat, 31 Oct 2020 09:22:04 +0200 From: Timo Teras To: Ariadne Conill Cc: musl@lists.openwall.com, "Milan P. =?UTF-8?B?U3RhbmnEhw==?=" , Rich Felker Message-ID: <20201031092204.527aac8e@vostro.wlan> In-Reply-To: <5298816.XTEcGr0bgB@nanabozho> References: <20201027211735.GV534@brightrain.aerifal.cx> <20201030185205.GA10849@arya.arvanta.net> <20201030185716.GE534@brightrain.aerifal.cx> <5298816.XTEcGr0bgB@nanabozho> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.32; x86_64-alpine-linux-musl) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [musl] [PATCH v2] MT fork Hi On Fri, 30 Oct 2020 15:31:54 -0600 Ariadne Conill wrote: > On Friday, October 30, 2020 12:57:17 PM MDT Rich Felker wrote: > > There was a regression in musl too, I think. With > > 27b2fc9d6db956359727a66c262f1e69995660aa you should be able to > > re-enable parallel mark. If you get a chance to test, let us know if > > it works for you. > > I have pushed current musl git plus the MT fork patch to Alpine edge > as Alpine musl 1.2.2_pre0, and reenabling parallel mark has worked > fine. > > It would be nice to have a musl 1.2.2 release that I can use for the > source tarball instead of a git snapshot, but this will do for now. And now firefox is utterly broken. Though seems to be not related to MT fork patch. Bisected it down to commit b8b729bd22c28c9116c2fce65dce207a35299c26 "fix missing O_LARGEFILE values on x86_64, x32, and mips64" I think this breaks the seccomp because now e.g. fopen() calls has this bit set for the syscall and seccomp does not like it. Wondering whether to fix firefox seccomp ignore this bit, or if this commit needs reconsideration? Timo