[Bug 226665] Typo in a comment in Hyper-V code

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226665

Mark Linimon  changed:

   What|Removed |Added

   Assignee|freebsd-bugs@FreeBSD.org|emulat...@freebsd.org
   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 226665] Typo in a comment in Hyper-V code

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226665

Bug ID: 226665
   Summary: Typo in a comment in Hyper-V code
   Product: Base System
   Version: CURRENT
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: ryo...@yk.rim.or.jp

Created attachment 191565
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=191565=edit
Fix a typo

Please correct a typo in sys/dev/hyperv/vmbus/hyperv.c

Patch is attached.

-- 
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 226575] drill -x 192..168.5.25 (two dots in the row) breaks

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226575

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 226510] panic: Re-refing for reason 5, cnt = 1

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226510

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 226510] panic: Re-refing for reason 5, cnt = 1

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226510

--- Comment #11 from Warner Losh  ---
Does this help?
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c
index c6941990a8df..4bcddbb8dff9 100644
--- a/sys/cam/scsi/scsi_da.c
+++ b/sys/cam/scsi/scsi_da.c
@@ -2039,26 +2039,30 @@ daasync(void *callback_arg, u_int32_t code,
 * Handle all UNIT ATTENTIONs except our own,
 * as they will be handled by daerror().
 */
-   cam_periph_lock(periph);
if (xpt_path_periph(ccb->ccb_h.path) != periph &&
scsi_extract_sense_ccb(ccb,
 _code, _key, , )) {
if (asc == 0x2A && ascq == 0x09) {
xpt_print(ccb->ccb_h.path,
"Capacity data has changed\n");
+   cam_periph_lock(periph);
softc->flags &= ~DA_FLAG_PROBED;
+   cam_periph_unlock(periph);
dareprobe(periph);
} else if (asc == 0x28 && ascq == 0x00) {
+   cam_periph_lock(periph);
softc->flags &= ~DA_FLAG_PROBED;
+   cam_periph_unlock(periph);
disk_media_changed(softc->disk, M_NOWAIT);
} else if (asc == 0x3F && ascq == 0x03) {
xpt_print(ccb->ccb_h.path,
"INQUIRY data has changed\n");
+   cam_periph_lock(periph);
softc->flags &= ~DA_FLAG_PROBED;
+   cam_periph_unlock(periph);
dareprobe(periph);
}
}
-   cam_periph_unlock(periph);
break;
}
case AC_SCSI_AEN:

-- 
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 203856] [igb] PPPoE RX traffic is limitied to one queue

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203856

Gimli  changed:

   What|Removed |Added

 CC||free...@gim.li

--- Comment #4 from Gimli  ---
Now that Spectre and Metldown patches are coming out and CPUs are losing
considerable performance this becomes even more critical to fix. For example
it's impossible to run a gigabit PPPoE connection on pfSense now because of
this FreeBSD bug.

-- 
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 226600] cpucontrol fails to compile, so "make buildworld" fails also

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226600

--- Comment #4 from o...@oz42.eu ---
Disabling ccache fixed it. I assume this is a ccache bug then.

-- 
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 226575] drill -x 192..168.5.25 (two dots in the row) breaks

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226575

--- Comment #2 from Maxim Konovalov  ---
Oops, please ignore the first chunk in the patch above.

-- 
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 226575] drill -x 192..168.5.25 (two dots in the row) breaks

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226575

Maxim Konovalov  changed:

   What|Removed |Added

 CC||ma...@freebsd.org

--- Comment #1 from Maxim Konovalov  ---
Hello,

I must admit that now I need to visit a doctor to check my eyes after reading
drill.c.

Here is a rather simple and admittedly naive and incomplete band-aid:

Index: drill.c
===
--- drill.c (revision 325887)
+++ drill.c (working copy)
@@ -695,6 +695,7 @@ main(int argc, char *argv[])
break;
case DRILL_REVERSE:
/* ipv4 or ipv6 addr? */
+printf("name %s\n", name);
if (strchr(name, ':')) {
if (strchr(name, '.')) {
error("Syntax error: both '.' and ':'
seen in address\n");
@@ -747,6 +748,9 @@ main(int argc, char *argv[])
free(name2);
} else {
qname = ldns_dname_new_frm_str(name);
+   if (!qname) {
+   error("%s", "-x implies an ip
address");
+   }
qname_tmp = ldns_dname_reverse(qname);
ldns_rdf_deep_free(qname);
qname = qname_tmp;

%%%

I see a number of other equally suspicious places but unfortunately cannot
invest more time into.

Sorry for that.

Maxim

-- 
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 211713] NVME controller failure: resetting (Samsung SM961 SSD Drives)

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211713

--- Comment #55 from Terry Kennedy  ---
(In reply to Terry Kennedy from comment #54)

The previous comment seems to be missing my comment text...

I tried applying the patch to 11-STABLE (r331049) and it didn't apply cleanly.
Before I dig into this, would be possible to get a version for 11?

-- 
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 211713] NVME controller failure: resetting (Samsung SM961 SSD Drives)

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211713

--- Comment #54 from Terry Kennedy  ---
Created attachment 191543
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=191543=edit
Log of failed patch application on 11-STABLE

-- 
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 226574] 12.0 CURRENT & 11.1 Installation on AMD EPYC (BIOS - RSW1005E)

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226574

--- Comment #3 from Andriy Gapon  ---
(In reply to Surya from comment #2)
Can you make a plain text attachment?

-- 
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 226510] panic: Re-refing for reason 5, cnt = 1

2018-03-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=226510

--- Comment #10 from Roman Bogorodskiy  ---
Still panics on boot:

12.0-CURRENT #7 r330969: Thu Mar 15 11:42:57 +04 2018

Boots fine with detached 'da' device though.

-- 
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"