<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/dev/ixgbe/ixgbe.c, branch release/8.2.0</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>MFC ixgbe cummulative patch from stable/8</title>
<updated>2011-01-27T00:36:54+00:00</updated>
<author>
<name>Jack F Vogel</name>
<email>jfv@FreeBSD.org</email>
</author>
<published>2011-01-27T00:36:54+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=698bf4df39211c74a4c9fa3eebc6fdb118828ca3'/>
<id>698bf4df39211c74a4c9fa3eebc6fdb118828ca3</id>
<content type='text'>
217712  Fix a couple of incorrect variable names in the sysctl code.
217713  - Panic on the 82598 adapter due to reading FCOE registers that don't exit
        - Make phy detection dynamic so adapters that support multiple types of
          media can be properly identified by the interface layer
        - Performance patch to the flow director (ixgbe_atr) code
        - Fix intermittent data corruption on the 82599
        - Add missing support code for buffer size and descriptors when doing
          jumbo frames, also add 16K cluster support.
        - Release RX lock when calling stack, this removes LOR problems.
217795  Remove TX_UNLOCK from the error path in local_timer, there is no LOCK
217796  Add missing case for Direct Attach 82598 in the dynamic phy detection
217797  Performance: don't run flow control shared code if nothing has changed

Approved by:  re (bz)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
217712  Fix a couple of incorrect variable names in the sysctl code.
217713  - Panic on the 82598 adapter due to reading FCOE registers that don't exit
        - Make phy detection dynamic so adapters that support multiple types of
          media can be properly identified by the interface layer
        - Performance patch to the flow director (ixgbe_atr) code
        - Fix intermittent data corruption on the 82599
        - Add missing support code for buffer size and descriptors when doing
          jumbo frames, also add 16K cluster support.
        - Release RX lock when calling stack, this removes LOR problems.
217795  Remove TX_UNLOCK from the error path in local_timer, there is no LOCK
217796  Add missing case for Direct Attach 82598 in the dynamic phy detection
217797  Performance: don't run flow control shared code if nothing has changed

Approved by:  re (bz)
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove bogus logic in the TX path, when using</title>
<updated>2010-12-10T22:59:09+00:00</updated>
<author>
<name>Jack F Vogel</name>
<email>jfv@FreeBSD.org</email>
</author>
<published>2010-12-10T22:59:09+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=bfcd155399cb193af121e6935a06efb69ba35d3c'/>
<id>bfcd155399cb193af121e6935a06efb69ba35d3c</id>
<content type='text'>
VLANs and HW_TAGGING in IPv6 the tag is not yet
in the frame, and thus an ICMP6 packet fails this
condition and does not get sent.

Approved by: re
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
VLANs and HW_TAGGING in IPv6 the tag is not yet
in the frame, and thus an ICMP6 packet fails this
condition and does not get sent.

Approved by: re
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC:  r215911, r215913, r215914</title>
<updated>2010-11-28T03:41:32+00:00</updated>
<author>
<name>Jack F Vogel</name>
<email>jfv@FreeBSD.org</email>
</author>
<published>2010-11-28T03:41:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1dfdd9f7c49d362ef7559b47fd1d4257d4ce524f'/>
<id>1dfdd9f7c49d362ef7559b47fd1d4257d4ce524f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC r215034:</title>
<updated>2010-11-20T20:34:13+00:00</updated>
<author>
<name>Rebecca Cran</name>
<email>brucec@FreeBSD.org</email>
</author>
<published>2010-11-20T20:34:13+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=930669267fa1b5f61d8cb497a82a1e5d9495be0c'/>
<id>930669267fa1b5f61d8cb497a82a1e5d9495be0c</id>
<content type='text'>
Fix typos.

PR:	bin/148894
Submitted by:	olgeni
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix typos.

PR:	bin/148894
Submitted by:	olgeni
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC r211913:</title>
<updated>2010-09-27T17:54:04+00:00</updated>
<author>
<name>Pyun YongHyeon</name>
<email>yongari@FreeBSD.org</email>
</author>
<published>2010-09-27T17:54:04+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=6b959929f0ef75dc6f4c3b901ebf6838068bf73f'/>
<id>6b959929f0ef75dc6f4c3b901ebf6838068bf73f</id>
<content type='text'>
  Do not allocate multicast array memory in multicast filter
  configuration function. For failed memory allocations, em(4)/lem(4)
  called panic(9) which is not acceptable on production box.
  igb(4)/ixgb(4)/ix(4) allocated the required memory in stack which
  consumed 768 bytes of stack memory which looks too big.

  To address these issues, allocate multicast array memory in device
  attach time and make multicast configuration success under any
  conditions. This change also removes the excessive use of memory in
  stack.

  Reviewed by:	jfv
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Do not allocate multicast array memory in multicast filter
  configuration function. For failed memory allocations, em(4)/lem(4)
  called panic(9) which is not acceptable on production box.
  igb(4)/ixgb(4)/ix(4) allocated the required memory in stack which
  consumed 768 bytes of stack memory which looks too big.

  To address these issues, allocate multicast array memory in device
  attach time and make multicast configuration success under any
  conditions. This change also removes the excessive use of memory in
  stack.

  Reviewed by:	jfv
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC r211907:</title>
<updated>2010-09-27T17:49:05+00:00</updated>
<author>
<name>Pyun YongHyeon</name>
<email>yongari@FreeBSD.org</email>
</author>
<published>2010-09-27T17:49:05+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=504a807e2e1c478ebda9006a9fa8d69098ecf5f9'/>
<id>504a807e2e1c478ebda9006a9fa8d69098ecf5f9</id>
<content type='text'>
  Do not call voluntary panic(9) in case of if_alloc() failure.

  Reviewed by:	jfv
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Do not call voluntary panic(9) in case of if_alloc() failure.

  Reviewed by:	jfv
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC of ixgbe driver version 2.2.1</title>
<updated>2010-06-18T16:36:57+00:00</updated>
<author>
<name>Jack F Vogel</name>
<email>jfv@FreeBSD.org</email>
</author>
<published>2010-06-18T16:36:57+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f5707abfd3f49dfdf429871cc4a9ce0a182c3a38'/>
<id>f5707abfd3f49dfdf429871cc4a9ce0a182c3a38</id>
<content type='text'>
  -mostly stability fixes

MFC to RELENG 8.1 asap
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  -mostly stability fixes

MFC to RELENG 8.1 asap
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC of driver version 2.2.0 for 8.1</title>
<updated>2010-05-24T18:00:28+00:00</updated>
<author>
<name>Jack F Vogel</name>
<email>jfv@FreeBSD.org</email>
</author>
<published>2010-05-24T18:00:28+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2a147bb27e89398f3cdc6a42f72c1ca6822660a2'/>
<id>2a147bb27e89398f3cdc6a42f72c1ca6822660a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC of version 2.1.7 of the ixgbe driver.</title>
<updated>2010-04-05T18:46:29+00:00</updated>
<author>
<name>Jack F Vogel</name>
<email>jfv@FreeBSD.org</email>
</author>
<published>2010-04-05T18:46:29+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=d4e2e2a53f013f49b53afe5785c9eba0cab99712'/>
<id>d4e2e2a53f013f49b53afe5785c9eba0cab99712</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC r203834 and r205197: Make ALTQ work for drbr consumers.</title>
<updated>2010-03-18T17:00:44+00:00</updated>
<author>
<name>Max Laier</name>
<email>mlaier@FreeBSD.org</email>
</author>
<published>2010-03-18T17:00:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=29f2c008fd146c26e0bfe5c5f9d11e26ec44974b'/>
<id>29f2c008fd146c26e0bfe5c5f9d11e26ec44974b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
