From owner-freebsd-stable@freebsd.org Fri Feb 19 04:46:06 2016 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82029AACD6D for ; Fri, 19 Feb 2016 04:46:06 +0000 (UTC) (envelope-from dcrosstech@gmail.com) Received: from mail-yw0-x234.google.com (mail-yw0-x234.google.com [IPv6:2607:f8b0:4002:c05::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 449891DD9 for ; Fri, 19 Feb 2016 04:46:06 +0000 (UTC) (envelope-from dcrosstech@gmail.com) Received: by mail-yw0-x234.google.com with SMTP id g127so59231600ywf.2 for ; Thu, 18 Feb 2016 20:46:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=pB+JxyCNnHTfcRFzk+OsIGFaJ6NY35R/Lvh7qI16j1o=; b=t0CZ1ZKwWqd6y3WhjNpYf9aC7RqcX2YxvJdZbPVsj2nDCfACTSrEpqG7vgBKE24VQQ hbaqNfWxrL8Po/830X89oFtJIctolaghsFYrWomijV4SwSPF7k5xzsbLiK8Mn9YLynC7 QrSljece5Vg5UaifLs85kuLjdAtPe9/f3gr/bdn+OW4RWRI0aHIrJvqnboiZiqMzxrUI UuzGFHozg6aurtZvbkzcqS4mwIYQ7vF1BHFxBelV3x9mdyY0Q+uLcf33DjQYYlF/NfRw 2n2/o3zsmaRsM6fujvUOv74QSs0fJC3cbiqfmdIQsVUgpaNsTzEwQGh9lp938L3RQRBI 0BHg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to :content-type; bh=pB+JxyCNnHTfcRFzk+OsIGFaJ6NY35R/Lvh7qI16j1o=; b=chomq/SRDTbXxnQGYAyRNaxYY0WBHqYtulz1USxT6pkAY5MCZSQdJQXo7tR9mvYjoi IgteT0ky3aWHE6FnvAirs2VTJ3u+UktSzvTxQ0+CqHhTr5Gk/6wQOppB5nUE+07OSfOE DTaZEFOHsJLxxo3iFEIyUhuvbkx8sGJYTGZKI4ckTUGF1kjC0BwsA+SknjtXpL+p5ZTa Aakcev5TXHFDyBG3mWNt6PaqSXYF0uY2vxDUnSS2CtRXL7pOBN1LNLgN48N//nXwZKSX q2cPLgPy7Kemx04QrL8/V8D/QXOeHGOaQLGd3owKHDPCARyUA+s+JCKzFwBDqG6x6tXM 1uzw== X-Gm-Message-State: AG10YOQExHp+xcHx2Fi3EK9EewCx7axrrxeGf6Hm74mz1VcVUFwc73FOd2rg/420D1Ubr+h3gX3o4hQYNDAGNA== MIME-Version: 1.0 X-Received: by 10.13.214.20 with SMTP id y20mr6627166ywd.63.1455857165306; Thu, 18 Feb 2016 20:46:05 -0800 (PST) Received: by 10.37.207.206 with HTTP; Thu, 18 Feb 2016 20:46:05 -0800 (PST) Date: Thu, 18 Feb 2016 23:46:05 -0500 Message-ID: Subject: A few outstanding 10.3-BETA2 bugs From: David Cross To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Feb 2016 04:46:06 -0000 I would like to call attention to a number of outstanding bugs with tickets, 2 of them have patches! 1) kern/189219 (ticket has proposed patch, much better than mine) which is a crasher when using dummyney on sparc64.. I've had to maintain a separate kernel patch for >6 months, there's really no reason we can't get this in 2) kern/207070 (ticket also has proposed patch). Basically gptboot doesn't zero memory before it reads and attempts to process the boot.config file; trivial patch (one line, replaces foo[0] = '\0' with bzero(foo, sizeof(foo))) 3) kern/207069 (no patch, because I can't figure out forth).. this one is severe and really has to get fixed, anyone with a 'password="foo"' in loader.conf will find themselves unable to boot their systems. This existed since 10.2 but went largely unnoticed because if you had an already working system it worked (loader.rc in 10.1 and earlier work, 10.2 and later don't, but loader.rc was not updated), however we are now overwriting loader.rc on installworld, not even a mergemaster. For someone that understands loader and forth this is probably 20 seconds.