ila.h 308 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * ILA kernel interface
  4. *
  5. * Copyright (c) 2015 Tom Herbert <[email protected]>
  6. */
  7. #ifndef _NET_ILA_H
  8. #define _NET_ILA_H
  9. struct sk_buff;
  10. int ila_xlat_outgoing(struct sk_buff *skb);
  11. int ila_xlat_incoming(struct sk_buff *skb);
  12. #endif /* _NET_ILA_H */