[Bug 231027] [META] FreeBSD-Foundation sponsored issues for FreeBSD 13-CURRENT

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231027

Ed Maste  changed:

   What|Removed |Added

 Depends on||229050


Referenced Bugs:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=229050
[Bug 229050] [meta] lld linker migration tracking PR
-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 231358] bhyve: Resume from S3 hangs when vm is started.

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231358

Mark Linimon  changed:

   What|Removed |Added

   Assignee|b...@freebsd.org|virtualizat...@freebsd.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 231291] 12-ALPHA4 does not boot on i386 after r338360

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231291

Mark Linimon  changed:

   What|Removed |Added

   Keywords||patch

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 231291] 12-ALPHA4 does not boot on i386 after r338360

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231291

--- Comment #6 from John Baldwin  ---
So your system doesn't support APIC.  I believed I had tested that case, but I
think while working on the dynamic IRQ patches I introduced a regression and
ended up not retesting the final result.  This patch fixed a non-APIC boot for
me:

Index: sys/x86/isa/atpic.c
===
--- atpic.c (revision 338687)
+++ atpic.c (working copy)
@@ -221,14 +221,20 @@ atpic_register_sources(struct pic *pic)
 * that APIC ISA routing and allowing the ATPIC source for that IRQ
 * to leak through.  We used to depend on this feature for routing
 * IRQ0 via mixed mode, but now we don't use mixed mode at all.
+*
+* To avoid the slave not register sources after the master
+* registers its sources, register all IRQs when this function is
+* called on the master.
 */
+   if (ap != [MASTER])
+   return;
for (i = 0; i < NUM_ISA_IRQS; i++)
if (intr_lookup_source(i) != NULL)
return;

/* Loop through all interrupt sources and add them. */
-   for (i = 0, ai = atintrs + ap->at_irqbase; i < 8; i++, ai++) {
-   if (ap->at_irqbase + i == ICU_SLAVEID)
+   for (i = 0, ai = atintrs; i < NUM_ISA_IRQS; i++, ai++) {
+   if (i == ICU_SLAVEID)
continue;
intr_register_source(>at_intsrc);
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 225569] buildkernel with -j4 gives "No entry found [dwarf_next_cu_header_c(61)]" for hpt27xx, hptmv, hptnr, hptrr. Using -B fixes issue

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225569

Mark Johnston  changed:

   What|Removed |Added

 CC||ma...@freebsd.org

--- Comment #3 from Mark Johnston  ---
This is a harmless build issue; the .o files in question don't contain debug
info, but make's pattern matching rules somehow cause us to run ctfconvert.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


COOL ARRIVALS - GET IN THERE FIRST!

2018-09-14 Thread Denmark Street Guitars
[[HEADLINE]]

[[PERMALINK_FULL_LINK]]







TITLE OF YOUR EMAIL

The content of your email goes here.

You can drag and drop blocks of text, images or other content elements to add 
them to your message. Customize the font and the colors. Add links to track 
clicks.







This is a second paragraph you can customize as your please.

If you have stored contact properties with your contacts, you can include 
personalization variables such as first name, last name in your message content.



[[DELIVERY_INFO]]
[[POSTAL_ADDRESS]]
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 231358] bhyve: Resume from S3 hangs when vm is started.

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231358

Bug ID: 231358
   Summary: bhyve: Resume from S3 hangs when vm is started.
   Product: Base System
   Version: CURRENT
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: b...@freebsd.org
  Reporter: arne.ehrl...@groknet.de

Suspend / Resume works great on my Thinkpad T460p,
but if a bhyve VM is running the system will not come back from S3.

reproduced on 12.0-ALPHA5 and r338601 from head.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 231354] Potential null pointer deference in drm/r128

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231354

o...@hardenedbsd.org changed:

   What|Removed |Added

 CC||kev...@freebsd.org
  Flags||mfc-stable11?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 231356] drm-next-kmod(4.11.g20180822) is frozen on r338436 or after

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231356

Mark Linimon  changed:

   What|Removed |Added

   Keywords||regression
   Assignee|b...@freebsd.org|k...@freebsd.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 225569] buildkernel with -j4 gives "No entry found [dwarf_next_cu_header_c(61)]" for hpt27xx, hptmv, hptnr, hptrr. Using -B fixes issue

2018-09-14 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=225569

Kubilay Kocak  changed:

   What|Removed |Added

   Severity|Affects Many People |Affects Only Me
 CC||bdrew...@freebsd.org
 Status|New |Open
   Keywords||needs-qa

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"