l2t.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * This file is part of the Chelsio T4 Ethernet driver for Linux.
  3. *
  4. * Copyright (c) 2003-2010 Chelsio Communications, Inc. All rights reserved.
  5. *
  6. * This software is available to you under a choice of one of two
  7. * licenses. You may choose to be licensed under the terms of the GNU
  8. * General Public License (GPL) Version 2, available from the file
  9. * COPYING in the main directory of this source tree, or the
  10. * OpenIB.org BSD license below:
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above
  17. * copyright notice, this list of conditions and the following
  18. * disclaimer.
  19. *
  20. * - Redistributions in binary form must reproduce the above
  21. * copyright notice, this list of conditions and the following
  22. * disclaimer in the documentation and/or other materials
  23. * provided with the distribution.
  24. *
  25. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  26. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  28. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  29. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  30. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  31. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  32. * SOFTWARE.
  33. */
  34. #ifndef __CXGB4_L2T_H
  35. #define __CXGB4_L2T_H
  36. #include <linux/spinlock.h>
  37. #include <linux/if_ether.h>
  38. #include <linux/atomic.h>
  39. struct adapter;
  40. struct l2t_data;
  41. struct neighbour;
  42. struct net_device;
  43. struct file_operations;
  44. struct cpl_l2t_write_rpl;
  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[4]; /* next hop IP or IPv6 address */
  57. int ifindex; /* neighbor's net_device's ifindex */
  58. struct neighbour *neigh; /* associated neighbour */
  59. struct l2t_entry *first; /* start of hash chain */
  60. struct l2t_entry *next; /* next l2t_entry on chain */
  61. struct sk_buff *arpq_head; /* queue of packets awaiting resolution */
  62. struct sk_buff *arpq_tail;
  63. spinlock_t lock;
  64. atomic_t refcnt; /* entry reference count */
  65. u16 hash; /* hash bucket the entry is on */
  66. u16 vlan; /* VLAN TCI (id: bits 0-11, prio: 13-15 */
  67. u8 v6; /* whether entry is for IPv6 */
  68. u8 lport; /* associated offload logical interface */
  69. u8 dmac[ETH_ALEN]; /* neighbour's MAC address */
  70. };
  71. typedef void (*arp_err_handler_t)(void *handle, struct sk_buff *skb);
  72. /*
  73. * Callback stored in an skb to handle address resolution failure.
  74. */
  75. struct l2t_skb_cb {
  76. void *handle;
  77. arp_err_handler_t arp_err_handler;
  78. };
  79. #define L2T_SKB_CB(skb) ((struct l2t_skb_cb *)(skb)->cb)
  80. static inline void t4_set_arp_err_handler(struct sk_buff *skb, void *handle,
  81. arp_err_handler_t handler)
  82. {
  83. L2T_SKB_CB(skb)->handle = handle;
  84. L2T_SKB_CB(skb)->arp_err_handler = handler;
  85. }
  86. void cxgb4_l2t_release(struct l2t_entry *e);
  87. int cxgb4_l2t_send(struct net_device *dev, struct sk_buff *skb,
  88. struct l2t_entry *e);
  89. struct l2t_entry *cxgb4_l2t_get(struct l2t_data *d, struct neighbour *neigh,
  90. const struct net_device *physdev,
  91. unsigned int priority);
  92. void t4_l2t_update(struct adapter *adap, struct neighbour *neigh);
  93. struct l2t_data *t4_init_l2t(void);
  94. void do_l2t_write_rpl(struct adapter *p, const struct cpl_l2t_write_rpl *rpl);
  95. extern const struct file_operations t4_l2t_fops;
  96. #endif /* __CXGB4_L2T_H */