[Bug 196542] System stops booting with "ACPI APIC Table: "

2015-01-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196542

--- Comment #12 from Jonas Keidel  ---
Created attachment 152254
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=152254&action=edit
Printf in start_ap function

(In reply to John Baldwin from comment #11)

I've waited longer than 5 seconds. The systems stays on a couple of hours.

So i've added some printf to the start_ap function. As you can see, it starts a
couple of APs and hangs after on one.
The message "wait ms: 0" is in the delay while-loop, so it does not seem to
hang on the DELAY().

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


[Bug 196542] System stops booting with "ACPI APIC Table: "

2015-01-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196542

--- Comment #13 from Jonas Keidel  ---
Towards disabling Legacy-USB:
I've tested that and I noticed, that the system hangs on the same point as with
Legacy-USB enabled, but then it boots correctly after half a minute or so.
Maybe it is related and it does not trigger the error.

I hope that the provided information helps.

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


[Bug 196542] System stops booting with "ACPI APIC Table: "

2015-01-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196542

--- Comment #14 from John Baldwin  ---
(In reply to Jonas Keidel from comment #12)

To be clear, does the machine hang at the image you provided?  If so, it
appears to be hung in ipi_startup?

Can you instrument ipi_startup?  The calls in there to lapic_ipi_wait(-1) can
potentially hang forever.  One thing you can do is to change the '-1's to
100 and seeing if the machine boots.  It seems that Linux does this (it
just gives up waiting if the ICR bit doesn't clear).

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


[Bug 197139] Double cleanup in igb_attach

2015-01-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197139

Bug ID: 197139
   Summary: Double cleanup in igb_attach
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: i386
OS: Any
Status: New
  Severity: Affects Some People
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: rupav...@juniper.net

igb_attach has this code 

err_late:
igb_detach(dev);
igb_free_transmit_structures(adapter);
igb_free_receive_structures(adapter);
igb_release_hw_control(adapter);
err_pci:
igb_free_pci_resources(adapter);
if (adapter->ifp != NULL)
if_free(adapter->ifp);
free(adapter->mta, M_DEVBUF);
IGB_CORE_LOCK_DESTROY(adapter);

return (error);

However, I see that igb_detach does all this cleanup when it's successfully
completed. Only exception I see is that it return EBUSY if vlantrunk is in use
/* Make sure VLANS are not using driver */
if (if_vlantrunkinuse(ifp)) {
device_printf(dev,"Vlan in use, detach first\n");
return (EBUSY);
}

This results in duplicate cleanup in igb_attach and can cause crashes. 
The fix would be the following. 
Index: if_igb.c
===
--- if_igb.c(revision 298053)
+++ if_igb.c(working copy)
@@ -723,7 +723,8 @@ igb_attach(device_t dev)
 return (0);

 err_late:
-igb_detach(dev);
+if(igb_detach(dev) == 0) /* igb_detach did the cleanup */
+return(error); 
 igb_free_transmit_structures(adapter);
 igb_free_receive_structures(adapter);
 igb_release_hw_control(adapter);


The issue exists in stable/10 as well as current.

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


[Bug 197141] External UFS Formatted USB Drive confuses ZFS Boot Loader

2015-01-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197141

Bug ID: 197141
   Summary: External UFS Formatted USB Drive confuses ZFS Boot
Loader
   Product: Base System
   Version: 10.1-RELEASE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Many People
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: s...@ssr.com

Format an external USB drive with a UFS filesystem. Plug into USB port. Reboot.
On reboot, zfs loader can't find a disk to boot from. This was tested with a
5-disk RAIDZ, but probably affects any configuration.

WORKAROUND: Remove USB drive while booting.

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


[Bug 197142] wrong comment in /usr/share/mk/bsd.incs.mk

2015-01-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197142

Bug ID: 197142
   Summary: wrong comment in /usr/share/mk/bsd.incs.mk
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Some People
  Priority: ---
 Component: conf
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: l...@pix.net

The whole file is protected by:

.if ${MK_INCLUDES} != "no"

.endif # ${MK_TOOLCHAIN} != "no"

The ending comment is wrong, it should be:

# ${MK_INCLUDES} != "no"

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


Heads Up Display Importer Sell Out

2015-01-27 Thread ImporterDeals
   [1]Importer Dealer
   [hud.jpg]
   HOT PRODUCT
   LIMITED STOCK

Heads Up Display

   [hud.png]

Only

$98.00

Was $270.00

   Buy Now

Details

   It can project important information (e.g) vehicle speed into the
   window shield at the eye level of the driver - enabling the driver to
   be safe and sound when driving at a high speed. This is especially
   useful for driving on the highways at night.

   View

240 Watt Solar Folding
Only $290.00

   View More

Safe Wash
Only $299.00

   Watch Video

   [2]Visit our website | QLD Australia

 This email was sent by ImporterDeals, Brisbane QLD 4000 to
  freebsd-bugs@freebsd.org
   [3]Unsubscribe

References

   Visible links
   1. http://www.vision6.com.au/ch/44773/ddy90/1738543/a1bf1b93r.html
   2. http://www.vision6.com.au/ch/44773/ddy90/1738542/a1bf116zf9.html
   3. http://www.vision6.com.au/forms/u/8de/44773/10902870.html

   Hidden links:
   5. http://www.vision6.com.au/ch/44773/ddy90/1878048/a1bf1138rk.html
   6. http://www.vision6.com.au/ch/44773/ddy90/1878048/a1bf1138rk-1.html
   7. http://www.vision6.com.au/ch/44773/ddy90/1878049/a1bf1md5m.html
   8. http://www.vision6.com.au/ch/44773/ddy90/1878050/a1bf1fxsk.html
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 195990] file: File 5.19 supports only version 12 magic files. `/usr/share/misc/magic.mgc' is version 8

2015-01-27 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195990

--- Comment #6 from joshrueh...@gmail.com ---
What's the best way to get this regression fixed in stable/10?

@delphij continues to push file forward in stable/10 but missed applying
r273688 as he did to master (stable/11)
https://github.com/freebsd/freebsd/commit/ed6a1857098c893243cd94f168fadd1832ef6fc4

I could try applying the changed myself and submitting a pull request if that
would help.

Thanks,

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