HEADS UP: PCI SR-IOV infrastructure has been committed to head

2015-02-28 Thread Ryan Stone
I've just finished committing support for PCI Single Root I/O Virtualization in the pci subsystem to head. This should be a no-op for everyone right now, but there were some minor refactorings in the pci code that could have a lingering bug. I did make sure to test that it boots on a variety of s

[Differential] [Closed] D1883: Move libnv into the kernel and hook it into the kernel build

2015-02-28 Thread rstone (Ryan Stone)
rstone closed this revision. rstone updated this revision to Diff 4043. rstone added a comment. Closed by commit rS279439 (authored by @rstone). CHANGED PRIOR TO COMMIT https://reviews.freebsd.org/D1883?vs=3826&id=4043#toc REVISION DETAIL https://reviews.freebsd.org/D1883 AFFECTED FILES h

New message from SoundCloud PR

2015-02-28 Thread SoundCloud Notifications
[letter.png] Hey, [1]SoundCloudPR sent you a message: The SoundCloud Promotional Service offers Artists, DJs, Singers and Managers a simple, cost-effective way to reach targeted followers, sales, comments, plays and downloads on SoundCloud. We target like-minded users who are

[Differential] [Closed] D1882: Add macros to make code compile in kernel

2015-02-28 Thread rstone (Ryan Stone)
rstone closed this revision. rstone updated this revision to Diff 4041. rstone added a comment. Closed by commit rS279438 (authored by @rstone). CHANGED PRIOR TO COMMIT https://reviews.freebsd.org/D1882?vs=3825&id=4041#toc REVISION DETAIL https://reviews.freebsd.org/D1882 AFFECTED FILES h

[Differential] [Closed] D1879: Don't allocate memory for operations that do not insert

2015-02-28 Thread rstone (Ryan Stone)
rstone closed this revision. rstone updated this revision to Diff 4039. rstone added a comment. Closed by commit rS279435 (authored by @rstone). CHANGED PRIOR TO COMMIT https://reviews.freebsd.org/D1879?vs=3822&id=4039#toc REVISION DETAIL https://reviews.freebsd.org/D1879 AFFECTED FILES h

[Differential] [Closed] D1880: Prevent creation of an invalid nvlist

2015-02-28 Thread rstone (Ryan Stone)
rstone closed this revision. rstone updated this revision to Diff 4040. rstone added a comment. Closed by commit rS279436 (authored by @rstone). CHANGED PRIOR TO COMMIT https://reviews.freebsd.org/D1880?vs=3823&id=4040#toc REVISION DETAIL https://reviews.freebsd.org/D1880 AFFECTED FILES h

[Differential] [Closed] D1870: Add tests for nvlist_clone

2015-02-28 Thread rstone (Ryan Stone)
rstone closed this revision. rstone updated this revision to Diff 4038. rstone added a comment. Closed by commit rS279425 (authored by @rstone). CHANGED PRIOR TO COMMIT https://reviews.freebsd.org/D1870?vs=3862&id=4038#toc REVISION DETAIL https://reviews.freebsd.org/D1870 AFFECTED FILES h

[Differential] [Changed Subscribers] D1986: Teach lagg(4) to change MTU

2015-02-28 Thread rstone (Ryan Stone)
rstone added a subscriber: freebsd-net. REVISION DETAIL https://reviews.freebsd.org/D1986 To: rpokala-panasas.com, rstone Cc: freebsd-net ___ freebsd-net@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, se

[Differential] [Accepted] D1965: Add extended media types to if_media.h and ifconfig

2015-02-28 Thread gnn (George Neville-Neil)
gnn accepted this revision. gnn added a comment. BTW Mike Karels was in favor of this in an email thread. He's not yet on phabricator but I'll ask him here as well. BRANCH /head REVISION DETAIL https://reviews.freebsd.org/D1965 To: erj, adrian, jfvogel, gnn Cc: glebius, freebsd-net __

[Differential] [Commented On] D1761: Extend LRO support to accumulate more than 65535 bytes

2015-02-28 Thread adrian (Adrian Chadd)
adrian added a comment. I don't think we should be using the hash bits like this. There's even more hash types to add (all the variations on symmetric and non-RSS hashing; hashing XOR versus RSS, different fields, etc). I'd rather we don't make things more complicated by having the flowid/hasht

[Differential] [Updated] D1987: Factor out MBUF hashing code for Ethernet and TCP/IP.

2015-02-28 Thread hselasky (Hans Petter Selasky)
hselasky set the repository for this revision to rS (FreeBSD src repository). REVISION DETAIL https://reviews.freebsd.org/D1987 To: hselasky, glebius, ken, adrian Cc: freebsd-net ___ freebsd-net@freebsd.org mailing list http://lists.freebsd.org/mailma

[Differential] [Updated] D1761: Extend LRO support to accumulate more than 65535 bytes

2015-02-28 Thread hselasky (Hans Petter Selasky)
hselasky set the repository for this revision to rS (FreeBSD src repository). REVISION DETAIL https://reviews.freebsd.org/D1761 To: hselasky, rrs, glebius, gnn, emaste, lstewart, rwatson, bz, imp, np, adrian, jfvogel Cc: freebsd-net ___ freebsd-net@f

[Differential] [Updated] D1761: Extend LRO support to accumulate more than 65535 bytes

2015-02-28 Thread hselasky (Hans Petter Selasky)
hselasky added a reviewer: jfvogel. REVISION DETAIL https://reviews.freebsd.org/D1761 To: hselasky, rrs, glebius, gnn, emaste, lstewart, rwatson, bz, imp, np, adrian, jfvogel Cc: freebsd-net ___ freebsd-net@freebsd.org mailing list http://lists.freeb

[Differential] [Commented On] D1761: Extend LRO support to accumulate more than 65535 bytes

2015-02-28 Thread hselasky (Hans Petter Selasky)
hselasky added a comment. Hi, Adrian: Would a set of macros hiding how we set and clear the LRO_TCP "flag" be acceptable, then we can later resolve that minor detail, exactly how the bit is encoded? #define M_SET_LRO_TCP(m) ... #define M_CLR_LRO_TCP(m) ... #define M_GET_LRO_TCP(m) ... --HPS

[Differential] [Updated, 518 lines] D1987: Factor out MBUF hashing code for Ethernet and TCP/IP.

2015-02-28 Thread hselasky (Hans Petter Selasky)
hselasky updated this revision to Diff 4033. hselasky added a comment. Remove patches not belonging to this issue. CHANGES SINCE LAST UPDATE https://reviews.freebsd.org/D1987?vs=4032&id=4033 REVISION DETAIL https://reviews.freebsd.org/D1987 AFFECTED FILES sys/conf/files sys/kern/uipc_mb

[Differential] [Updated, 1, 385 lines] D1987: Factor out MBUF hashing code for Ethernet and TCP/IP.

2015-02-28 Thread hselasky (Hans Petter Selasky)
hselasky updated this revision to Diff 4032. hselasky added a comment. Factor out more code. CHANGES SINCE LAST UPDATE https://reviews.freebsd.org/D1987?vs=4030&id=4032 REVISION DETAIL https://reviews.freebsd.org/D1987 AFFECTED FILES share/man/man9/Makefile share/man/man9/timeout.9 sy

[Differential] [Updated, 513 lines] D1987: Factor out MBUF hashing code for Ethernet and TCP/IP.

2015-02-28 Thread hselasky (Hans Petter Selasky)
hselasky updated this revision to Diff 4030. hselasky added a comment. Add full patch context. CHANGES SINCE LAST UPDATE https://reviews.freebsd.org/D1987?vs=4029&id=4030 REVISION DETAIL https://reviews.freebsd.org/D1987 AFFECTED FILES sys/conf/files sys/kern/uipc_mbufhash.c sys/net/i

[Bug 197882] [panic] kernel panics in soreceive_dgram

2015-02-28 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197882 Andrey V. Elsukov changed: What|Removed |Added Assignee|freebsd-net@FreeBSD.org |a...@freebsd.org -- You are r

[Differential] [Request, 513 lines] D1987: Factor out MBUF hashing code for Ethernet and TCP/IP.

2015-02-28 Thread hselasky (Hans Petter Selasky)
hselasky created this revision. hselasky added reviewers: glebius, ken, adrian. hselasky added a subscriber: freebsd-net. hselasky set the repository for this revision to rS (FreeBSD src repository). REVISION SUMMARY Factor out mbuf hashing code instead of copying it around. REVISION DETAIL h

[Bug 193802] tso seems broken on RELENG10 for version 7.4.2 of em driver

2015-02-28 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193802 --- Comment #4 from m...@sentex.net --- https://lists.freebsd.org/pipermail/freebsd-stable/2014-September/080088.html has some insights / discussion on it from Rick M -- You are receiving this mail because: You are the assignee for the bug

[Differential] [Commented On] D1944: PF and VIMAGE fixes

2015-02-28 Thread nvass-gmx.com (Nikos Vassiliadis)
nvass-gmx.com added a comment. >>! In D1944#8, @glebius wrote: > Nikos, > > acking that I see the patches. Right now I'm waiting for pf to stablize after > recent patches to fragment handling. Kristof is working on the known problem. > Meanwhile you can finish your patch moving from "almost there

[Bug 197997] [panic] ng_pppoe sometimes panics with trap 12 when server drops session

2015-02-28 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197997 eu...@grosbein.net changed: What|Removed |Added CC||eu...@grosbein.net --- Comment

Re: Adding new media types to if_media.h

2015-02-28 Thread John Baldwin
On Friday, February 27, 2015 10:23:10 PM Gleb Smirnoff wrote: > On Thu, Feb 26, 2015 at 08:25:59PM -0800, Adrian Chadd wrote: > A> [snip] > A> > A> I think Mike's approach is good - it makes it easy to MFC to 10.2 > A> since there's extended lifecycle stuff to do there - and then we can > A> plan o