From owner-freebsd-bugs@freebsd.org Sun Jan 31 01:50:55 2016 Return-Path: Delivered-To: freebsd-bugs@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 35AC5A7415F for ; Sun, 31 Jan 2016 01:50:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E5D328B for ; Sun, 31 Jan 2016 01:50:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V1osR3028341 for ; Sun, 31 Jan 2016 01:50:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206770] 11.0-CURRENT/clang380-import: libc/stdio uninitialized pointer use (exposed via powerpc 32-bit context) Date: Sun, 31 Jan 2016 01:50:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markmi@dsl-only.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 01:50:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206770 Bug ID: 206770 Summary: 11.0-CURRENT/clang380-import: libc/stdio uninitialized pointer use (exposed via powerpc 32-bit context) Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: markmi@dsl-only.net Using projects/clang380-import (-r294962 currently) I've been experimenting with a clang based powerpc (32-bit) buildworld (mixed with a gcc421 based buildkernel). Things boot and much operates but I ran into signals getting segmentation violations during signal handlers. It turn out the ones that I've looked at so far are using routines similar = to snprinf in the signal handlers and I've found that the call chains involved have an uninitialized pointer in use. The following uses snprintf as a starting context but the more common centr= al point is __vfprintf and what it does/calls for such "string output" routine= s. Unfortunately the reason is spread out in the code so it takes a bit to describe the context for the uninitialized pointer that I expect is involve= d. To start the description I note the actual, low-level failure point: #0 0x419a89c8 in memcpy (dst0=3D0xffffd734, src0=3D, length=3D) at /usr/src/lib/libc/string/bcopy.c:124 124 TLOOP1(*--dst =3D *--src); In the assembler code for this is the the *--src access that gets the segmentation violation. I do not justify that claim here but use that fact later. So what leads up to that? Going the other way, starting from the use of snprintf. . . snprintf(char * __restrict str, size_t n, char const * __restrict fmt, ...) sets up its __vfprintf(FILE *fp, locale_t locale, const char *fmt0, va_list= ap) use via: va_list ap; FILE f =3D FAKE_FILE; . . . va_start(ap, fmt); f._flags =3D __SWR | __SSTR; f._bf._base =3D f._p =3D (unsigned char *)str; f._bf._size =3D f._w =3D n; ret =3D __vfprintf(&f, __get_locale(), fmt, ap); so at the __vfprintf call f._p reference the buffer that __vfprintf's str references. __vfprintf in turn does (in part): struct io_state io; /* I/O buffering state */ . . . io_init(&io, fp); where io is on-stack (not implicitly initialized). The io_init does: #define NIOV 8 struct io_state { FILE *fp; struct __suio uio; /* output information: summary */ struct __siov iov[NIOV];/* ... and individual io vectors */ }; static inline void io_init(struct io_state *iop, FILE *fp) { iop->uio.uio_iov =3D iop->iov; iop->uio.uio_resid =3D 0; iop->uio.uio_iovcnt =3D 0; iop->fp =3D fp; } where (on stack as part of __vfprintf's io): struct __siov { void *iov_base; size_t iov_len; }; struct __suio { struct __siov *uio_iov; int uio_iovcnt; int uio_resid; }; So via __vfprintf's io.fp->_p the str buffer is accessible for outputting t= o. But in none of this or other code that I've looked at for this snprintf use case have I found code that initializes the involved io.uio.uio_iov->iov_ba= se (i.e., io.iov[0].iov_base) to point to anything specific. (Nor is iov_base's matching iov_len initialized.) Here is a stab at finding all the initializations of iov_base fields: # grep "iov_base.*=3D" /usr/src/lib/libc/stdio/* /usr/src/lib/libc/stdio/fputs.c: iov.iov_base =3D (void *)s; /usr/src/lib/libc/stdio/fputws.c: iov.iov_base =3D buf; /usr/src/lib/libc/stdio/fwrite.c: iov.iov_base =3D (void *)buf; /usr/src/lib/libc/stdio/perror.c: v->iov_base =3D (char *)s; /usr/src/lib/libc/stdio/perror.c: v->iov_base =3D ": "; /usr/src/lib/libc/stdio/perror.c: v->iov_base =3D msgbuf; /usr/src/lib/libc/stdio/perror.c: v->iov_base =3D "\n"; /usr/src/lib/libc/stdio/printfcommon.h: iop->iov[iop->uio.uio_iovcnt].iov_b= ase =3D (char *)ptr; /usr/src/lib/libc/stdio/puts.c: iov[0].iov_base =3D (void *)s; /usr/src/lib/libc/stdio/puts.c: iov[1].iov_base =3D "\n"; /usr/src/lib/libc/stdio/putw.c: iov.iov_base =3D &w; /usr/src/lib/libc/stdio/vfwprintf.c: iov.iov_base =3D buf; /usr/src/lib/libc/stdio/xprintf.c: io->iovp->iov_base =3D __DECONST(vo= id *, ptr); The only file above involved in common for this context turns out to be: /usr/src/lib/libc/stdio/printfcommon.h and the above assignment in that fil= e is in io_print(struct io_state *iop, const CHAR * __restrict ptr, int len, locale_t locale), which is not in use for this context. Here is that assign= ment anyway (just for reference): static inline int io_print(struct io_state *iop, const CHAR * __restrict ptr, int len, locale= _t locale) { iop->iov[iop->uio.uio_iovcnt].iov_base =3D (char *)ptr; iop->iov[iop->uio.uio_iovcnt].iov_len =3D len; iop->uio.uio_resid +=3D len; . . . In other words: The segmentation violation is for dereferencing of __vfprin= tf's uninitialized io.uio.uio_iov->iov_base . Returning to tracing the actually used code for this context to support that claim some more. . . The __vfprintf (FILE *fp, locale_t locale, const char *fmt0, va_list ap) eventually does: if (io_flush(&io, locale)) and io_flush(struct io_state *iop, locale_t locale) does: return (__sprint(iop->fp, &iop->uio, locale)); and _sprintf(FILE *fp, struct __suio *uio, locale_t locale) does: err =3D __sfvwrite(fp, uio); and __sfvwrite(FILE *fp, struct __suio *uio) does: p =3D iov->iov_base; len =3D iov->iov_len; where iov->iov_base is another name for __vfprintf's io.uio.uio_iov->iov_b= ase . __sfvwrite then uses: #define COPY(n) (void)memcpy((void *)fp->_p, (void *)p, (size_t)(n)) which fails dereferencing p (i.e., dereferencing __vfprintf's io.uio.uio_iov->iov_base ).=20 In other words (again): The segmentation violation is for dereferencing of = the uninitialized __vfprintf io.uio.uio_iov->iov_base unless I've missed some initialization some place in the executing code for these sorts of "string output" contexts. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 02:13:37 2016 Return-Path: Delivered-To: freebsd-bugs@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 533E1A747B2 for ; Sun, 31 Jan 2016 02:13:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43D98D03 for ; Sun, 31 Jan 2016 02:13:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V2Dasb068840 for ; Sun, 31 Jan 2016 02:13:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206761] Kernel stack overflow in sysctl handler for kern.binmisc.add Date: Sun, 31 Jan 2016 02:13:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: needs-patch, needs-qa, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: johannes@jo-t.de X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 02:13:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206761 johannes@jo-t.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |johannes@jo-t.de --- Comment #5 from johannes@jo-t.de --- Is this also missing a sx_xunlock(&interp_list_sx) for the ENOMEM error cas= e? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 02:35:28 2016 Return-Path: Delivered-To: freebsd-bugs@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 21C5AA74DCB for ; Sun, 31 Jan 2016 02:35:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 12C0A14C0 for ; Sun, 31 Jan 2016 02:35:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V2ZROx097648 for ; Sun, 31 Jan 2016 02:35:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205256] Segmentation fault with mount_smbfs Date: Sun, 31 Jan 2016 02:35:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: vas@mpeks.tomsk.su X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 02:35:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205256 --- Comment #8 from vas@mpeks.tomsk.su --- Please see also https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206740 = for a fix. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 03:19:14 2016 Return-Path: Delivered-To: freebsd-bugs@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 7242CA73CBC for ; Sun, 31 Jan 2016 03:19:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E605B05 for ; Sun, 31 Jan 2016 03:19:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V3JEnv056577 for ; Sun, 31 Jan 2016 03:19:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206770] 11.0-CURRENT/clang380-import: libc/stdio uninitialized pointer use (exposed via powerpc 32-bit context) Date: Sun, 31 Jan 2016 03:19:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markmi@dsl-only.net X-Bugzilla-Status: Closed X-Bugzilla-Resolution: Rejected X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 03:19:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206770 Mark Millard changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |Rejected --- Comment #1 from Mark Millard --- Hmm. Too much time at this I guess. . . Reviewing again I do not find any __vfprintf paths that are without PRINT u= se (i.e., io_print use). That should mean that io.uio.uio_iov->iov_base was initialized but somehow changed. I still have not replicated the problem with smaller/simpler code, only with libc/stdio use. I'll have to try some more after a break. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 03:41:26 2016 Return-Path: Delivered-To: freebsd-bugs@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 9FFA7A4E48F for ; Sun, 31 Jan 2016 03:41:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8CF301304 for ; Sun, 31 Jan 2016 03:41:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V3fQ0t072879 for ; Sun, 31 Jan 2016 03:41:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206752] [patch] /bin/date format conversion bug Date: Sun, 31 Jan 2016 03:41:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jrm@ftfl.ca X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 03:41:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206752 --- Comment #3 from Joseph Mingrone --- I replied too quickly and I see what you are saying and it makes sense. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 03:45:46 2016 Return-Path: Delivered-To: freebsd-bugs@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 BF0F4A4E563 for ; Sun, 31 Jan 2016 03:45:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AF9F0143B for ; Sun, 31 Jan 2016 03:45:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V3jkdT081875 for ; Sun, 31 Jan 2016 03:45:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206752] [patch] /bin/date format conversion bug Date: Sun, 31 Jan 2016 03:45:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jrm@ftfl.ca X-Bugzilla-Status: Closed X-Bugzilla-Resolution: Not A Bug X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 03:45:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206752 Joseph Mingrone changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |Not A Bug --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 03:58:03 2016 Return-Path: Delivered-To: freebsd-bugs@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 E7EEEA4E8AE for ; Sun, 31 Jan 2016 03:58:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8CBA19E8 for ; Sun, 31 Jan 2016 03:58:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V3w3k4078175 for ; Sun, 31 Jan 2016 03:58:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206774] [libfetch] [patch] double free in http.c Date: Sun, 31 Jan 2016 03:58:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: heckendorfc@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 03:58:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206774 Bug ID: 206774 Summary: [libfetch] [patch] double free in http.c Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: heckendorfc@gmail.com Keywords: patch Created attachment 166316 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166316&action= =3Dedit resolves double free issue in http.c The patch in PR 194483 introduced a double free. Here's a patch to fix it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 05:47:44 2016 Return-Path: Delivered-To: freebsd-bugs@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 D3388A74717 for ; Sun, 31 Jan 2016 05:47:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C46CB1C66 for ; Sun, 31 Jan 2016 05:47:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V5liWo074453 for ; Sun, 31 Jan 2016 05:47:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206648] Fix double strlen in ktrstruct Date: Sun, 31 Jan 2016 05:47:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 05:47:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206648 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Closed |Open Resolution|FIXED |--- --- Comment #5 from Kubilay Kocak --- Re-open for pending (?) MFC request. Set to + when committed, or - if denied, with comment --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 05:51:36 2016 Return-Path: Delivered-To: freebsd-bugs@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 B23FBA74888 for ; Sun, 31 Jan 2016 05:51:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F4D01E3D for ; Sun, 31 Jan 2016 05:51:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0V5paCr084051 for ; Sun, 31 Jan 2016 05:51:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206648] Fix double strlen in ktrstruct Date: Sun, 31 Jan 2016 05:51:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: mjg@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: mjg@FreeBSD.org X-Bugzilla-Flags: mfc-stable10- X-Bugzilla-Changed-Fields: assigned_to bug_status flagtypes.name resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 05:51:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206648 Mateusz Guzik changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |mjg@FreeBSD.org Status|Open |Closed Flags|mfc-stable10? |mfc-stable10- Resolution|--- |FIXED --- Comment #6 from Mateusz Guzik --- The change is cosmetic and not worth merging. Should there be more changes = in the code, this can be merged no problems to reduce the diff. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 10:04:35 2016 Return-Path: Delivered-To: freebsd-bugs@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 D64D7A739BA for ; Sun, 31 Jan 2016 10:04:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6E2F1AB2 for ; Sun, 31 Jan 2016 10:04:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VA4ZKF053619 for ; Sun, 31 Jan 2016 10:04:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206761] Kernel stack overflow in sysctl handler for kern.binmisc.add Date: Sun, 31 Jan 2016 10:04:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: needs-patch, needs-qa, security X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cturt@hardenedbsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 10:04:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206761 --- Comment #6 from CTurt --- I didn't even notice this before, but you're right. imgact_binmisc_add_entry: sx_xlock(&interp_list_sx); if (imgact_binmisc_find_entry(xbe->xbe_name) !=3D NULL) { sx_xunlock(&interp_list_sx); return (EEXIST); } /* Preallocate a new entry. */ ibe =3D imgact_binmisc_new_entry(xbe); if (!ibe) return (ENOMEM); SLIST_INSERT_HEAD(&interpreter_list, ibe, link); interp_list_entry_count++; sx_xunlock(&interp_list_sx); If the code ever reaches `return (ENOMEM);`, it is missing an `sx_xunlock(&interp_list_sx);` call. Unfortunately, this bug isn't triggerable, because `imgact_binmisc_add_entr= y` uses `M_WAITOK` for its allocations, and so can never return `NULL`: static imgact_binmisc_entry_t * imgact_binmisc_new_entry(ximgact_binmisc_entry_t *xbe) { ibe =3D malloc(sizeof(*ibe), M_BINMISC, M_WAITOK|M_ZERO); ... return (ibe); } My recommendation is to just remove the following check altogether: if (!ibe) return (ENOMEM); --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 11:13:03 2016 Return-Path: Delivered-To: freebsd-bugs@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 848A9A73121 for ; Sun, 31 Jan 2016 11:13:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75F1A18CC for ; Sun, 31 Jan 2016 11:13:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VBD3nV023426 for ; Sun, 31 Jan 2016 11:13:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206774] [libfetch] [patch] double free in http.c Date: Sun, 31 Jan 2016 11:13:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bapt@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: des@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 11:13:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206774 Baptiste Daroussin changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |des@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 12:45:53 2016 Return-Path: Delivered-To: freebsd-bugs@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 D6970A73167 for ; Sun, 31 Jan 2016 12:45:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C703AA9 for ; Sun, 31 Jan 2016 12:45:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VCjrSM047559 for ; Sun, 31 Jan 2016 12:45:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206326] mandoc -r294113's parse assertion fd > 0 is failing: main's STDIN_FILENO use does not meet that criteria Date: Sun, 31 Jan 2016 12:45:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bapt@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to bug_file_loc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 12:45:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206326 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |bapt@FreeBSD.org URL| |https://svnweb.freebsd.org/ | |base?view=3Drevision&revis= ion | |=3D294113 --- Comment #1 from Mark Linimon --- Over to committer of 294113. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 12:46:48 2016 Return-Path: Delivered-To: freebsd-bugs@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 A244EA731D0 for ; Sun, 31 Jan 2016 12:46:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93388104 for ; Sun, 31 Jan 2016 12:46:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VCkmOA048771 for ; Sun, 31 Jan 2016 12:46:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206291] rc.subr: limits(1) is unavailable before /usr is mounted Date: Sun, 31 Jan 2016 12:46:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: adrian@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 12:46:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206291 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |adrian@freebsd.org --- Comment #1 from Mark Linimon --- Over to committer of 288291. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 18:20:50 2016 Return-Path: Delivered-To: freebsd-bugs@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 8FD26A6FDD7 for ; Sun, 31 Jan 2016 18:20:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 634581B1 for ; Sun, 31 Jan 2016 18:20:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VIKoYp006830 for ; Sun, 31 Jan 2016 18:20:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206804] Inconsistent type handling for sizes in sbuf code Date: Sun, 31 Jan 2016 18:20:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cturt@hardenedbsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 18:20:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206804 Bug ID: 206804 Summary: Inconsistent type handling for sizes in sbuf code Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: cturt@hardenedbsd.org Definition of `struct sbuf` in `/sys/sys/sbuf.h`: struct sbuf { char *s_buf; /* storage buffer */ sbuf_drain_func *s_drain_func; /* drain function */ void *s_drain_arg; /* user-supplied drain argument */ int s_error; /* current error code */ ssize_t s_size; /* size of storage buffer */ ssize_t s_len; /* current length of string */ #define SBUF_FIXEDLEN 0x00000000 /* fixed length buffer (default) */ #define SBUF_AUTOEXTEND 0x00000001 /* automatically extend buffer */ #define SBUF_INCLUDENUL 0x00000002 /* nulterm byte is counted in len */ #define SBUF_USRFLAGMSK 0x0000ffff /* mask of flags the user may speci= fy */ #define SBUF_DYNAMIC 0x00010000 /* s_buf must be freed */ #define SBUF_FINISHED 0x00020000 /* set by sbuf_finish() */ #define SBUF_DYNSTRUCT 0x00080000 /* sbuf must be freed */ #define SBUF_INSECTION 0x00100000 /* set by sbuf_start_section() */ int s_flags; /* flags */ ssize_t s_sect_len; /* current length of section */ }; All sizes and lengths, such as `s_size`, are of type `ssize_t`. However some functions in `sys/kern/subr_sbuf.c` incorrectly treat these si= zes as `int` which could lead to unexpected truncation on platforms where `sizeof(int)` !=3D=3D `sizeof(ssize_t)`: struct sbuf * sbuf_new(struct sbuf *s, char *buf, int length, int flags) { ... sbuf_newbuf(s, buf, length, flags); ... } static struct sbuf * sbuf_newbuf(struct sbuf *s, char *buf, int length, int flags) { ... s->s_size =3D length; ... } --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 18:22:49 2016 Return-Path: Delivered-To: freebsd-bugs@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 4D00AA6FF68 for ; Sun, 31 Jan 2016 18:22:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E2EB32B for ; Sun, 31 Jan 2016 18:22:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VIMnwa015443 for ; Sun, 31 Jan 2016 18:22:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206804] Inconsistent type handling for sizes in sbuf code Date: Sun, 31 Jan 2016 18:22:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cturt@hardenedbsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 18:22:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206804 --- Comment #1 from CTurt --- Patch: https://github.com/HardenedBSD/hardenedBSD-playground/commit/247bc91b9b3caa= f85a0620165022a08e4f8eae0c.patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 18:30:46 2016 Return-Path: Delivered-To: freebsd-bugs@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 BF598A731A8 for ; Sun, 31 Jan 2016 18:30:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6FC35F9 for ; Sun, 31 Jan 2016 18:30:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VIUkRi025762 for ; Sun, 31 Jan 2016 18:30:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206804] Inconsistent type handling for sizes in sbuf code Date: Sun, 31 Jan 2016 18:30:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cturt@hardenedbsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 18:30:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206804 --- Comment #2 from CTurt --- Additional patch also needed for `sbuf.h`: https://github.com/HardenedBSD/hardenedBSD-playground/commit/4cd156684cf38b= 64d218b97db44c477b9799c2ed.patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 20:02:16 2016 Return-Path: Delivered-To: freebsd-bugs@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 A4F18A74CA4 for ; Sun, 31 Jan 2016 20:02:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E6A1356 for ; Sun, 31 Jan 2016 20:02:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VK2GFs071910 for ; Sun, 31 Jan 2016 20:02:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206804] Inconsistent type handling for sizes in sbuf code Date: Sun, 31 Jan 2016 20:02:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: op@hardenedbsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 20:02:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206804 --- Comment #3 from op@hardenedbsd.org --- These patch breaks the build, see the jenkins log: http://jenkins.hardenedbsd.org:8180/jenkins/job/HardenedBSD-CURRENT-unstabl= e-amd64/lastFailedBuild/consoleFull --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 20:19:19 2016 Return-Path: Delivered-To: freebsd-bugs@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 C1EB8A740FD for ; Sun, 31 Jan 2016 20:19:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B26C2B01 for ; Sun, 31 Jan 2016 20:19:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VKJJse003624 for ; Sun, 31 Jan 2016 20:19:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206613] dhcpcd 6.10.1 crashes the 10.2-RELEASE kernel. Date: Sun, 31 Jan 2016 20:19:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: crash, needs-patch, needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: g_amanakis@yahoo.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable9? mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 20:19:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206613 --- Comment #6 from g_amanakis@yahoo.com --- The issue seems resolved in the 10-STABLE kernel (as of r295091). --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 20:20:26 2016 Return-Path: Delivered-To: freebsd-bugs@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 9A125A74226 for ; Sun, 31 Jan 2016 20:20:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8B40ECAB for ; Sun, 31 Jan 2016 20:20:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VKKQSb005228 for ; Sun, 31 Jan 2016 20:20:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206762] -Wtautilogical-pointer-compare issues with drm(4) code Date: Sun, 31 Jan 2016 20:20:26 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dumbbell@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 20:20:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206762 --- Comment #2 from Jean-S=C3=83=C2=A9bastien P=C3=83=C2=A9dron --- Hi! I guess I will silence this particular warning for DRM (maybe i915 only). Thank you! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 20:42:01 2016 Return-Path: Delivered-To: freebsd-bugs@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 CFE7FA74A9E for ; Sun, 31 Jan 2016 20:42:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0F791474 for ; Sun, 31 Jan 2016 20:42:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VKg1KN052261 for ; Sun, 31 Jan 2016 20:42:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206804] Inconsistent type handling for sizes in sbuf code Date: Sun, 31 Jan 2016 20:42:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 20:42:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206804 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 20:49:45 2016 Return-Path: Delivered-To: freebsd-bugs@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 3C2C2A74D8A for ; Sun, 31 Jan 2016 20:49:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C96A18C2 for ; Sun, 31 Jan 2016 20:49:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VKnj8S064776 for ; Sun, 31 Jan 2016 20:49:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206804] Inconsistent type handling for sizes in sbuf code Date: Sun, 31 Jan 2016 20:49:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: cturt@hardenedbsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 20:49:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206804 --- Comment #4 from CTurt --- The error is: /jenkins/workspace/HardenedBSD-CURRENT-unstable-amd64/sy/kern/subr_sbuf.c:2= 26:60: error: format specifies type 'int' but the argument has type 'ssize_t' (aka 'long') [-Werror,-Wformat] ("attempt to create an sbuf of negative length (%d)", length)); Referring to this line: KASSERT(length >=3D 0, ("attempt to create an sbuf of negative length (%d)", length)); I find it odd that this would give an error, but the below line doesn't: KASSERT(s->s_len < s->s_size, ("wrote past end of sbuf (%d >=3D %d)", s->s_len, s->s_size)); Regardless, I've committed a new patch to use the `%zd` format specifier he= re, instead: https://github.com/HardenedBSD/hardenedBSD-playground/commit/5165b5cc55f09b= a357bc1ee41d828ec2864e7d0d.patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Jan 31 21:00:12 2016 Return-Path: Delivered-To: freebsd-bugs@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 2269CA731D5 for ; Sun, 31 Jan 2016 21:00:12 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19CAA1E5A for ; Sun, 31 Jan 2016 21:00:12 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0VL01Nx085275 for ; Sun, 31 Jan 2016 21:00:11 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201601312100.u0VL01Nx085275@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: freebsd-bugs@FreeBSD.org Subject: Problem reports for freebsd-bugs@FreeBSD.org that need special attention Date: Sun, 31 Jan 2016 21:00:11 +0000 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Jan 2016 21:00:12 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 153459 | [kbdmux][patch] add option to specify built-in ke In Progress | 183618 | [panic] Dell PowerEdge R620 -- PERC H710 Mini (mf In Progress | 196973 | sh(1) broken UTF-8 input New | 197876 | [devfs] an error in devfs leads to data loss and New | 198797 | [PATCH] Added an option to install BSDstats to bs New | 202290 | /usr/bin/vi conversion error on valid character New | 202362 | ntp: restore refclocks selection (10.2-RELEASE re New | 202740 | vi/ex string substitution problem when there is m New | 204097 | witness_initialize() does not perform bound check New | 204115 | freebsd-update: Add support for better user messa New | 204545 | Adding quirk entry for some (Acer C720P Chromeboo New | 205598 | [patch] sbin/md5.c param -c, convert to lowercase New | 205690 | [psm] [patch]: support for Elantech trackpads Open | 183817 | [patch] [mac] [panic] kernel compiled with option Open | 204121 | numa(4) is broken: "vm_page_alloc: missing page" Open | 206528 | Emulex LPe 16002 FC HBA Not Recognized by oce(4) Open | 206573 | Improper userland pointer handling in aacraid In Progress | 191348 | [mps] LSI2308 with WD3000FYYZ drives disappears a New | 202316 | Add IANA vxlan port to /etc/services 19 problems total for which you should take action. From owner-freebsd-bugs@freebsd.org Mon Feb 1 00:19:02 2016 Return-Path: Delivered-To: freebsd-bugs@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 3B70EA74660 for ; Mon, 1 Feb 2016 00:19:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13918C6 for ; Mon, 1 Feb 2016 00:19:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u110J1HP015218 for ; Mon, 1 Feb 2016 00:19:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206809] [patch] Add Octal Number Support for install -f Date: Mon, 01 Feb 2016 00:19:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: freebsd-bugs@nanoman.ca X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 00:19:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206809 Bug ID: 206809 Summary: [patch] Add Octal Number Support for install -f Product: Base System Version: 10.2-RELEASE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: freebsd-bugs@nanoman.ca Keywords: patch Created attachment 166372 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166372&action= =3Dedit patch to add octal number support for install -f Let's say you have a file that has file flags, and you need to use install(= 1) to install a copy of it that doesn't have file flags. After reading the manuals of install(1) and chflags(1), you try this: # install -f 0 /path/to/foo /path/to/bar install: 0: invalid flag It seems that install -f doesn't support octal numbers. There isn't a sing= le keyword that clears all file flags, so to use only install, you'd have to do this: # install -f noarch,dump,noopaque,nosappnd,noschg,nosunlnk,nouappnd,nouarch,nouchg,nouhi= dden,nouoffline,nourdonly,nousparse,nousystem,noureparse,nouunlnk /path/to/foo /path/to/bar A workaround would be to use both install and chflags: # install /path/to/foo /path/to/bar # chflags 0 /path/to/bar I've attached a patch for /head/usr.bin/xinstall/xinstall.c. This patch ad= ds octal number support for install -f. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 00:36:28 2016 Return-Path: Delivered-To: freebsd-bugs@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 1CD37A74B1A for ; Mon, 1 Feb 2016 00:36:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EEEDD849 for ; Mon, 1 Feb 2016 00:36:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u110aRVj051687 for ; Mon, 1 Feb 2016 00:36:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206810] 11.0-CURRENT/clang380-import for powerpc (32-bit): signal handlers given insufficient stack alignment Date: Mon, 01 Feb 2016 00:36:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markmi@dsl-only.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 00:36:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206810 Bug ID: 206810 Summary: 11.0-CURRENT/clang380-import for powerpc (32-bit): signal handlers given insufficient stack alignment Product: Base System Version: 11.0-CURRENT Hardware: ppc OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: markmi@dsl-only.net [syslogd, nfsd, mountd, and make all get the described-below sorts of segmentation faults via similar __vfprintf use during a signal handler for = the powerpc (32-bit) context identifed.] For a system based on buildworld with TARGET_ARCH=3Dpowerpc via clang 3.8.0= (and use of project/clang380-import -r294962) the following short program gets a segmentation violation for the use of handler via raise: #include // for signal, SIGINT, SIG_ERR, raise. #include // for snprintf void handler(int sig) { char buf[32]; snprintf(buf, sizeof buf, "%d", sig); // FreeBSD's world does such thin= gs in some of its signal handlers } int main(void) { handler(0); // works fine if (signal(SIGINT, handler) !=3D SIG_ERR) raise(SIGINT); // fails during handler return 0; } The problem actually occurs during __vfprintf (and the code it inlines), specifically for io_flush(struct io_state *iop, locale_t locale) has: return (__sprint(iop->fp, &iop->uio, locale)); The code generated that calculates &iop->uio depends on alignment by maskin= g in the offset of 4 bytes instead of adding 4 to the address. ("li r3,4" and la= ter "rlwimi r23,r3,0,29,29".) With the stack misalignment via the signal delive= ry the wrong address is calculated (the bit position already has a one). In fa= ct it calculates the same address as its does for iop->fp (fp being the first field of *iop). For reference: #define NIOV 8 struct io_state { FILE *fp; struct __suio uio; /* output information: summary */ struct __siov iov[NIOV];/* ... and individual io vectors */ }; With the bad address propagated to #define COPY(n) (void)memcpy((void *)fp->_p, (void *)p, (size_t)(n)) (as p via __sfvwrite using COPY) the memcpy gets the segmentation fault. The signal delivery is generating a modulo-4 alignment that is not aligned = for any higher power of 2. Roman Divacky reports via a list response that 16 by= te alignment is expected by llvm for ppc32. While 16 is what I expect as the A= BI requirement I do not have a definitive reference to the FreeBSD powerpc (32-bit) ABI criteria for this (or any) context: I can not point to the definition or a known-good secondary source to prove a violation of a rule. But I doubt that this should be considered a clang 3.8.0 defect for ppc32: = it should be treated as a FreeBSD signal delivery defect instead as far as I c= an tell. Below I provide some gdb evidence of the good (direct handler call) vs. bad (signal based handler call) stack alignments for handler and for __vfprintf (and its inlined code) if you want to look. For __vfprintf's lots of local variables (including arrays) they all end up with unusual alignments from s= tart from a unusual alignment. You can stop reading this description here to avoid this detail: There is no more after it. (gdb) run Starting program: /root/c_tests/a.out=20 Breakpoint 10, 0x018006d4 in handler () (gdb) bt #0 0x018006d4 in handler () #1 0x01800760 in main () (gdb) info frame Stack level 0, frame at 0xffffdcb0: pc =3D 0x18006d4 in handler; saved pc =3D 0x1800760 called by frame at 0xffffdcd0 Arglist at 0xffffdc60, args:=20 Locals at 0xffffdc60, Previous frame's sp is 0xffffdcb0 Saved registers: r31 at 0xffffdcac, pc at 0xffffdcb4, lr at 0xffffdcb4 vs. (gdb) cont Continuing. Breakpoint 10, 0x018006d4 in handler () (gdb) bt #0 0x018006d4 in handler () #1 #2 0x00000000 in ?? () (gdb) info frame Stack level 0, frame at 0xffffd73c: pc =3D 0x18006d4 in handler; saved pc =3D 0xffffe008 called by frame at 0xffffd73c Arglist at 0xffffd6ec, args:=20 Locals at 0xffffd6ec, Previous frame's sp is 0xffffd73c Saved registers: r31 at 0xffffd738, pc at 0xffffd740, lr at 0xffffd740 (gdb) info frame Stack level 0, frame at 0xffffdad0: pc =3D 0x41931590 in __vfprintf (/usr/src/lib/libc/stdio/vfprintf.c:454); s= aved pc =3D 0x4199c644 called by frame at 0xffffdc60 source language c. Arglist at 0xffffd880, args: fp=3D0xffffdb40, locale=3D0x419cba40 <__xlocale_global_locale>, fmt0=3D0x180085c "%d", ap=3D0xffffdc30 Locals at 0xffffd880, Previous frame's sp is 0xffffdad0 Saved registers: . . . vs. (gdb) info frame Stack level 0, frame at 0xffffd55c: pc =3D 0x41931590 in __vfprintf (/usr/src/lib/libc/stdio/vfprintf.c:454); s= aved pc =3D 0x4199c644 called by frame at 0xffffd6ec source language c. Arglist at 0xffffd30c, args: fp=3D0xffffd5cc, locale=3D0x419cba40 <__xlocale_global_locale>, fmt0=3D0x180085c "%d", ap=3D0xffffd6bc Locals at 0xffffd30c, Previous frame's sp is 0xffffd55c Saved registers: . . . --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 04:51:03 2016 Return-Path: Delivered-To: freebsd-bugs@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 D6CD1A75F94 for ; Mon, 1 Feb 2016 04:51:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6B79B73 for ; Mon, 1 Feb 2016 04:51:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u114p3NB004812 for ; Mon, 1 Feb 2016 04:51:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206812] each man invocation leads to the mandoc crash Date: Mon, 01 Feb 2016 04:51:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emz@norma.perm.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 04:51:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206812 Bug ID: 206812 Summary: each man invocation leads to the mandoc crash Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: emz@norma.perm.ru Version: FreeBSD bsdrookie.norma.com. 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r294254: Mon Jan 18 13:46:05 YEKT 2016=20=20=20=20 emz@bsdrookie.norma.com.:/usr/obj/usr/src/sys/BSDROOKIE amd64 Each man invocation leads to the mandoc crashing and dumping a core. 100% reproducible. backtrace: [root@bsdrookie:/etc]# gdb `which mandoc` mandoc.core GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain condition= s. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"... Core was generated by `mandoc'. Program terminated with signal 6, Aborted. Reading symbols from /usr/lib/libprivatesqlite3.so.0...Reading symbols from /usr/lib/debug//usr/lib/libprivatesqlite3.so.0.debug...done. done. Loaded symbols for /usr/lib/libprivatesqlite3.so.0 Reading symbols from /lib/libz.so.6...Reading symbols from /usr/lib/debug//lib/libz.so.6.debug...done. done. Loaded symbols for /lib/libz.so.6 Reading symbols from /lib/libc.so.7...Reading symbols from /usr/lib/debug//lib/libc.so.7.debug...done. done. Loaded symbols for /lib/libc.so.7 Reading symbols from /lib/libthr.so.3...Reading symbols from /usr/lib/debug//lib/libthr.so.3.debug...done. done. Loaded symbols for /lib/libthr.so.3 Reading symbols from /libexec/ld-elf.so.1...Reading symbols from /usr/lib/debug//libexec/ld-elf.so.1.debug...done. done. Loaded symbols for /libexec/ld-elf.so.1 #0 0x0000000800e5148a in thr_kill () from /lib/libc.so.7 [New Thread 801615000 (LWP 102166/)] (gdb) bt #0 0x0000000800e5148a in thr_kill () from /lib/libc.so.7 #1 0x0000000800e5145b in __raise (s=3D) at /usr/src/lib/libc/gen/raise.c:52 #2 0x0000000800e513c9 in abort () at /usr/src/lib/libc/stdlib/abort.c:65 #3 0x0000000800eccce1 in __assert (func=3D, file=3D,=20 line=3D, failedexpr=3D) at /usr/src/lib/libc/gen/assert.c:51 #4 0x000000000042c6b0 in main (argc=3D, argv=3D) at /usr/src/usr.bin/mandoc/../../contrib/mdocml/main.c:723 #5 0x000000000040395f in _start () #6 0x000000080066e000 in ?? () #7 0x0000000000000000 in ?? () --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 06:39:19 2016 Return-Path: Delivered-To: freebsd-bugs@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 1007FA965B5 for ; Mon, 1 Feb 2016 06:39:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F24D0817 for ; Mon, 1 Feb 2016 06:39:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u116dIoW045426 for ; Mon, 1 Feb 2016 06:39:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206762] -Wtautilogical-pointer-compare issues with drm(4) code Date: Mon, 01 Feb 2016 06:39:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 06:39:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206762 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dima@FreeBSD.org --- Comment #3 from NGie Cooper --- Here's the complete list according to Jenkins, BTW: https://jenkins.freebsd.org/job/FreeBSD_HEAD/95/warnings7Result/package.116= 3104811/ . The warnings seem valid though -- why is a scalar being compared against NU= LL? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 09:20:15 2016 Return-Path: Delivered-To: freebsd-bugs@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 D4FC6A7566A for ; Mon, 1 Feb 2016 09:20:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C774215E8 for ; Mon, 1 Feb 2016 09:20:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u119KFRZ019108 for ; Mon, 1 Feb 2016 09:20:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205834] rtadvd: accessing freed struct Date: Mon, 01 Feb 2016 09:20:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 09:20:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205834 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 10:16:41 2016 Return-Path: Delivered-To: freebsd-bugs@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 8349DA97C8A for ; Mon, 1 Feb 2016 10:16:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 750041AEC for ; Mon, 1 Feb 2016 10:16:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11AGfPP070110 for ; Mon, 1 Feb 2016 10:16:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206721] FreeBSDs DHCP client(dhclient) does not support the interface-mtu option(option 26). Date: Mon, 01 Feb 2016 10:16:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ae@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ae@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 10:16:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206721 Andrey V. Elsukov changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |ae@FreeBSD.org CC| |ae@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 10:22:28 2016 Return-Path: Delivered-To: freebsd-bugs@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 CA89DA97EA2 for ; Mon, 1 Feb 2016 10:22:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BCDD31DC0 for ; Mon, 1 Feb 2016 10:22:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11AMSK2083480 for ; Mon, 1 Feb 2016 10:22:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206762] -Wtautilogical-pointer-compare issues with drm(4) code Date: Mon, 01 Feb 2016 10:22:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dumbbell@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 10:22:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206762 --- Comment #4 from Jean-S=C3=83=C2=A9bastien P=C3=83=C2=A9dron --- Yes, the check looks wrong. Some time ago, I verified in later versions of Linux and it was still there. I didn't look again recently if it was fixed.= I had no time to report this yet. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 14:27:03 2016 Return-Path: Delivered-To: freebsd-bugs@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 6AF1CA97553 for ; Mon, 1 Feb 2016 14:27:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59665130A for ; Mon, 1 Feb 2016 14:27:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11ER326011433 for ; Mon, 1 Feb 2016 14:27:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206820] [ext2fs] Panic when writing to ext3fs mounted as ext2fs Date: Mon, 01 Feb 2016 14:27:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ardovm@yahoo.it X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 14:27:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206820 Bug ID: 206820 Summary: [ext2fs] Panic when writing to ext3fs mounted as ext2fs Product: Base System Version: 9.3-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: ardovm@yahoo.it I encountered two panics on the very same operation: writing files to a ext= 3fs formatted USB drive that is mounted as ext2fs. The filesystem is created by a shell script, issuing the following commands: # mkfs.ext3 /dev/da0s1 # tune2fs -O ^dir_index /dev/da0s1 # mount -t ext2fs /dev/da0s1 /mnt And files are extracted from a tar archive (produced by gnu tar): # ssh linuxhost 'cat filesystem.tar.bz2' | tar -C /mnt -xjf -' My system is a 9-STABLE updated this morning. # uname -a=20 FreeBSD myhost 9.3-STABLE FreeBSD 9.3-STABLE #144 r295117M: Mon Feb 1 09:3= 1:54 CET 2016 root@myhost:/usr/obj/usr/src/sys/GENERIC i386 Both panics are triggered by function ext2_i2ei at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode_cnv.c:152 Here is an excerpt of the backtrace: [...] #7 0xc0f9fee7 in calltrap () at /usr/src/sys/i386/i386/exception.s:173 #8 0xd00f5759 in ext2_i2ei (ip=3D0xcab8f100, ei=3D0xe17e0f80) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode_cnv.c:152 #9 0xd00f4a56 in ext2_update (vp=3D0xce0f38e0, waitfor=3D1) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode.c:91 #10 0xd00fad12 in ext2_makeinode (mode=3D8, dvp=3D0xcc69f11c, vpp=3D0xeffea= b88,=20 cnp=3D0xeffeab9c) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_vnops.c:1586 #11 0xc0fdd612 in VOP_CREATE_APV (vop=3D0xd00fe3a0, a=3D0xeffeaae8) at vnode_if.c:260 #12 0xc0b9d989 in vn_open_cred (ndp=3D0xeffeab5c, flagp=3D0xeffeac24,=20 cmode=3D, vn_open_flags=3D0, cred=3D0xc9ee7100,=20 fp=3D0xcafea508) at vnode_if.h:109 #13 0xc0b9de6b in vn_open (ndp=3D0xeffeab5c, flagp=3D0xeffeac24, cmode=3D49= 3,=20 fp=3D0xcafea508) at /usr/src/sys/kern/vfs_vnops.c:113 #14 0xc0b99460 in kern_openat (td=3D0xc8420900, fd=3D-100,=20 path=3D0x284a61a0
,=20 pathseg=3DUIO_USERSPACE, flags=3D2562, mode=3D493) at /usr/src/sys/kern/vfs_syscalls.c:1128 #15 0xc0b998b5 in kern_open (td=3D0xc8420900,=20 path=3D0x284a61a0
,=20 pathseg=3DUIO_USERSPACE, flags=3D2561, mode=3D493) at /usr/src/sys/kern/vfs_syscalls.c:1079 #16 0xc0b998f0 in sys_open (td=3D0xc8420900, uap=3D0xeffeaccc) at /usr/src/sys/kern/vfs_syscalls.c:1055 #17 0xc0fb6869 in syscall (frame=3D0xeffead08) at subr_syscall.c:142 #18 0xc0f9ff8c in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s:279 When kgdb'ing into frame 8, the pointer to ei seems not to be valid: (kgdb) frame 8 #8 0xd00f5759 in ext2_i2ei (ip=3D0xcab8f100, ei=3D0xe17e0f80) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode_cnv.c:152 152 ei->e2di_ctime_extra =3D NSEC_TO_XTIME(ip->i_ctimensec); (kgdb) print *ip $1 =3D {i_vnode =3D 0xce0f38e0, i_ump =3D 0xccadc240, i_flag =3D 0, i_numbe= r =3D 122888,=20 i_e2fs =3D 0xc7798c00, i_modrev =3D 62488400780442, i_count =3D 0, i_endo= ff =3D 0,=20 i_diroff =3D 0, i_offset =3D 0, i_block_group =3D 60, i_next_alloc_block = =3D 0,=20 i_next_alloc_goal =3D 0, i_mode =3D 33261, i_nlink =3D 1, i_uid =3D 0, i_= gid =3D 0,=20 i_size =3D 0, i_blocks =3D 0, i_atime =3D 1454332232, i_mtime =3D 1454332= 232,=20 i_ctime =3D 1454332232, i_birthtime =3D 1454332232, i_mtimensec =3D 70012= 0000,=20 i_atimensec =3D 700120000, i_ctimensec =3D 700120000, i_birthnsec =3D 700= 118000,=20 i_gen =3D 1784569991, i_flags =3D 0, i_db =3D {0 }, i_i= b =3D {0,=20 0, 0}, i_ext_cache =3D {ec_start =3D 0, ec_blk =3D 0, ec_len =3D 0, ec_= type =3D 0}} (kgdb) print *ei Cannot access memory at address 0xe17e0f80 Some information from the previous frame: (kgdb) frame 9 #9 0xd00f4a56 in ext2_update (vp=3D0xce0f38e0, waitfor=3D1) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode.c:91 91 ext2_i2ei(ip, (struct ext2fs_dinode *)((char *)bp->b_data + (kgdb) print bp $2 =3D (struct buf *) 0xe112a8a8 (kgdb) print *bp=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 $3 =3D {b_bufobj =3D 0xcbe062e4, b_bcount =3D 1024, b_caller1 =3D 0x0,=20 b_data =3D 0xe17e0c00 "=C3=ADA", b_error =3D 0, b_iocmd =3D 2 '\002',=20 b_ioflags =3D 2 '\002', b_iooffset =3D 503319552, b_resid =3D 0, b_iodone= =3D 0,=20 b_blkno =3D 983046, b_offset =3D 503319552, b_bobufs =3D {tqe_next =3D 0x= 0,=20 tqe_prev =3D 0xe1231828}, b_left =3D 0xe12317f0, b_right =3D 0x0, b_vfl= ags =3D 0,=20 b_freelist =3D {tqe_next =3D 0x0, tqe_prev =3D 0xe123183c}, b_qindex =3D = 2,=20 b_flags =3D 2684354720, b_xflags =3D 1 '\001', b_lock =3D {lock_object = =3D { lo_name =3D 0xc10fe54f "bufwait", lo_flags =3D 108199936, lo_data =3D= 0,=20 lo_witness =3D 0x0}, lk_lock =3D 3359770880, lk_exslpfail =3D 0, lk_t= imo =3D 0,=20 lk_pri =3D 96}, b_bufsize =3D 1024, b_runningbufspace =3D 0,=20 b_kvabase =3D 0xe17e0000 "#", b_kvaalloc =3D 0x0, b_kvasize =3D 16384,=20 b_lblkno =3D 983046, b_vp =3D 0xcbe06238, b_dirtyoff =3D 0, b_dirtyend = =3D 0,=20 b_rcred =3D 0x0, b_wcred =3D 0x0, b_saveaddr =3D 0xe17e0000, b_pager =3D { pg_reqpage =3D 0}, b_cluster =3D {cluster_head =3D {tqh_first =3D 0x0,= =20 tqh_last =3D 0xe11ad6f0}, cluster_entry =3D {tqe_next =3D 0x0,=20 tqe_prev =3D 0xe11ad6f0}}, b_pages =3D {0xc51334b0, 0x0 },=20 b_npages =3D 1, b_dep =3D {lh_first =3D 0x0}, b_fsprivate1 =3D 0x0,=20 b_fsprivate2 =3D 0x0, b_fsprivate3 =3D 0x0, b_pin_count =3D 0} Please tell me what information I can provide, to help tracking this problem down. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 14:31:23 2016 Return-Path: Delivered-To: freebsd-bugs@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 984C3A9775B for ; Mon, 1 Feb 2016 14:31:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 88FCA1959 for ; Mon, 1 Feb 2016 14:31:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11EVNVd020761 for ; Mon, 1 Feb 2016 14:31:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206820] [ext2fs] Panic when writing to ext3fs mounted as ext2fs Date: Mon, 01 Feb 2016 14:31:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ardovm@yahoo.it X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 14:31:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206820 --- Comment #1 from Arrigo Marchiori --- Created attachment 166396 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166396&action= =3Dedit /var/crash/core.txt from the first panic --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 14:32:15 2016 Return-Path: Delivered-To: freebsd-bugs@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 0E5DAA97886 for ; Mon, 1 Feb 2016 14:32:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F37911A4E for ; Mon, 1 Feb 2016 14:32:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11EWE4n024920 for ; Mon, 1 Feb 2016 14:32:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206820] [ext2fs] Panic when writing to ext3fs mounted as ext2fs Date: Mon, 01 Feb 2016 14:32:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ardovm@yahoo.it X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 14:32:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206820 --- Comment #2 from Arrigo Marchiori --- Created attachment 166397 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166397&action= =3Dedit /var/crash/core.txt from the second panic --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 15:03:16 2016 Return-Path: Delivered-To: freebsd-bugs@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 5A4A9A755EA for ; Mon, 1 Feb 2016 15:03:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A189D34 for ; Mon, 1 Feb 2016 15:03:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11F3GFb026804 for ; Mon, 1 Feb 2016 15:03:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206649] [PATCH] Common gestures for Cypress i2c touchpad Date: Mon, 01 Feb 2016 15:03:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: alexander.m.mishurov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback+ X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 15:03:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206649 Alexander Mishurov changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #166152|0 |1 is obsolete| | --- Comment #1 from Alexander Mishurov --- Created attachment 166401 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166401&action= =3Dedit Fix enum constant --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 15:10:14 2016 Return-Path: Delivered-To: freebsd-bugs@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 4722FA758C0 for ; Mon, 1 Feb 2016 15:10:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37510E86 for ; Mon, 1 Feb 2016 15:10:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11FAE3S045719 for ; Mon, 1 Feb 2016 15:10:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206820] [ext2fs] Panic when writing to ext3fs mounted as ext2fs Date: Mon, 01 Feb 2016 15:10:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ardovm@yahoo.it X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 15:10:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206820 --- Comment #3 from Arrigo Marchiori --- The panic is also reproducible when writing to a md(4) instead of a USB dri= ve. The stack trace is analogous. (kgdb) bt #0 doadump (textdump=3D1) at pcpu.h:250 #1 0xc0aed3ae in kern_reboot (howto=3D260) at /usr/src/sys/kern/kern_shutdown.c:454 #2 0xc0aed6a5 in panic (fmt=3D) at /usr/src/sys/kern/kern_shutdown.c:642 #3 0xc0d70ede in vm_fault_hold (map=3D0xc1b8d000, vaddr=3D3799322624,=20 fault_type=3D2 '\002', fault_flags=3D0, m_hold=3D0x0) at /usr/src/sys/vm/vm_fault.c:289 #4 0xc0d7355b in vm_fault (map=3D0xc1b8d000, vaddr=3D3799322624,=20 fault_type=3D, fault_flags=3D0) at /usr/src/sys/vm/vm_fault.c:229 #5 0xc0fb619f in trap_pfault (frame=3D0xf0a8c964, usermode=3D0, eva=3D3799= 322628) at /usr/src/sys/i386/i386/trap.c:932 #6 0xc0fb744b in trap (frame=3D0xf0a8c964) at /usr/src/sys/i386/i386/trap.= c:553 #7 0xc0f9fee7 in calltrap () at /usr/src/sys/i386/i386/exception.s:173 #8 0xcc966759 in ext2_i2ei (ip=3D0xc7ba8300, ei=3D0xe2750f80) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode_cnv.c:152 #9 0xcc965a56 in ext2_update (vp=3D0xc99c5470, waitfor=3D1) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode.c:91 #10 0xcc96bd12 in ext2_makeinode (mode=3D8, dvp=3D0xc99c46a8, vpp=3D0xf0a8c= b88,=20 cnp=3D0xf0a8cb9c) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_vnops.c:1586 #11 0xc0fdd612 in VOP_CREATE_APV (vop=3D0xcc96f3a0, a=3D0xf0a8cae8) at vnode_if.c:260 #12 0xc0b9d989 in vn_open_cred (ndp=3D0xf0a8cb5c, flagp=3D0xf0a8cc24,=20 cmode=3D, vn_open_flags=3D0, cred=3D0xc8bcf600,=20 fp=3D0xc940bdc8) at vnode_if.h:109 #13 0xc0b9de6b in vn_open (ndp=3D0xf0a8cb5c, flagp=3D0xf0a8cc24, cmode=3D49= 3,=20 fp=3D0xc940bdc8) at /usr/src/sys/kern/vfs_vnops.c:113 #14 0xc0b99460 in kern_openat (td=3D0xca383900, fd=3D-100,=20 path=3D0x284a61a0
, pathseg=3DUIO_USE= RSPACE,=20 flags=3D2562, mode=3D493) at /usr/src/sys/kern/vfs_syscalls.c:1128 #15 0xc0b998b5 in kern_open (td=3D0xca383900,=20 path=3D0x284a61a0
, pathseg=3DUIO_USE= RSPACE,=20 flags=3D2561, mode=3D493) at /usr/src/sys/kern/vfs_syscalls.c:1079 #16 0xc0b998f0 in sys_open (td=3D0xca383900, uap=3D0xf0a8cccc) at /usr/src/sys/kern/vfs_syscalls.c:1055 #17 0xc0fb6869 in syscall (frame=3D0xf0a8cd08) at subr_syscall.c:142 #18 0xc0f9ff8c in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s= :279 (kgdb) frame 8 #8 0xcc966759 in ext2_i2ei (ip=3D0xc7ba8300, ei=3D0xe2750f80) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode_cnv.c:152 152 ei->e2di_ctime_extra =3D NSEC_TO_XTIME(ip->i_ctimensec); (kgdb) print *ip $1 =3D {i_vnode =3D 0xc99c5470, i_ump =3D 0xc7b92380, i_flag =3D 0, i_numbe= r =3D 49160,=20 i_e2fs =3D 0xc7858c00, i_modrev =3D 18475684767084, i_count =3D 0, i_endo= ff =3D 0,=20 i_diroff =3D 0, i_offset =3D 0, i_block_group =3D 24, i_next_alloc_block = =3D 0,=20 i_next_alloc_goal =3D 0, i_mode =3D 33261, i_nlink =3D 1, i_uid =3D 0, i_= gid =3D 0,=20 i_size =3D 0, i_blocks =3D 0, i_atime =3D 1454338085, i_mtime =3D 1454338= 085,=20 i_ctime =3D 1454338085, i_birthtime =3D 1454338085, i_mtimensec =3D 52281= 0000,=20 i_atimensec =3D 522810000, i_ctimensec =3D 522810000, i_birthnsec =3D 522= 809000,=20 i_gen =3D 679956546, i_flags =3D 0, i_db =3D {0 }, i_ib= =3D {0, 0,=20 0}, i_ext_cache =3D {ec_start =3D 0, ec_blk =3D 0, ec_len =3D 0, ec_typ= e =3D 0}} (kgdb) print *ei Cannot access memory at address 0xe2750f80 (kgdb) frame 9 #9 0xcc965a56 in ext2_update (vp=3D0xc99c5470, waitfor=3D1) at /usr/src/sys/modules/ext2fs/../../fs/ext2fs/ext2_inode.c:91 91 ext2_i2ei(ip, (struct ext2fs_dinode *)((char *)bp->b_data + (kgdb) print *vp $2 =3D {v_type =3D VREG, v_tag =3D 0xcc96e830 "ext2fs", v_op =3D 0xcc96f3a0= ,=20 v_data =3D 0xc7ba8300, v_mount =3D 0xc7dc77ec, v_nmntvnodes =3D {tqe_next= =3D 0x0,=20 tqe_prev =3D 0xc99c56bc}, v_un =3D {vu_mount =3D 0x0, vu_socket =3D 0x0= ,=20 vu_cdev =3D 0x0, vu_fifoinfo =3D 0x0}, v_hashlist =3D {le_next =3D 0x0,= =20 le_prev =3D 0xc793f988}, v_hash =3D 49160, v_cache_src =3D {lh_first = =3D 0x0},=20 v_cache_dst =3D {tqh_first =3D 0x0, tqh_last =3D 0xc99c54a0}, v_cache_dd = =3D 0x0,=20 v_cstart =3D 0, v_lasta =3D 0, v_lastw =3D 0, v_clen =3D 0, v_lock =3D {l= ock_object =3D { lo_name =3D 0xcc96e830 "ext2fs", lo_flags =3D 108199944, lo_data =3D = 0,=20 lo_witness =3D 0x0}, lk_lock =3D 3392682240, lk_exslpfail =3D 0, lk_t= imo =3D 51,=20 lk_pri =3D 96}, v_interlock =3D {lock_object =3D { lo_name =3D 0xc11003e9 "vnode interlock", lo_flags =3D 16973824,=20 lo_data =3D 0, lo_witness =3D 0x0}, mtx_lock =3D 4}, v_vnlock =3D 0xc= 99c54c8,=20 v_holdcnt =3D 1, v_usecount =3D 1, v_iflag =3D 512, v_vflag =3D 0, v_writ= ecount =3D 0,=20 v_actfreelist =3D {tqe_next =3D 0xc99c56a8, tqe_prev =3D 0xc7dc782c}, v_b= ufobj =3D { bo_mtx =3D {lock_object =3D {lo_name =3D 0xc11003f9 "bufobj interlock",= =20 lo_flags =3D 16973824, lo_data =3D 0, lo_witness =3D 0x0}, mtx_lock= =3D 4},=20 bo_clean =3D {bv_hd =3D {tqh_first =3D 0x0, tqh_last =3D 0xc99c5530},=20 bv_root =3D 0x0, bv_cnt =3D 0}, bo_dirty =3D {bv_hd =3D {tqh_first = =3D 0x0,=20 tqh_last =3D 0xc99c5540}, bv_root =3D 0x0, bv_cnt =3D 0}, bo_numout= put =3D 0,=20 bo_flag =3D 0, bo_ops =3D 0xc1371e80, bo_bsize =3D 1024, bo_object =3D = 0x0,=20 bo_synclist =3D {le_next =3D 0x0, le_prev =3D 0x0}, bo_private =3D 0xc9= 9c5470,=20 __bo_vnode =3D 0xc99c5470}, v_pollinfo =3D 0x0, v_label =3D 0x0, v_lock= f =3D 0x0,=20 v_rl =3D {rl_waiters =3D {tqh_first =3D 0x0, tqh_last =3D 0xc99c5580},=20 rl_currdep =3D 0x0}} --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 15:23:33 2016 Return-Path: Delivered-To: freebsd-bugs@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 D8AE9A75D28 for ; Mon, 1 Feb 2016 15:23:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1072147D for ; Mon, 1 Feb 2016 15:23:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11FNX5f010048 for ; Mon, 1 Feb 2016 15:23:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206820] [ext2fs] Panic when writing to ext3fs mounted as ext2fs Date: Mon, 01 Feb 2016 15:23:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ardovm@yahoo.it X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 15:23:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206820 --- Comment #4 from Arrigo Marchiori --- Running e2fsck on the md(4)-backed file, after reboot: # e2fsck /dev/md0s1 e2fsck 1.42.13 (17-May-2015) /dev/md0s1 was not cleanly unmounted, check forced. Pass 1: Checking inodes, blocks, and sizes Inode 30721, i_size is 24, should be 1024. Fix? yes Inode 49154 is in use, but has dtime set. Fix? yes Inode 110593, i_size is 24, should be 1024. Fix? yes Inode 126977, i_size is 24, should be 1024. Fix? yes Pass 2: Checking directory structure Pass 3: Checking directory connectivity Pass 4: Checking reference counts Pass 5: Checking group summary information Block bitmap differences: +123139 +(196867--196880) +197137 +(197426--1974= 45) +197702 +(197876--197888) +442627 +508163 Fix? yes Free blocks count wrong for group #15 (7934, counted=3D7933). Fix? yes Free blocks count wrong for group #24 (7934, counted=3D7885). Fix? yes Free blocks count wrong for group #54 (7934, counted=3D7933). Fix? yes Free blocks count wrong for group #62 (7934, counted=3D7933). Fix? yes Free blocks count wrong (497201, counted=3D497149). Fix? yes Inode bitmap differences: +30721 +(49153--49159) +110593 +126977 Fix? yes Free inodes count wrong for group #15 (2048, counted=3D2047). Fix? yes Directories count wrong for group #15 (0, counted=3D1). Fix? yes Free inodes count wrong for group #24 (2048, counted=3D2041). Fix? yes Directories count wrong for group #24 (0, counted=3D1). Fix? yes Free inodes count wrong for group #54 (2048, counted=3D2047). Fix? yes Directories count wrong for group #54 (0, counted=3D1). Fix? yes Free inodes count wrong for group #62 (2048, counted=3D2047). Fix? yes Directories count wrong for group #62 (0, counted=3D1). Fix? yes Free inodes count wrong (131061, counted=3D131051). Fix? yes /dev/md0s1: ***** FILE SYSTEM WAS MODIFIED ***** /dev/md0s1: 21/131072 files (9.5% non-contiguous), 27135/524284 blocks --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 16:01:44 2016 Return-Path: Delivered-To: freebsd-bugs@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 1A4FFA979F7 for ; Mon, 1 Feb 2016 16:01:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B6E991C for ; Mon, 1 Feb 2016 16:01:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11G1huA010484 for ; Mon, 1 Feb 2016 16:01:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206820] [ext2fs] Panic when writing to ext3fs mounted as ext2fs Date: Mon, 01 Feb 2016 16:01:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ardovm@yahoo.it X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 16:01:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206820 --- Comment #5 from Arrigo Marchiori --- FWIW, the problem is _not_ reproducible on my 10-RELEASE x86-64 machine: # uname -a FreeBSD myhost 10.1-RELEASE-p26 FreeBSD 10.1-RELEASE-p26 #0: Wed Jan 13 20:59:29 UTC 2016=20=20=20=20 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 16:37:33 2016 Return-Path: Delivered-To: freebsd-bugs@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 508B6A97646 for ; Mon, 1 Feb 2016 16:37:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 41E251C11 for ; Mon, 1 Feb 2016 16:37:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11GbXMU091058 for ; Mon, 1 Feb 2016 16:37:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206820] [ext2fs] Panic when writing to ext3fs mounted as ext2fs Date: Mon, 01 Feb 2016 16:37:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 16:37:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206820 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-fs@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 21:42:51 2016 Return-Path: Delivered-To: freebsd-bugs@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 E3C29A98313 for ; Mon, 1 Feb 2016 21:42:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4A852A1 for ; Mon, 1 Feb 2016 21:42:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11Lgpg6051593 for ; Mon, 1 Feb 2016 21:42:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206829] /usr/share/dtrace/toolkit/hotcpu perl Date: Mon, 01 Feb 2016 21:42:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: aduitsis@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 21:42:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206829 Bug ID: 206829 Summary: /usr/share/dtrace/toolkit/hotcpu perl Product: Base System Version: 10.2-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: aduitsis@gmail.com The /usr/share/dtrace/toolkit/hotcpu script has '/usr/bin/perl' as its interpreter. Of course, Perl is no longer in the Base System, so this should probably be changed to something like '/usr/bin/env perl'. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 22:06:53 2016 Return-Path: Delivered-To: freebsd-bugs@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 EC5B6A988F6 for ; Mon, 1 Feb 2016 22:06:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DCFF9DD5 for ; Mon, 1 Feb 2016 22:06:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11M6rdX028748 for ; Mon, 1 Feb 2016 22:06:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 205359] Add support for Advantech PCI-1602 rev B board and PCI-1603 Date: Mon, 01 Feb 2016 22:06:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: janm@transactionware.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 22:06:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D205359 --- Comment #3 from janm@transactionware.com --- (In reply to Marius Strobl from comment #2) Thanks for the update Marius. I will import into our tree and test. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Feb 1 22:35:15 2016 Return-Path: Delivered-To: freebsd-bugs@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 ED925A76481 for ; Mon, 1 Feb 2016 22:35:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DECC7323 for ; Mon, 1 Feb 2016 22:35:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u11MZFHH084814 for ; Mon, 1 Feb 2016 22:35:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206829] /usr/share/dtrace/toolkit/hotcpu perl Date: Mon, 01 Feb 2016 22:35:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 22:35:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206829 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |markj@FreeBSD.org, | |ngie@FreeBSD.org --- Comment #1 from NGie Cooper --- There isn't a hotcpu dtrace script in the tree. Granted, there are a number= of DTrace scripts in cddl/... that still reference /usr/bin/perl, but this was= n't one of them (and Mark fixed a few on head). % find . -name \*hotcpu\* % git log -n 1 commit 023162425ee9a240c7424fcbb8e0a96f6bebfaf5 Author: glebius Date: Thu Jan 14 22:48:13 2016 +0000 Fix typo. Approved by: so Notes: svn path=3D/releng/10.2/; revision=3D294052 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 07:26:43 2016 Return-Path: Delivered-To: freebsd-bugs@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 D9843A97EDB for ; Tue, 2 Feb 2016 07:26:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1E7017CA for ; Tue, 2 Feb 2016 07:26:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u127QhnI060748 for ; Tue, 2 Feb 2016 07:26:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206836] Random Lockups of partition /var Date: Tue, 02 Feb 2016 07:26:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: schmidt@ze.tum.de X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 07:26:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206836 Bug ID: 206836 Summary: Random Lockups of partition /var Product: Base System Version: 10.2-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: schmidt@ze.tum.de CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org I have 64 Servers Running on Supermicro blades. Most of them running 10.1-release. We are in the process of updating them to 10.2-release.=20 On all updated systems the /var partition locks after 20 to 50 days. Servic= es on the system start to fail. Login Block. On Preopen Connections I can acce= ss all other partitions just fine. Just accessing anything on /var blocks the whole process without return.=20 There are no massages on the console. We have to force power off to restart= the system.=20 All partitions where SU+Journaling. I've deactivated journaling on all partitions but the lockups are still coming.=20 On all systems are different services. (MySQL, Jenkins, Apache).=20 The same Hardware was working and still is working on 10.1-Release an earli= er releases just fine.=20 Hostname dd.mm.yyyy hh:mm Actions taken=20 ----------------------------------------------- amnesix 7. 9.2015 10:30 Reboot miraculix 29. 9.2015 03:00 Reboot amnesix 18.10.2015 05:00 Reboot amnesix 29.11.2015 16:00 Reboot. Disabled journaling olympia 12.12.2015 11:00 Reboot. Disabled journaling devzope 17.12.2015 04:00 Reboot. Disabled journaling miraculix 22.12.2015 01:20 Reboot. Disabled journaling olympia 30.12.2015 19:00 Reboot amnesix 9. 1.2016 02:00 Reboot. fsck -f on all partitions delphi 28. 1.2016 05:40 Reboot. Disabled journaling. fsck -f devzope 30. 1.2016 04:50 Reboot. fsck -f devzope 1. 2.2016 01:45 Reboot. fsck -f miraculix 2. 2.2016 06:30 Reboot. fsck -f The symptoms are always the same. After the Power down and reboot the Raid = is resyncing but the system is working just fine until the next lookup.=20 I've attached the dmesg.boot of one of the servers. They are all identical. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 07:30:04 2016 Return-Path: Delivered-To: freebsd-bugs@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 A064EA980CD for ; Tue, 2 Feb 2016 07:30:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 91CDD18E7 for ; Tue, 2 Feb 2016 07:30:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u127U4KH065516 for ; Tue, 2 Feb 2016 07:30:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206836] Random Lockups of partition /var Date: Tue, 02 Feb 2016 07:30:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: schmidt@ze.tum.de X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 07:30:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206836 schmidt@ze.tum.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |schmidt@ze.tum.de --- Comment #1 from schmidt@ze.tum.de --- Created attachment 166418 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166418&action= =3Dedit dmesg.boot of one of the servers --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 08:02:31 2016 Return-Path: Delivered-To: freebsd-bugs@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 CB7D1A98F55 for ; Tue, 2 Feb 2016 08:02:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BAFD3E7E for ; Tue, 2 Feb 2016 08:02:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u1282VsQ071411 for ; Tue, 2 Feb 2016 08:02:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206829] /usr/share/dtrace/toolkit/hotcpu perl Date: Tue, 02 Feb 2016 08:02:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: aduitsis@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 08:02:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206829 --- Comment #2 from Athanasios Douitsis --- I beg your pardon, I miss-typed hotcpu instead of hotkernel, which is the correct. But I can see that you have already gone further, many thanks! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 09:29:32 2016 Return-Path: Delivered-To: freebsd-bugs@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 1AF8AA97EC0 for ; Tue, 2 Feb 2016 09:29:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E7FDA1112 for ; Tue, 2 Feb 2016 09:29:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u129TVTj026757 for ; Tue, 2 Feb 2016 09:29:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206810] 11.0-CURRENT/clang380-import for powerpc (32-bit): signal handlers given insufficient stack alignment Date: Tue, 02 Feb 2016 09:29:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markmi@dsl-only.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 09:29:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206810 --- Comment #1 from Mark Millard --- I tried the following change on/for the powerpc (32-bit) PowerMac that I use Index: /usr/src/sys/powerpc/powerpc/sigcode32.S =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- /usr/src/sys/powerpc/powerpc/sigcode32.S (revision 294962) +++ /usr/src/sys/powerpc/powerpc/sigcode32.S (working copy) @@ -45,9 +45,9 @@ */ .globl CNAME(sigcode32),CNAME(szsigcode32) CNAME(sigcode32): - addi 1,1,-20 /* reserved space for callee */ + addi 1,1,-32 /* reserved space for callee */ blrl - addi 3,1,20+SF_UC /* restore sp, and get &frame->sf_u= c */ + addi 3,1,32+SF_UC /* restore sp, and get &frame->sf_u= c */ li 0,SYS_sigreturn sc /* sigreturn(scp) */ li 0,SYS_exit and the results were: A) "info frame" in gdb shows signal handlers are now started with 16-byte aligned stack frames. and B) The clang 3.8.0 compiled __vfprintf segmentation faults in libc/stdio library code during signal handlers no longer happen because the alignment matches the code requirements. (Before 2014 it was -16 and 16 instead of -20 and 20, but 16 was too small = of a space. The change to -20 and 20 fixed that but no longer produced aligned s= tack frames: It should have gone from -16 and 16 to -32 and 32 to maintain 16 by= te stack alignment while allocating more space.) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 11:17:53 2016 Return-Path: Delivered-To: freebsd-bugs@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 504B8A99A0E for ; Tue, 2 Feb 2016 11:17:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 41D011352 for ; Tue, 2 Feb 2016 11:17:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12BHqqq024065 for ; Tue, 2 Feb 2016 11:17:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206829] cddl/contrib/dtracetoolkit/hotkernel has '/usr/bin/perl' as its interpreter Date: Tue, 02 Feb 2016 11:17:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 11:17:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206829 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|/usr/share/dtrace/toolkit/h |cddl/contrib/dtracetoolkit/ |otcpu perl |hotkernel has | |'/usr/bin/perl' as its | |interpreter --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 11:23:53 2016 Return-Path: Delivered-To: freebsd-bugs@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 247D1A99BF2 for ; Tue, 2 Feb 2016 11:23:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1633518A7 for ; Tue, 2 Feb 2016 11:23:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12BNqGk038909 for ; Tue, 2 Feb 2016 11:23:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206812] each man invocation leads to the mandoc crash Date: Tue, 02 Feb 2016 11:23:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: junovitch@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 11:23:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206812 Jason Unovitch changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |junovitch@freebsd.org --- Comment #1 from Jason Unovitch --- Can you check again after updating past r294261 or just applying the follow= ing commit? r294261 | delphij | 2016-01-18 08:52:09 +0000 (Mon, 18 Jan 2016) | 8 lines MFV r294260: Fix a wrong assertion in mandoc by applying OpenBSD main.c,v 1.170 (florian): Unbreak reading from stdin after recent parse() restructuring. OK schwarze@ --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 12:36:18 2016 Return-Path: Delivered-To: freebsd-bugs@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 A43F8A76800 for ; Tue, 2 Feb 2016 12:36:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 96417C09 for ; Tue, 2 Feb 2016 12:36:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12CaIo0088218 for ; Tue, 2 Feb 2016 12:36:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206845] Change the newsyslog.conf to be alphabetical D5160 Date: Tue, 02 Feb 2016 12:36:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: chris@bsdjunk.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 12:36:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206845 Bug ID: 206845 Summary: Change the newsyslog.conf to be alphabetical D5160 Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Many People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: chris@bsdjunk.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 166432 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166432&action= =3Dedit patch file You have : /var/log/daily.log 640 7 * @T00 JN /var/log/debug.log 600 7 100 * JC then later on you have: /var/log/ppp.log root:network 640 3 100 * JC /var/log/devd.log 644 3 100 * JC it should "I believe" look like this: /var/log/daily.log 640 7 * @T00 JN /var/log/debug.log 600 7 100 * JC /var/log/devd.log 644 3 100 * JC https://reviews.freebsd.org/D5160 Accepted by imp@ --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 16:09:14 2016 Return-Path: Delivered-To: freebsd-bugs@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 745F9A981F3 for ; Tue, 2 Feb 2016 16:09:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6253611A9 for ; Tue, 2 Feb 2016 16:09:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12G9EMH055321 for ; Tue, 2 Feb 2016 16:09:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206810] 11.0-CURRENT/clang380-import for powerpc (32-bit): signal handlers given insufficient stack alignment Date: Tue, 02 Feb 2016 16:09:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jhibbits@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jhibbits@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 16:09:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206810 Justin Hibbits changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jhibbits@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |jhibbits@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 17:22:16 2016 Return-Path: Delivered-To: freebsd-bugs@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 52E23A99EFD for ; Tue, 2 Feb 2016 17:22:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 381D82EF for ; Tue, 2 Feb 2016 17:22:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12HMGSw042161 for ; Tue, 2 Feb 2016 17:22:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206855] NFS errors from ZFS backed file system when server under load Date: Tue, 02 Feb 2016 17:22:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: vivek@khera.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 17:22:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206855 Bug ID: 206855 Summary: NFS errors from ZFS backed file system when server under load Product: Base System Version: 10.2-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: vivek@khera.org I posted a question about NFS errors (unable to read directories or files) = when the NFS server comes under high load, and at least two other people reported that they observe the same types of failures. The thread is at https://lists.freebsd.org/pipermail/freebsd-questions/2016-February/270292.= html This might be related to bug #132068 It seems that using NFS to share a ZFS data set is not so stable under high load. Here's my original question/bug report: I have a handful of servers at my data center all running FreeBSD 10.2. On = one of them I have a copy of the FreeBSD sources shared via NFS. When this serv= er is running a large poudriere run re-building all the ports I need, the clie= nts' NFS mounts become unstable. That is, the clients keep getting read failures. The interactive performance of the NFS server is just fine, however. The lo= cal file system is a ZFS mirror. What could be causing NFS to be unstable in this situation? Specifics: Server "lorax" FreeBSD 10.2-RELEASE-p7 kernel locally compiled, with NFS se= rver and ZFS as dynamic kernel modules. 16GB RAM, Xeon 3.1GHz quad processor. The directory /u/lorax1 a ZFS dataset on a mirrored pool, and is NFS export= ed via the ZFS exports file. I put the FreeBSD sources on this dataset and sym= link to /usr/src. Client "bluefish" FreeBSD 10.2-RELEASE-p5 kernel locally compiled, NFS clie= nt built in to kernel. 32GB RAM, Xeon 3.1GHz quad processor (basically same hardware but more RAM). The directory /n/lorax1 is NFS mounted from lorax via autofs. The NFS optio= ns are "intr,nolockd". /usr/src is symlinked to the sources in that NFS mount. What I observe: [lorax]~% cd /usr/src [lorax]src% svn status [lorax]src% w 9:12AM up 12 days, 19:19, 4 users, load averages: 4.43, 4.45, 3.61 USER TTY FROM LOGIN@ IDLE WHAT vivek pts/0 vick.int.kcilink.com 8:44AM - tmux: client (/= tmp/ vivek pts/1 tmux(19747).%0 8:44AM 19 sed y%*+%pp%;s%[= ^_a vivek pts/2 tmux(19747).%1 8:56AM - w vivek pts/3 tmux(19747).%2 8:56AM - slogin bluefish-= prv [lorax]src% pwd /u/lorax1/usr10/src So right now the load average is more than 1 per processor on lorax. I can quite easily run "svn status" on the source directory, and the interactive performance is pretty snappy for editing local files and navigating around = the file system. On the client: [bluefish]~% cd /usr/src [bluefish]src% pwd /n/lorax1/usr10/src [bluefish]src% svn status svn: E070008: Can't read directory '/n/lorax1/usr10/src/contrib/sqlite3': Partial results are valid but processing is incomplete [bluefish]src% svn status svn: E070008: Can't read directory '/n/lorax1/usr10/src/lib/libfetch': Part= ial results are valid but processing is incomplete [bluefish]src% svn status svn: E070008: Can't read directory '/n/lorax1/usr10/src/release/picobsd/tinyware/msg': Partial results are val= id but processing is incomplete [bluefish]src% w 9:14AM up 93 days, 23:55, 1 user, load averages: 0.10, 0.15, 0.15 USER TTY FROM LOGIN@ IDLE WHAT vivek pts/0 lorax-prv.kcilink.com 8:56AM - w [bluefish]src% df . Filesystem 1K-blocks Used Avail Capacity Mounted on lorax-prv:/u/lorax1 932845181 6090910 926754271 1% /n/lorax1 What I see is more or less random failures to read the NFS volume. When the server is not so busy running poudriere builds, the client never has any failures. I also observe this kind of failure doing buildworld or installworld on the client when the server is busy -- I get strange random failures reading the files causing the build or install to fail. My workaround is to not do build/installs on client machines when the NFS server is busy doing large jobs like building all packages, but there is definitely something wrong here I'd like to fix. I observe this on all the local NFS clients. I rebooted the server before to try to clear this up but= it did not fix it. My intuition is pointing to some sort of race condition with ZFS and NFS, b= ut digging deeper into that is well beyond my pay grade. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 18:20:51 2016 Return-Path: Delivered-To: freebsd-bugs@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 44315A995FF for ; Tue, 2 Feb 2016 18:20:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 341899BE for ; Tue, 2 Feb 2016 18:20:51 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12IKoHk037583 for ; Tue, 2 Feb 2016 18:20:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206573] Improper userland pointer handling in aacraid Date: Tue, 02 Feb 2016 18:20:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: needs-qa, patch, security X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: landergriffith+freebsdbugzilla@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable9? mfc-stable10? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 18:20:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206573 landaire changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |landergriffith+freebsdbugzi | |lla@gmail.com --- Comment #2 from landaire --- This bug is also present in the `aac` (not aacraid) code in the same functi= on: here: /* Retrieve correct SG entries. */ if (fibsize =3D=3D (sizeof(struct aac_srb) + srbcmd->sg_map.SgCount * sizeof(struct aac_sg_entry))) { sge =3D srbcmd->sg_map.SgEntry; sge64 =3D NULL; srb_sg_bytecount =3D sge->SgByteCount; srb_sg_address =3D (void *)(uintptr_t)sge->SgAddress; } and here: https://github.com/freebsd/freebsd/blob/bac8688b17d735d252ec75a94df67384938= f3f9b/sys/dev/aac/aac.c#L3114-L3122 #ifdef __amd64__ else if (fibsize =3D=3D (sizeof(struct aac_srb) + srbcmd->sg_map.SgCount * sizeof(struct aac_sg_entry64))) { sge =3D NULL; sge64 =3D (struct aac_sg_entry64 *)srbcmd->sg_map.SgEntry; srb_sg_bytecount =3D sge64->SgByteCount; ... } #endif --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 18:21:45 2016 Return-Path: Delivered-To: freebsd-bugs@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 26907A99704 for ; Tue, 2 Feb 2016 18:21:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 16A5AAA6 for ; Tue, 2 Feb 2016 18:21:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12ILiUZ040450 for ; Tue, 2 Feb 2016 18:21:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206573] Improper userland pointer handling in aacraid Date: Tue, 02 Feb 2016 18:21:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: needs-qa, patch, security X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: landergriffith+freebsdbugzilla@gmail.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable9? mfc-stable10? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 18:21:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206573 --- Comment #3 from landaire --- Removed the link for the first chunk by accident: https://github.com/freebsd/freebsd/blob/bac8688b17d735d252ec75a94df67384938= f3f9b/sys/dev/aac/aac.c#L3104-L3110 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 19:50:59 2016 Return-Path: Delivered-To: freebsd-bugs@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 2D172A9981C for ; Tue, 2 Feb 2016 19:50:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1DB4F8D9 for ; Tue, 2 Feb 2016 19:50:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12JowdK056509 for ; Tue, 2 Feb 2016 19:50:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206762] -Wtautilogical-pointer-compare issues with drm(4) code Date: Tue, 02 Feb 2016 19:50:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dim@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 19:50:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206762 --- Comment #5 from Dimitry Andric --- Some people add this type of null check as a sort of "defensive programming" practice. For example, if the obj->base member was a pointer instead of an array, you would definitely need such a null check. So maybe the rationale= is 'better safe than sorry'... --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 22:49:29 2016 Return-Path: Delivered-To: freebsd-bugs@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 7D41CA994E7 for ; Tue, 2 Feb 2016 22:49:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F1E815BB for ; Tue, 2 Feb 2016 22:49:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12MnSMb046504 for ; Tue, 2 Feb 2016 22:49:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206855] NFS errors from ZFS backed file system when server under load Date: Tue, 02 Feb 2016 22:49:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: rmacklem@uoguelph.ca X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 22:49:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206855 rmacklem@uoguelph.ca changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rmacklem@uoguelph.ca --- Comment #1 from rmacklem@uoguelph.ca --- As someone else suggested, please try adding "-S" to your mountd flags. If that doesn't fix the problem, I would suggest removing "intr" from the mount options, just in case something is posting a signal to the process (which can cause the read to fail with EINTR when "intr" is specified). --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 23:08:13 2016 Return-Path: Delivered-To: freebsd-bugs@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 4AF4EA99CFC for ; Tue, 2 Feb 2016 23:08:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D33F63C for ; Tue, 2 Feb 2016 23:08:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12N8COm022582 for ; Tue, 2 Feb 2016 23:08:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206855] NFS errors from ZFS backed file system when server under load Date: Tue, 02 Feb 2016 23:08:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 23:08:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206855 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-fs@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Feb 2 23:08:28 2016 Return-Path: Delivered-To: freebsd-bugs@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 23FF7A99D3A for ; Tue, 2 Feb 2016 23:08:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 164F8754 for ; Tue, 2 Feb 2016 23:08:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u12N8RKB022905 for ; Tue, 2 Feb 2016 23:08:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206845] Change the newsyslog.conf to be alphabetical D5160 Date: Tue, 02 Feb 2016 23:08:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Feb 2016 23:08:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206845 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 00:08:49 2016 Return-Path: Delivered-To: freebsd-bugs@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 2DBAFA99697 for ; Wed, 3 Feb 2016 00:08:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 204A21B25 for ; Wed, 3 Feb 2016 00:08:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u1308mPX032663 for ; Wed, 3 Feb 2016 00:08:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206649] [PATCH] Common gestures for Cypress APA I2C touchpad Date: Wed, 03 Feb 2016 00:08:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: alexander.m.mishurov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback+ X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 00:08:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206649 Alexander Mishurov changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[PATCH] Common gestures for |[PATCH] Common gestures for |Cypress i2c touchpad |Cypress APA I2C touchpad --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 00:09:54 2016 Return-Path: Delivered-To: freebsd-bugs@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 BA1C9A996EA for ; Wed, 3 Feb 2016 00:09:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ACD481BB8 for ; Wed, 3 Feb 2016 00:09:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u1309sQJ072134 for ; Wed, 3 Feb 2016 00:09:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206649] [PATCH] Common gestures for Cypress APA I2C touchpad Date: Wed, 03 Feb 2016 00:09:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: alexander.m.mishurov@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback+ X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 00:09:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206649 --- Comment #2 from Alexander Mishurov --- External link to compile and change module. https://github.com/mishurov/double_down --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 07:53:58 2016 Return-Path: Delivered-To: freebsd-bugs@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 0D6C1A9988E for ; Wed, 3 Feb 2016 07:53:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D8CCF1471 for ; Wed, 3 Feb 2016 07:53:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u137rvKr035050 for ; Wed, 3 Feb 2016 07:53:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206876] ifconfig(8): Inconsistent behavior when creating and giving custom name to interface at the same time Date: Wed, 03 Feb 2016 07:53:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: marieheleneka@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 07:53:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206876 Bug ID: 206876 Summary: ifconfig(8): Inconsistent behavior when creating and giving custom name to interface at the same time Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: marieheleneka@gmail.com # uname -a FreeBSD venus 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r295136: Tue Feb 2 09:2= 7:29 CET 2016 root@venus:/usr/obj/usr/src/sys/GENERIC amd64 How to reproduce: # ifconfig tap create name teststuff tap0 ifconfig: ioctl SIOCSIFNAME (set name): Device not configured Expected behaviour: 1: ifconfig(8) should know the name of the newly created interface (tap0) a= nd change its name according to the 'name' parameter (teststuff).=20 2: It should echo the name provided in 'name' parameter (example: teststuff= ), unless it failed to change the name, in which case it should echo the automatically numbered name. (example: tap0) It currently does expected behavior 2, but not expected behavior 1. Workaround: (thanks to thoht on Freenode. Below syntax is for /bin/sh) # ifconfig $( ifconfig tap create ) name teststuff It works as expected when using the syntax: # ifconfig tap0 create name teststuff --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 08:42:38 2016 Return-Path: Delivered-To: freebsd-bugs@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 B1C88A9AD4C for ; Wed, 3 Feb 2016 08:42:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A24951C5 for ; Wed, 3 Feb 2016 08:42:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u138gc1i072126 for ; Wed, 3 Feb 2016 08:42:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206876] ifconfig(8): Inconsistent behavior when creating and giving custom name to interface at the same time Date: Wed, 03 Feb 2016 08:42:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: easy, needs-patch, needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: assigned_to keywords flagtypes.name cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 08:42:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206876 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org Keywords| |easy, needs-patch, needs-qa Flags| |mfc-stable10? CC| |koobs@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 14:32:15 2016 Return-Path: Delivered-To: freebsd-bugs@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 DA66EA9A719 for ; Wed, 3 Feb 2016 14:32:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B0BD21751 for ; Wed, 3 Feb 2016 14:32:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u13EWFMU039390 for ; Wed, 3 Feb 2016 14:32:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206882] AMDTEMP.C Fixed to work on AMD GX-412TC SOC (Puma) Date: Wed, 03 Feb 2016 14:32:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: hotdogbsd@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 14:32:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206882 Bug ID: 206882 Summary: AMDTEMP.C Fixed to work on AMD GX-412TC SOC (Puma) Product: Base System Version: 10.1-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: hotdogbsd@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 166496 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166496&action= =3Dedit diff file for 10.1-release amdtemp.c cheers :) G'day, I've patched amdtemp.c to work on AMD GX-412TC SOC's (Puma). It's a two line code fix that simply adds relevant ID's.=20 attached is the diff. This patch applies to 10.2 and I assume 10.3 also.=20 --- amdtemp.c 2014-03-28 19:55:34.000000000 +1100 +++ amdtempnew.c 2016-01-31 04:49:12.000000000 +1100 @@ -32,7 +32,7 @@ */ #include -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: releng/10.1/sys/dev/amdtemp/amdtemp.c 263869 2014-03-28 08:55:34Z brueffer $"); #include #include @@ -80,6 +80,7 @@ #define DEVICEID_AMD_MISC14 0x1703 #define DEVICEID_AMD_MISC15 0x1603 #define DEVICEID_AMD_MISC16 0x1533 +#define DEVICEID_AMD_MISC16_X3 0X1583 static struct amdtemp_product { uint16_t amdtemp_vendorid; @@ -92,6 +93,7 @@ { VENDORID_AMD, DEVICEID_AMD_MISC14 }, { VENDORID_AMD, DEVICEID_AMD_MISC15 }, { VENDORID_AMD, DEVICEID_AMD_MISC16 }, + { VENDORID_AMD, DEVICEID_AMD_MISC16_X3 }, { 0, 0 } }; --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 15:48:13 2016 Return-Path: Delivered-To: freebsd-bugs@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 B5B7DA9A579 for ; Wed, 3 Feb 2016 15:48:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6482A00 for ; Wed, 3 Feb 2016 15:48:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u13FmDP4071792 for ; Wed, 3 Feb 2016 15:48:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206882] AMDTEMP.C Fixed to work on AMD GX-412TC SOC (Puma) Date: Wed, 03 Feb 2016 15:48:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 15:48:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206882 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 18:14:29 2016 Return-Path: Delivered-To: freebsd-bugs@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 1DCC4A9A1E1 for ; Wed, 3 Feb 2016 18:14:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F0061166 for ; Wed, 3 Feb 2016 18:14:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u13IESvU019224 for ; Wed, 3 Feb 2016 18:14:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206887] Unbound 1.5.7 has syntax errors in its support scripts. Date: Wed, 03 Feb 2016 18:14:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: peter@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 18:14:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206887 Bug ID: 206887 Summary: Unbound 1.5.7 has syntax errors in its support scripts. Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: peter@FreeBSD.org /usr/sbin/unbound-control-setup changed a=20 cat << EOF > request.cfg .. things ... EOF construct into echo "thing1\n" > request.cfg echo "thing2\n" >> request.cfg ... The problem is, this is echo, not printf. This causes openssl to reject the request.cfg file. Observe with "/usr/sbin/unbound-control-setup -d /tmp" You will be rewarded with an openssl syntax error. Remove the "\n" from both blocks of echo and it'll work. This breaks the freebsd cluster node bootstrap process. I note that the error appears to have been MFC'ed into 10-stable as well. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 18:21:52 2016 Return-Path: Delivered-To: freebsd-bugs@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 65D35A9A524 for ; Wed, 3 Feb 2016 18:21:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 555A415D8 for ; Wed, 3 Feb 2016 18:21:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u13ILqwp033706 for ; Wed, 3 Feb 2016 18:21:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206887] Unbound 1.5.7 has syntax errors in its support scripts. Date: Wed, 03 Feb 2016 18:21:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: peter@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 18:21:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206887 --- Comment #1 from Peter Wemm --- Created attachment 166508 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166508&action= =3Dedit Typo fix --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Feb 3 19:20:53 2016 Return-Path: Delivered-To: freebsd-bugs@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 848C7A9A697 for ; Wed, 3 Feb 2016 19:20:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BE04142B for ; Wed, 3 Feb 2016 19:20:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u13JKrxa085842 for ; Wed, 3 Feb 2016 19:20:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206899] [ld-elf] core dump when linking against x11/nvidia-driver's libGL.so and another library that links against libthr.so Date: Wed, 03 Feb 2016 19:20:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: dbn@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Feb 2016 19:20:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206899 Bug ID: 206899 Summary: [ld-elf] core dump when linking against x11/nvidia-driver's libGL.so and another library that links against libthr.so Product: Base System Version: 10.2-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: dbn@FreeBSD.org CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org I believe this to be the root cause for bug #205149. I will be committing a work-around that will fix that bug however the underlying issue still remai= ns.=20=20 I'm not sure if this is a bug with ld-elf or x11/nvidia-driver however given that this is not an issue with Linux I am opting for the former.=20=20 I think the best wau to explain the bug is with a (reproducable) demonstrat= ion: > sudo pkg install -y nvidia-driver > /dev/null > touch libtest.c > cc -shared -o libtest.so -lthr libtest.c > echo 'int main(int argc, char **argv) { return 0; }' > test.c > cc -o test -L/usr/local/lib -L. -ltest -lGL test.c > env LD_LIBRARY_PATH=3D. ./test Segmentation fault (core dumped) > gdb test test.core=20 GNU gdb 6.1.1 [FreeBSD] (gdb) bt #0 0x000000080060b2a2 in _rtld_is_dlopened () from /libexec/ld-elf.so.1 #1 0x0000000800604c8d in _r_debug_postinit () from /libexec/ld-elf.so.1 #2 0x000000080060246d in .text () from /libexec/ld-elf.so.1 #3 0x0000000802d3a365 in _nv003glcore () from /usr/local/lib/libnvidia-glcore.so.1 #4 0x000000080299e690 in _nv023glcore () from /usr/local/lib/libnvidia-glcore.so.1 #5 0x0000000802d1effc in _nv015glcore () from /usr/local/lib/libnvidia-glcore.so.1 #6 0x0000000800aa64eb in glXCreateNewContext () from /usr/local/lib/libGL.= so.1 #7 0x0000000800a6ee5a in .init () from /usr/local/lib/libGL.so.1 #8 0x0000000800604a9f in r_debug_state () from /libexec/ld-elf.so.1 #9 0x00000008006040ee in __tls_get_addr () from /libexec/ld-elf.so.1 #10 0x0000000800602439 in .text () from /libexec/ld-elf.so.1 #11 0x0000000000000000 in ?? () --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 01:37:48 2016 Return-Path: Delivered-To: freebsd-bugs@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 2CF00A9ABE6 for ; Thu, 4 Feb 2016 01:37:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 11BC111AA for ; Thu, 4 Feb 2016 01:37:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u141bl0l036999 for ; Thu, 4 Feb 2016 01:37:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206904] tailq crash/nd inet6 Date: Thu, 04 Feb 2016 01:37:48 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ler@lerctr.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 01:37:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206904 Bug ID: 206904 Summary: tailq crash/nd inet6 Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: ler@lerctr.org Created attachment 166529 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166529&action= =3Dedit full core.txt Got the following panic: borg.lerctr.org dumped core - see /var/crash/vmcore.20 Tue Feb 2 20:59:14 CST 2016 FreeBSD borg.lerctr.org 11.0-CURRENT FreeBSD 11.0-CURRENT #4 r294926: Wed J= an 27 12:37:06 CST 2016 root@borg.lerctr.org:/usr/obj/usr/src/sys/VT-LER=20 amd64 panic: Bad tailq NEXT(0xffffffff81e8b5f8->tqh_last) !=3D NULL GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain condition= s. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"... Unread portion of the kernel message buffer: panic: Bad tailq NEXT(0xffffffff81e8b5f8->tqh_last) !=3D NULL cpuid =3D 4 KDB: stack backtrace: db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe2e02512= 2c0 vpanic() at vpanic+0x182/frame 0xfffffe2e02512340 panic() at panic+0x43/frame 0xfffffe2e025123a0 nd6_ra_input() at nd6_ra_input+0x13da/frame 0xfffffe2e02512680 icmp6_input() at icmp6_input+0x97e/frame 0xfffffe2e02512820 ip6_input() at ip6_input+0xc3c/frame 0xfffffe2e02512900 netisr_dispatch_src() at netisr_dispatch_src+0x81/frame 0xfffffe2e02512960 ether_demux() at ether_demux+0x15e/frame 0xfffffe2e02512990 ether_nh_input() at ether_nh_input+0x344/frame 0xfffffe2e025129d0 netisr_dispatch_src() at netisr_dispatch_src+0x81/frame 0xfffffe2e02512a30 ether_input() at ether_input+0x4f/frame 0xfffffe2e02512a60 if_input() at if_input+0xa/frame 0xfffffe2e02512a70 em_rxeof() at em_rxeof+0x2f5/frame 0xfffffe2e02512ae0 em_handle_que() at em_handle_que+0x40/frame 0xfffffe2e02512b20 taskqueue_run_locked() at taskqueue_run_locked+0xf0/frame 0xfffffe2e02512b80 taskqueue_thread_loop() at taskqueue_thread_loop+0x88/frame 0xfffffe2e02512= bb0 fork_exit() at fork_exit+0x84/frame 0xfffffe2e02512bf0 fork_trampoline() at fork_trampoline+0xe/frame 0xfffffe2e02512bf0 --- trap 0, rip =3D 0, rsp =3D 0, rbp =3D 0 --- Uptime: 8h40m34s Dumping 3340 out of 64467 MB:..1%..11%..21%..31%..41%..51%..61%..71%..81%..= 91% core *IS* available. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 01:38:29 2016 Return-Path: Delivered-To: freebsd-bugs@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 A5EE5A9AC45 for ; Thu, 4 Feb 2016 01:38:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 97815121D for ; Thu, 4 Feb 2016 01:38:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u141cTtm037871 for ; Thu, 4 Feb 2016 01:38:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206904] tailq crash/nd inet6 Date: Thu, 04 Feb 2016 01:38:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ler@lerctr.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 01:38:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206904 --- Comment #1 from Larry Rosenman --- I can reliably reproduce this by rebooting my pfSense router that is doing = the rtadv's. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 12:17:16 2016 Return-Path: Delivered-To: freebsd-bugs@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 509B8A9CE48 for ; Thu, 4 Feb 2016 12:17:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4269B75E for ; Thu, 4 Feb 2016 12:17:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14CHGW7063306 for ; Thu, 4 Feb 2016 12:17:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206921] Setting laggproto fails on 11.0-CURRENT (SIOCSLAGG: Protocol not supported) Date: Thu, 04 Feb 2016 12:17:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: pushkarbk@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 12:17:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206921 Bug ID: 206921 Summary: Setting laggproto fails on 11.0-CURRENT (SIOCSLAGG: Protocol not supported) Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: pushkarbk@gmail.com This bug has been found while configuring laggproto none on lagg bundle.=20 ## Command ## ifconfig lagg0 laggproto none ## Expected output ## Command should succeed and laggproto on lagg bundle should be set to none. Test laggproto using 'ifconfig lagg0' command.=20 Marcelo Araujo has suggested following patch for 11.0-CURRENT https://reviews.freebsd.org/D5076 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 12:33:15 2016 Return-Path: Delivered-To: freebsd-bugs@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 0BC46A9A7BC for ; Thu, 4 Feb 2016 12:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F15511307 for ; Thu, 4 Feb 2016 12:33:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14CXE87056352 for ; Thu, 4 Feb 2016 12:33:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206921] Setting laggproto fails on 11.0-CURRENT (SIOCSLAGG: Protocol not supported) Date: Thu, 04 Feb 2016 12:33:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: araujo@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: araujo@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 12:33:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206921 Marcelo Araujo changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |araujo@FreeBSD.org Status|New |In Progress --- Comment #1 from Marcelo Araujo --- I will take it... I'm following it together with Pushkar. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 12:56:06 2016 Return-Path: Delivered-To: freebsd-bugs@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 9F8CAA9B2A5 for ; Thu, 4 Feb 2016 12:56:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77CE4289 for ; Thu, 4 Feb 2016 12:56:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14Cu69R006108 for ; Thu, 4 Feb 2016 12:56:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206923] lock order reversal, vfs_bio.c:3476 ufs_dirhash.c:281 Date: Thu, 04 Feb 2016 12:56:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: freebsd@tim.thechases.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 12:56:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206923 Bug ID: 206923 Summary: lock order reversal, vfs_bio.c:3476 ufs_dirhash.c:281 Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: freebsd@tim.thechases.com I don't have an easy way to capture the back-trace and pull it from the mac= hine right now, so I've attached a screen-cap and hand-transcribed salient bits: witness_debugger+0x70 witness_checkorder+0xe71 _sx_xlock+0x72 ufsdirhash_add+0x3d ufs_direnter+0x62f ufs_makeinode+0x5f3 ufs_create+0x2d VOP_CREATE_APV+0xf1 vn_open_cred+0x2f8 kern_openat+0x25c amd64_syscall+0x2db Xfast_syscall+0xfb The system was a fresh install of CURRENT downloaded last night, put on a D= ell Inspiron i1420 with pretty default configuration (one whole disk GPT partit= ion with a boot, / and swap configuration) mostly just to test some jail stuff.= =20 Only new packages installed were zip/unzip/bunzip/bunzip2 so I could uncomp= ress the Handbook (html-split). It was triggered in /usr/share/doc/handbook/html (the last two subdirectories being subdirectories I'd created to house the handbook). The error was triggered by executing "tar xf book.html-split.ta= r" --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 12:59:44 2016 Return-Path: Delivered-To: freebsd-bugs@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 D4BB3A9B3CB for ; Thu, 4 Feb 2016 12:59:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C5EB839E for ; Thu, 4 Feb 2016 12:59:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14CxirN010570 for ; Thu, 4 Feb 2016 12:59:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206923] lock order reversal, vfs_bio.c:3476 ufs_dirhash.c:281 Date: Thu, 04 Feb 2016 12:59:44 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: freebsd@tim.thechases.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 12:59:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206923 Tim Chase changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd@tim.thechases.com --- Comment #1 from Tim Chase --- Created attachment 166558 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166558&action= =3Dedit Screen capture of error, traceback and output of "uname -a" For some reason the original didn't attach when creating the case, so I shr= ank it to 30% to see if it was a size issue and am retrying the attachment. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 13:10:00 2016 Return-Path: Delivered-To: freebsd-bugs@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 63D28A9B76A for ; Thu, 4 Feb 2016 13:10:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 555E4AD5 for ; Thu, 4 Feb 2016 13:10:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14DA0L0064009 for ; Thu, 4 Feb 2016 13:10:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206924] X server refuses to die when shutdown command is submitted. Date: Thu, 04 Feb 2016 13:10:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: takumi001.m@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 13:10:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206924 Bug ID: 206924 Summary: X server refuses to die when shutdown command is submitted. Product: Base System Version: 10.2-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Many People Priority: --- Component: conf Assignee: freebsd-bugs@FreeBSD.org Reporter: takumi001.m@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org shutdown -p/h now works well without X. The same command hangs with X running. /var/log/xorg.0.log describes as follows. (WW) config/devd: devd socket is lost (EE) config/devd: fail to connect to devd I hope this is not a bug, and only some configuration can help. CPU: i7-4771 motherboard: BIOSTER HiFi H87S3+ --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 16:03:50 2016 Return-Path: Delivered-To: freebsd-bugs@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 245ADA73400 for ; Thu, 4 Feb 2016 16:03:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1515CAE4 for ; Thu, 4 Feb 2016 16:03:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14G3nWC054113 for ; Thu, 4 Feb 2016 16:03:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206923] lock order reversal, vfs_bio.c:3476 ufs_dirhash.c:281 Date: Thu, 04 Feb 2016 16:03:50 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: freebsd@tim.thechases.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: rep_platform Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 16:03:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206923 Tim Chase changed: What |Removed |Added ---------------------------------------------------------------------------- Hardware|Any |amd64 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 18:38:30 2016 Return-Path: Delivered-To: freebsd-bugs@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 6A4B4A9B58D for ; Thu, 4 Feb 2016 18:38:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B6F01DEE for ; Thu, 4 Feb 2016 18:38:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14IcUQP001232 for ; Thu, 4 Feb 2016 18:38:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206927] Bad semaphore return code on collision Date: Thu, 04 Feb 2016 18:38:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: karl@denninger.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 18:38:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206927 Bug ID: 206927 Summary: Bad semaphore return code on collision Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: karl@denninger.net Attempting to upgrade Postgres from 9.4.5 to 9.5.0 I ran into the following error: $ initdb -D data-default ... creating template1 database in data-default/base/1 ... FATAL: could not create semaphores: Invalid argument DETAIL: Failed system call was semget(2, 17, 03600). This appears to be an incorrect return; semaphore key "2" is indeed in use = but by a different, unrelated process (the web server.) This is what Tom Lane from Postgres had to say about their code, which appe= ars to make sense: ******************** from postgres mailing list *************** Hmm. On my Linux box, "man semget" says EINVAL means EINVAL nsems is less than 0 or greater than the limit on the number= of semaphores per semaphore set (SEMMSL), or a semaphore set cor= re- sponding to key already exists, and nsems is larger than = the number of semaphores in that set. which agrees with the POSIX spec. Is FreeBSD the same? Proceeding on the assumption that it is ... 17 is the same nsems value we've been using for donkey's years, so the SEMMSL aspect of this seems unlikely to apply; what presumably is happening is a collision with an existing semaphore's key. Our code is prepared for that, but it expects a different error code in such cases, either EEXIST or EACCES: /* * Fail quietly if error indicates a collision with existing set. O= ne * would expect EEXIST, given that we said IPC_EXCL, but perhaps we * could get a permission violation instead? Also, EIDRM might occ= ur * if an old set is slated for destruction but not gone yet. */ It sounds like your kernel is returning EINVAL in preference to any of those codes, which would be pretty broken. I do not want to make our code treat EINVAL as meaning we should retry with a different key, because if the problem is indeed the SEMMSL limit, we'd be in an infinite loop. You can probably get past this for the moment if you can remove the semaphore set with key 2, but I'd advise filing a FreeBSD kernel bug about their choice of errno. ********** end *********** Indeed our (FreeBSD) man page says: The semget() system call will fail if: [EACCES] Access permission failure. [EEXIST] IPC_CREAT and IPC_EXCL were specified, and a semaph= ore set corresponding to key already exists. [EINVAL] The number of semaphores requested exceeds the syst= em imposed maximum per set. [ENOSPC] Insufficiently many semaphores are available. [ENOSPC] The kernel could not allocate a struct semid_ds. [ENOENT] No semaphore set was found corresponding to key, and IPC_CREAT was not specified. EINVAL is an incorrect return under this circumstance; EEXIST appears to be= the expected returned error code. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 21:53:27 2016 Return-Path: Delivered-To: freebsd-bugs@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 95797A9CF14 for ; Thu, 4 Feb 2016 21:53:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83D96C6D for ; Thu, 4 Feb 2016 21:53:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14LrRvq057619 for ; Thu, 4 Feb 2016 21:53:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206932] 8111 card stops responding under high load in netmap mode Date: Thu, 04 Feb 2016 21:53:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: software-freebsd@interfasys.ch X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 21:53:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206932 Bug ID: 206932 Summary: 8111 card stops responding under high load in netmap mode Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: software-freebsd@interfasys.ch I've filed a bug report with netmap, but it seems the FreeBSD project is us= ing a different tree, so I'm reporting it here as well. I've reproduced the problem with * 10.1 * 10.2 * 10.2 with the netmap + re code from 11-CURRENT * 10.2 with netmap from the official repository (master) The problem is always the same Using pkt-gen and after 20 or so "batches", the card is overloaded and stops responding. I've tried various driver settings (polling, fast queue, no MSI, irq filtering, etc.), but nothing helped. There is a driver from Realtek, but it doesn't support netmap, so I've trie= d to patch it, but I've got exactly the same results as described in other netmap issues. Only one batch makes it. If I limit the rate, it fails after the to= tal of each batch matches the one of a default batch. One thing I've noticed in my tests is that the generic software implementat= ion (which works flawlessly, but eats a lot of CPU) has 1024 queues and when looking at the number of mbufs used with netstat, I can see that 1024 are in use. In dmesg, I can see that the realtek driver support 256 queues, but in nets= tat, it uses 512 and sometimes even more (erratic changes up to 600+ at which po= int things fail). Could this be the reason? Is this fixable in netmap or is this a driver iss= ue which should be reported in the FreeBSD project? Details about the card ``` re0: port 0xe000-0xe0ff mem 0x81300000-0x81300fff,0xa0100000-0xa0103fff irq 17 at dev= ice 0.0 on pci2 re0: Using 1 MSI-X message re0: turning off MSI enable bit. re0: Chip rev. 0x4c000000 re0: MAC rev. 0x00000000 miibus0: on re0 rgephy0: PHY 1 on miibus0 rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow re0: Using defaults for TSO: 65518/35/2048 re0: netmap queues/slots: TX 1/256, RX 1/256 re0@pci0:2:0:0: class=3D0x020000 card=3D0x012310ec chip=3D0x816810ec rev=3D= 0x0c hdr=3D0x00 vendor =3D 'Realtek Semiconductor Co., Ltd.' device =3D 'RTL8111/8168B PCI Express Gigabit Ethernet controller' class =3D network subclass =3D ethernet bar [10] =3D type I/O Port, range 32, base 0xe000, size 256, enabled bar [18] =3D type Memory, range 64, base 0x81300000, size 4096, enabl= ed bar [20] =3D type Prefetchable Memory, range 64, base 0xa0100000, size 16384, enabled ``` --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 21:53:42 2016 Return-Path: Delivered-To: freebsd-bugs@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 3F50EA9CF3D for ; Thu, 4 Feb 2016 21:53:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3084FD0F for ; Thu, 4 Feb 2016 21:53:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14LrgEq057954 for ; Thu, 4 Feb 2016 21:53:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206932] Realtek 8111 card stops responding under high load in netmap mode Date: Thu, 04 Feb 2016 21:53:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: software-freebsd@interfasys.ch X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 21:53:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206932 Olivier - interfaSys s=C3=A0rl changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|8111 card stops responding |Realtek 8111 card stops |under high load in netmap |responding under high load |mode |in netmap mode --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 22:25:13 2016 Return-Path: Delivered-To: freebsd-bugs@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 A9872A9C8D1 for ; Thu, 4 Feb 2016 22:25:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B4721EE5 for ; Thu, 4 Feb 2016 22:25:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14MPDwg055490 for ; Thu, 4 Feb 2016 22:25:13 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206932] Realtek 8111 card stops responding under high load in netmap mode Date: Thu, 04 Feb 2016 22:25:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 22:25:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206932 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 22:26:53 2016 Return-Path: Delivered-To: freebsd-bugs@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 B03DAA9C9BE for ; Thu, 4 Feb 2016 22:26:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A1D6E8B for ; Thu, 4 Feb 2016 22:26:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14MQrEc057785 for ; Thu, 4 Feb 2016 22:26:53 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206924] x11/xorg: X server refuses to die when shutdown command is submitted. Date: Thu, 04 Feb 2016 22:26:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: x11@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 22:26:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206924 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|X server refuses to die |x11/xorg: X server refuses |when shutdown command is |to die when shutdown |submitted. |command is submitted. Assignee|freebsd-bugs@FreeBSD.org |x11@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 22:27:35 2016 Return-Path: Delivered-To: freebsd-bugs@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 D5A02A9CA59 for ; Thu, 4 Feb 2016 22:27:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7A82182 for ; Thu, 4 Feb 2016 22:27:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14MRZkr058672 for ; Thu, 4 Feb 2016 22:27:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206904] tailq crash/nd inet6 Date: Thu, 04 Feb 2016 22:27:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 22:27:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206904 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 22:28:29 2016 Return-Path: Delivered-To: freebsd-bugs@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 9EFC0A9CAE7 for ; Thu, 4 Feb 2016 22:28:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90C35299 for ; Thu, 4 Feb 2016 22:28:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14MSTOB060131 for ; Thu, 4 Feb 2016 22:28:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206887] Unbound 1.5.7 has syntax errors in its support scripts. Date: Thu, 04 Feb 2016 22:28:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 22:28:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206887 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 22:38:46 2016 Return-Path: Delivered-To: freebsd-bugs@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 8E9F6A9CE2E for ; Thu, 4 Feb 2016 22:38:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BF70A81 for ; Thu, 4 Feb 2016 22:38:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14Mckju080219 for ; Thu, 4 Feb 2016 22:38:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206933] MFC of 264915 to 10 STABLE Date: Thu, 04 Feb 2016 22:38:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: mgrooms@shrew.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform bug_file_loc op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 22:38:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206933 Bug ID: 206933 Summary: MFC of 264915 to 10 STABLE Product: Base System Version: 11.0-CURRENT Hardware: Any URL: https://svnweb.freebsd.org/base?view=3Drevision&revision =3D264915 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: mgrooms@shrew.net Flags: mfc-stable10? Please MFC the following commit to 10 STABLE for the 10.3-RELEASE. Without = it, my 10.2-RELEASE-p12 firewall kernel crashes every time the pf rule set is loaded. https://svnweb.freebsd.org/base?view=3Drevision&revision=3D264915 Thanks in advance. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Feb 4 22:47:14 2016 Return-Path: Delivered-To: freebsd-bugs@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 92E5EA9D185 for ; Thu, 4 Feb 2016 22:47:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 849EBFD6 for ; Thu, 4 Feb 2016 22:47:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u14MlEik098401 for ; Thu, 4 Feb 2016 22:47:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206934] MFC of commits r272695 and r288529 Date: Thu, 04 Feb 2016 22:47:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mgrooms@shrew.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 22:47:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206934 Bug ID: 206934 Summary: MFC of commits r272695 and r288529 Product: Base System Version: 10.0-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: mgrooms@shrew.net Flags: mfc-stable10? The following commits to HEAD head were to prevent issues with using GRE and ENC devices. The former was set for an MFC by the author but never happened. The latter was recommended to me by the author to get a working firewall wh= en running 10.0-RELEASE. If possible, can these be MFCd to 10 STABLE for the 10.3-RELEASE? https://svnweb.freebsd.org/base?view=3Drevision&revision=3D272695 https://svnweb.freebsd.org/base?view=3Drevision&revision=3D288529 Thanks in advance. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Feb 5 08:51:00 2016 Return-Path: Delivered-To: freebsd-bugs@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 3D5F0A47815 for ; Fri, 5 Feb 2016 08:51:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 230851DFE for ; Fri, 5 Feb 2016 08:51:00 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u158p0VC038248 for ; Fri, 5 Feb 2016 08:51:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206946] possibility to escape restricted shell using custom MANPAGER variable when user has access to man(1) Date: Fri, 05 Feb 2016 08:51:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ilavsky.martin@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2016 08:51:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206946 Bug ID: 206946 Summary: possibility to escape restricted shell using custom MANPAGER variable when user has access to man(1) Product: Base System Version: 10.2-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ilavsky.martin@gmail.com OS: FreeBSD 10.2 amd64 (but works on other versions/archs too).=20 User is set as:=20 # pw user show whoo whoo:/:1002:1002::0:0:User &:/home/whoo:/usr/local/bin/rbash # # pwd; ls -lad . .bash* /home/whoo drwx------ 3 whoo whoo 15 Feb 4 20:55 . -rw------- 1 whoo whoo 1677 Feb 4 23:54 .bash_history -rw-r--r-- 1 root whoo 35 Feb 4 20:56 .bash_profile # # grep PATH .bash_profile PATH=3D"/home/whoo/bin" export PATH # # ls -la /home/whoo/bin/ total 130 drwxr-xr-x 2 root whoo 4 Feb 4 23:43 . drwx------ 3 whoo whoo 15 Feb 4 20:55 .. -r-xr-xr-x 1 root wheel 21082 Feb 4 23:42 man -r-xr-xr-x 1 root wheel 150216 Sep 4 16:07 more # man and more are copied from FreeBSD's /usr/bin.=20 When logged as user `whoo': $ cd / -rbash: cd: restricted $ $ find -rbash: find: command not found $ $ ls -rbash: ls: command not found $ $ unset PATH -rbash: unset: PATH: cannot unset: readonly variable $ But with specially set MANPAGER: $ export MANPAGER=3D"/usr/bin/less ; /bin/csh" $ $ man man /home/whoo/bin/man: head: not found eval: tbl: not found eval: groff: not found whoo@tbsd01:~ %=20 whoo@tbsd01:~ % setenv PATH "/bin:/usr/bin:/sbin:/usr/sbin" whoo@tbsd01:~ % whoo@tbsd01:~ % cd / whoo@tbsd01:/ % ls -la | head -6 total 138 drwxr-xr-x 22 root wheel 28 Jan 15 14:26 . drwxr-xr-x 22 root wheel 28 Jan 15 14:26 .. -rw-r--r-- 2 root wheel 966 Nov 11 2014 .cshrc -rw-r--r-- 2 root wheel 254 Nov 11 2014 .profile -rw------- 1 root wheel 1024 Feb 24 2015 .rnd whoo@tbsd01:/ % whoo@tbsd01:/tmp % ls blob00 conftest79193=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20 install.dMvSoF9f mc-root=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20 mergemaster.mtree.fDhpjfhQ screens whoo@tbsd01:/tmp % --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Feb 5 11:09:33 2016 Return-Path: Delivered-To: freebsd-bugs@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 3CB15A9CD5C for ; Fri, 5 Feb 2016 11:09:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DDA01A16 for ; Fri, 5 Feb 2016 11:09:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u15B9Wai080634 for ; Fri, 5 Feb 2016 11:09:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206933] MFC of 264915 to 10 STABLE Date: Fri, 05 Feb 2016 11:09:32 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2016 11:09:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206933 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org CC| |glebius@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Feb 5 11:10:20 2016 Return-Path: Delivered-To: freebsd-bugs@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 426C3A9CE08 for ; Fri, 5 Feb 2016 11:10:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3379E1B2B for ; Fri, 5 Feb 2016 11:10:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u15BAKKj082458 for ; Fri, 5 Feb 2016 11:10:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206934] MFC of commits r272695 and r288529 Date: Fri, 05 Feb 2016 11:10:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2016 11:10:20 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206934 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org CC| |ae@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Feb 5 12:34:58 2016 Return-Path: Delivered-To: freebsd-bugs@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 49330A778BA for ; Fri, 5 Feb 2016 12:34:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A7BD14A2 for ; Fri, 5 Feb 2016 12:34:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u15CYvux094891 for ; Fri, 5 Feb 2016 12:34:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 202629] Add AMD Beema and Mullins support to amdtemp Date: Fri, 05 Feb 2016 12:34:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: lp_gustavo_@hotmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2016 12:34:58 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D202629 gustavo changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lp_gustavo_@hotmail.com --- Comment #1 from gustavo --- https://forum.pfsense.org/index.php?topic=3D106261.0 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Feb 5 18:40:46 2016 Return-Path: Delivered-To: freebsd-bugs@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 D9665A765E0 for ; Fri, 5 Feb 2016 18:40:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9E5A7B for ; Fri, 5 Feb 2016 18:40:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u15IekaJ029210 for ; Fri, 5 Feb 2016 18:40:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 201461] switching back to sc(4) or vt(4) console fails with nvidia.ko Date: Fri, 05 Feb 2016 18:40:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: vt X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: abunai@uga.edu X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2016 18:40:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201461 Bret Miller changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |abunai@uga.edu --- Comment #15 from Bret Miller --- I'm having the very same issue on an HP Z600 workstation. My dmesg is: https://bpaste.net/show/9ac322d9c4e5 My nvidia-bug-report is here: https://outlookuga-my.sharepoint.com/personal/abunai_uga_edu/_layouts/15/gu= estaccess.aspx?guestaccesstoken=3D8vRxRkuBIdv7NzHxURCgtBhxEtvDs6e062uX7qLhS= m8%3d&docid=3D0e91536928b1045819d31f8776e2d0479 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Feb 5 20:48:09 2016 Return-Path: Delivered-To: freebsd-bugs@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 F358EA9C719 for ; Fri, 5 Feb 2016 20:48:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E48B36E5 for ; Fri, 5 Feb 2016 20:48:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u15Km9TE066831 for ; Fri, 5 Feb 2016 20:48:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206958] clang3.7.1 fails to build graphics/aseprite Date: Fri, 05 Feb 2016 20:48:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2016 20:48:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206958 Bug ID: 206958 Summary: clang3.7.1 fails to build graphics/aseprite Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: pi@FreeBSD.org See=20 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204497 for the error and the attached files from the clang crash. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Feb 5 23:42:17 2016 Return-Path: Delivered-To: freebsd-bugs@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 018B9A77F26 for ; Fri, 5 Feb 2016 23:42:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CFBDA399 for ; Fri, 5 Feb 2016 23:42:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u15NgGAo082324 for ; Fri, 5 Feb 2016 23:42:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206961] powerd broken on SMP Date: Fri, 05 Feb 2016 23:42:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: duraid@octopus.com.au X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2016 23:42:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206961 Bug ID: 206961 Summary: powerd broken on SMP Product: Base System Version: 10.2-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: duraid@octopus.com.au CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org bug 125141 is marked FIXED, but I see it. background: 2-way Xeon E5-2690 system /etc/rc.conf:=20 powerd_enable=3D"YES" performance_cx_lowest=3D"Cmax" economy_cx_lowest=3D"Cmax" Consider these three cases: 1) Load no CPUs powerd works here. All cores run at reduced frequencies and enter deep sleep states. 2) Load all CPUs powerd works here. All cores run at high frequency and spend essentially all time in C0. (Actually, after a couple of minutes the system (hardware) alarm goes off because the CPUs are overheating; FreeBSD ignores that I guess, but let's worry about that some other day...) 3) Load one CPU Expected: One CPU runs at maximum ("boost") frequency and spends ~100% time in C0. (hardware-specific technicality: the core's "pair" spends 100% time in C1.) Other cores run at minimum frequency in deep(er) sleep. Observed: All CPUs stay in sleep states, though all of them average frequencies >30% above minimum. One core will average around 2% in C0 and will run at a high= er (though not maximum) frequency. It looks like there is some serious brokenness in SMP. #125141 makes it seem like powerd can be expected to do the right thing, but I seem to get the wo= rst of both worlds: increased power consumption as all cores stay out of deep s= leep and run at elevated frequencies, and decreased performance as no one core s= tays in C0 running and peak frequency. Perhaps interestingly, this problem can be exacerbated by setting dev.cpu..cx_lowest=3DC1 . (Which is necessary on my system to avo= id USB keyboard stuttering, but that's another issue...) It's not clear to me, the= n, that this is "the same" as #125141. Maybe it is, or maybe there remains something fundamentally wrong with powerd in (variable frequency, variable sleep) SMP scenarios. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Feb 5 23:45:47 2016 Return-Path: Delivered-To: freebsd-bugs@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 B9212A9C02B for ; Fri, 5 Feb 2016 23:45:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AC3EE660 for ; Fri, 5 Feb 2016 23:45:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u15NjlaY088763 for ; Fri, 5 Feb 2016 23:45:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206961] powerd broken on SMP Date: Fri, 05 Feb 2016 23:45:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.2-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: duraid@octopus.com.au X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Feb 2016 23:45:47 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206961 --- Comment #1 from Duraid Madina --- I should also have mentioned that there is something of a workaround, too: restricting single-thread jobs to a single core with cpuset makes powerd do= the right thing. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Feb 6 00:28:46 2016 Return-Path: Delivered-To: freebsd-bugs@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 9ED0DA9E12A for ; Sat, 6 Feb 2016 00:28:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90D27178B for ; Sat, 6 Feb 2016 00:28:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u160SkUL057199 for ; Sat, 6 Feb 2016 00:28:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206962] HP Stream 11 has no storage device found Date: Sat, 06 Feb 2016 00:28:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: lundincahill@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Feb 2016 00:28:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206962 Bug ID: 206962 Summary: HP Stream 11 has no storage device found Product: Base System Version: 11.0-CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: lundincahill@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 166636 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D166636&action= =3Dedit 11.0-CURRENT-amd64-20160127-r294912 dmesg I just got an HP Stream 11, model 11-r010nr. It is a cheap (less than 200 dollars) laptop that contains an eMMC device for main storage and a microSD card reader. There was a forum post about the previous generation of this device: https://forums.freebsd.org/threads/freebsd-hp-stream-11-emmc-not-found-duri= ng-install.52544/ There was also a post that alludes to an existing pr (but I can't find it): https://lists.freebsd.org/pipermail/freebsd-questions/2015-November/269073.= html I downloaded the most recent 11.0 snapshot (11.0-CURRENT-amd64-20160127-r294912) and was able to boot to uefi (10.2 was only able to boot in legacy mode), but there isn't a storage device detecte= d. Attached is the dmesg from 11.0, below is hardware information from Windows; let me know what extra information could help. disk: (SanDisk SDW32G) instance: SD\DISK&SANDISK&SDW32G&0.1\5&10D0E5E2&0&402F3260&0 parent: SD\VID_45&OID_0000&PID_SDW32G&REV_0.1\4&7a47dd1&0&0 controller: (SD Storage Class Controller) instance: SD\VID_45&OID_0000&PID_SDW32G&REV_0.1\4&7A47DD1&0&0 location path: ACPI(_SB_)#ACPI(PCI0)#ACPI(SDHA)#ACPI(EMMD) parent: ACPI\80860F14\1 controller: (Intel SD Host Controller) instance: ACPI\80860F14\1 location path: ACPI(_SB_)#ACPI(PCI0)#ACPI(SDHA) parent: ACPI\PNP0A08\0 (this is the Root PCI Express Complex in Windows) hardware ids: ACPI\VEN_8086&DEV_0F14 ACPI\80860F14 *80860F14 Since I suspected the eMMC device didn't work, I was hoping the card reader would work so I could merely install to a microSD card; while I don't have a card laying around, it looks like it isn't detected either based on the dme= sg. cardreader: (Realtek PCIE CardReader) instance path: PCI\VEN_10EC&DEV_5229&SUBSYS_815E103C&REV_01\4&C433F5E&0&00E0 hardware ids: PCI\VEN_10EC&DEV_5229&SUBSYS_815E103C&REV_01 PCI\VEN_10EC&DEV_5229&SUBSYS_815E103C PCI\VEN_10EC&DEV_5229&CC_FF0000 PCI\VEN_10EC&DEV_5229&CC_FF00 pci bridge (card reader parent): instance path: PCI\VEN_8086&DEV_22C8&SUBSYS_815E103C&REV_21\3&11583659&0&E0 hardware ids: PCI\VEN_8086&DEV_22C8&SUBSYS_815E103C&REV_21 PCI\VEN_8086&DEV_22C8&SUBSYS_815E103C PCI\VEN_8086&DEV_22C8&CC_060400 PCI\VEN_8086&DEV_22C8&CC_0604 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Feb 6 04:39:01 2016 Return-Path: Delivered-To: freebsd-bugs@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 CE097A9DB9D for ; Sat, 6 Feb 2016 04:39:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A505D103F for ; Sat, 6 Feb 2016 04:39:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u164d1uq035076 for ; Sat, 6 Feb 2016 04:39:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206963] ctl(4) requires icl(4) now (iscsi layer) Date: Sat, 06 Feb 2016 04:39:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Feb 2016 04:39:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206963 Bug ID: 206963 Summary: ctl(4) requires icl(4) now (iscsi layer) Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: ngie@FreeBSD.org KLD ctl.ko: depends on icl - not available or version mismatch linker_load_file: Unsupported file type $ grep -r icl /usr/src/sys/| grep MODULE /usr/src/sys/cam/ctl/ctl_frontend_iscsi.c:MODULE_DEPEND(ctlcfiscsi, icl, 1,= 1, 1); /usr/src/sys/dev/cxgbe/cxgbei/cxgbei.c:MODULE_DEPEND(cxgbei, icl, 1, 1, 1); /usr/src/sys/dev/cxgbe/cxgbei/icl_cxgbei.c:DECLARE_MODULE(icl_cxgbei, icl_cxgbei_data, SI_SUB_DRIVERS, SI_ORDER_MIDDLE); /usr/src/sys/dev/cxgbe/cxgbei/icl_cxgbei.c:MODULE_DEPEND(icl_cxgbei, icl, 1= , 1, 1); /usr/src/sys/dev/cxgbe/cxgbei/icl_cxgbei.c:MODULE_VERSION(icl_cxgbei, 1); /usr/src/sys/dev/iscsi/icl_soft.c:DECLARE_MODULE(icl_soft, icl_soft_data, SI_SUB_DRIVERS, SI_ORDER_MIDDLE); /usr/src/sys/dev/iscsi/icl_soft.c:MODULE_DEPEND(icl_soft, icl, 1, 1, 1); /usr/src/sys/dev/iscsi/icl_soft.c:MODULE_VERSION(icl_soft, 1); /usr/src/sys/dev/iscsi/icl.c:DECLARE_MODULE(icl, icl_data, SI_SUB_DRIVERS, SI_ORDER_FIRST); /usr/src/sys/dev/iscsi/icl.c:MODULE_VERSION(icl, 1); /usr/src/sys/dev/iscsi/iscsi.c:MODULE_DEPEND(iscsi, icl, 1, 1, 1); ctl(4) SHOULD NOT REQUIRE icl(4)!!!!!! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Feb 6 04:39:40 2016 Return-Path: Delivered-To: freebsd-bugs@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 0AF83A9DBDA for ; Sat, 6 Feb 2016 04:39:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFF551099 for ; Sat, 6 Feb 2016 04:39:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u164ddGc036040 for ; Sat, 6 Feb 2016 04:39:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206963] ctl(4) requires icl(4) now (iscsi layer) Date: Sat, 06 Feb 2016 04:39:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: trasz@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Feb 2016 04:39:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206963 NGie Cooper changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |trasz@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Feb 6 06:09:07 2016 Return-Path: Delivered-To: freebsd-bugs@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 CD275A9F997 for ; Sat, 6 Feb 2016 06:09:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD25D1AC2 for ; Sat, 6 Feb 2016 06:09:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u16697oO097871 for ; Sat, 6 Feb 2016 06:09:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 206958] clang3.7.1 fails to build graphics/aseprite Date: Sat, 06 Feb 2016 06:09:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Feb 2016 06:09:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206958 --- Comment #1 from Kurt Jaeger --- See https://llvm.org/bugs/show_bug.cgi?id=3D26499 --=20 You are receiving this mail because: You are the assignee for the bug.=