Skip to content

Commit

Permalink
Merge pull request #168 from lukego/intel_no_loopback
Browse files Browse the repository at this point in the history
intel10g: Fix to avoid multicast traffic looping back to sender.
  • Loading branch information
lukego committed May 9, 2014
2 parents 3aaa0f2 + 101173a commit 3a5fb9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/intel/intel10g.lua
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ function M_vf:init_transmit ()
local poolnum = self.poolnum or 0
self.r.TXDCTL:clr(bits{Enable=25})
self:set_transmit_descriptors()
self.pf.r.PFVMTXSW[math.floor(poolnum/32)]:set(bits{LLE=poolnum%32})
self.pf.r.PFVMTXSW[math.floor(poolnum/32)]:clr(bits{LLE=poolnum%32})
self.pf.r.PFVFTE[math.floor(poolnum/32)]:set(bits{VFTE=poolnum%32})
self.pf.r.RTTDQSEL(poolnum)
self.pf.r.RTTDT1C(0x2000)
Expand Down

0 comments on commit 3a5fb9d

Please sign in to comment.