~ubuntu-branches/ubuntu/precise/linux-lts-raring/precise-proposed

« back to all changes in this revision

Viewing changes to drivers/net/team/team_mode_roundrobin.c

  • Committer: Package Import Robot
  • Author(s): Brad Figg, Brad Figg
  • Date: 2013-07-08 16:06:32 UTC
  • Revision ID: package-import@ubuntu.com-20130708160632-4v4dxvoo3oi1nihu
Tags: 3.8.0-27.40~precise1
[Brad Figg]

* Release Tracking Bug
  - LP: #1199255

[Brad Figg]

* UBUNTU: [Config] CONFIG_ARM_ERRATA_643719=y

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
 
53
53
        port_index = rr_priv(team)->sent_packets++ % team->en_port_count;
54
54
        port = team_get_port_by_index_rcu(team, port_index);
 
55
        if (unlikely(!port))
 
56
                goto drop;
55
57
        port = __get_first_port_up(team, port);
56
58
        if (unlikely(!port))
57
59
                goto drop;