l2t.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * Copyright (c) 2003-2008 Chelsio, Inc. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. */
  32. #ifndef _CHELSIO_L2T_H
  33. #define _CHELSIO_L2T_H
  34. #include <linux/spinlock.h>
  35. #include "t3cdev.h"
  36. #include <linux/atomic.h>
  37. enum {
  38. L2T_STATE_VALID, /* entry is up to date */
  39. L2T_STATE_STALE, /* entry may be used but needs revalidation */
  40. L2T_STATE_RESOLVING, /* entry needs address resolution */
  41. L2T_STATE_UNUSED /* entry not in use */
  42. };
  43. struct neighbour;
  44. struct sk_buff;
  45. /*
  46. * Each L2T entry plays multiple roles. First of all, it keeps state for the
  47. * corresponding entry of the HW L2 table and maintains a queue of offload
  48. * packets awaiting address resolution. Second, it is a node of a hash table
  49. * chain, where the nodes of the chain are linked together through their next
  50. * pointer. Finally, each node is a bucket of a hash table, pointing to the
  51. * first element in its chain through its first pointer.
  52. */
  53. struct l2t_entry {
  54. u16 state; /* entry state */
  55. u16 idx; /* entry index */
  56. u32 addr; /* dest IP address */
  57. int ifindex; /* neighbor's net_device's ifindex */
  58. u16 smt_idx; /* SMT index */
  59. u16 vlan; /* VLAN TCI (id: bits 0-11, prio: 13-15 */
  60. struct neighbour *neigh; /* associated neighbour */
  61. struct l2t_entry *first; /* start of hash chain */
  62. struct l2t_entry *next; /* next l2t_entry on chain */
  63. struct sk_buff_head arpq; /* queue of packets awaiting resolution */
  64. spinlock_t lock;
  65. atomic_t refcnt; /* entry reference count */
  66. u8 dmac[6]; /* neighbour's MAC address */
  67. };
  68. struct l2t_data {
  69. unsigned int nentries; /* number of entries */
  70. struct l2t_entry *rover; /* starting point for next allocation */
  71. atomic_t nfree; /* number of free entries */
  72. rwlock_t lock;
  73. struct l2t_entry l2tab[0];
  74. struct rcu_head rcu_head; /* to handle rcu cleanup */
  75. };
  76. typedef void (*arp_failure_handler_func)(struct t3cdev * dev,
  77. struct sk_buff * skb);
  78. /*
  79. * Callback stored in an skb to handle address resolution failure.
  80. */
  81. struct l2t_skb_cb {
  82. arp_failure_handler_func arp_failure_handler;
  83. };
  84. #define L2T_SKB_CB(skb) ((struct l2t_skb_cb *)(skb)->cb)
  85. static inline void set_arp_failure_handler(struct sk_buff *skb,
  86. arp_failure_handler_func hnd)
  87. {
  88. L2T_SKB_CB(skb)->arp_failure_handler = hnd;
  89. }
  90. /*
  91. * Getting to the L2 data from an offload device.
  92. */
  93. #define L2DATA(cdev) (rcu_dereference((cdev)->l2opt))
  94. #define W_TCB_L2T_IX 0
  95. #define S_TCB_L2T_IX 7
  96. #define M_TCB_L2T_IX 0x7ffULL
  97. #define V_TCB_L2T_IX(x) ((x) << S_TCB_L2T_IX)
  98. void t3_l2e_free(struct l2t_data *d, struct l2t_entry *e);
  99. void t3_l2t_update(struct t3cdev *dev, struct neighbour *neigh);
  100. struct l2t_entry *t3_l2t_get(struct t3cdev *cdev, struct dst_entry *dst,
  101. struct net_device *dev, const void *daddr);
  102. int t3_l2t_send_slow(struct t3cdev *dev, struct sk_buff *skb,
  103. struct l2t_entry *e);
  104. void t3_l2t_send_event(struct t3cdev *dev, struct l2t_entry *e);
  105. struct l2t_data *t3_init_l2t(unsigned int l2t_capacity);
  106. void t3_free_l2t(struct l2t_data *d);
  107. int cxgb3_ofld_send(struct t3cdev *dev, struct sk_buff *skb);
  108. static inline int l2t_send(struct t3cdev *dev, struct sk_buff *skb,
  109. struct l2t_entry *e)
  110. {
  111. if (likely(e->state == L2T_STATE_VALID))
  112. return cxgb3_ofld_send(dev, skb);
  113. return t3_l2t_send_slow(dev, skb, e);
  114. }
  115. static inline void l2t_release(struct t3cdev *t, struct l2t_entry *e)
  116. {
  117. struct l2t_data *d;
  118. rcu_read_lock();
  119. d = L2DATA(t);
  120. if (atomic_dec_and_test(&e->refcnt) && d)
  121. t3_l2e_free(d, e);
  122. rcu_read_unlock();
  123. }
  124. static inline void l2t_hold(struct l2t_data *d, struct l2t_entry *e)
  125. {
  126. if (d && atomic_add_return(1, &e->refcnt) == 1) /* 0 -> 1 transition */
  127. atomic_dec(&d->nfree);
  128. }
  129. #endif