Lines Matching refs:ipsec

103 	struct ixgbevf_ipsec *ipsec = adapter->ipsec;  in ixgbevf_ipsec_restore()  local
112 struct rx_sa *r = &ipsec->rx_tbl[i]; in ixgbevf_ipsec_restore()
113 struct tx_sa *t = &ipsec->tx_tbl[i]; in ixgbevf_ipsec_restore()
140 int ixgbevf_ipsec_find_empty_idx(struct ixgbevf_ipsec *ipsec, bool rxtable) in ixgbevf_ipsec_find_empty_idx() argument
145 if (ipsec->num_rx_sa == IXGBE_IPSEC_MAX_SA_COUNT) in ixgbevf_ipsec_find_empty_idx()
150 if (!ipsec->rx_tbl[i].used) in ixgbevf_ipsec_find_empty_idx()
154 if (ipsec->num_tx_sa == IXGBE_IPSEC_MAX_SA_COUNT) in ixgbevf_ipsec_find_empty_idx()
159 if (!ipsec->tx_tbl[i].used) in ixgbevf_ipsec_find_empty_idx()
178 struct xfrm_state *ixgbevf_ipsec_find_rx_state(struct ixgbevf_ipsec *ipsec, in ixgbevf_ipsec_find_rx_state() argument
186 hash_for_each_possible_rcu(ipsec->rx_sa_list, rsa, hlist, in ixgbevf_ipsec_find_rx_state()
265 struct ixgbevf_ipsec *ipsec = adapter->ipsec; in ixgbevf_ipsec_add_sa() local
284 ret = ixgbevf_ipsec_find_empty_idx(ipsec, true); in ixgbevf_ipsec_add_sa()
325 memcpy(&ipsec->rx_tbl[sa_idx], &rsa, sizeof(rsa)); in ixgbevf_ipsec_add_sa()
329 ipsec->num_rx_sa++; in ixgbevf_ipsec_add_sa()
332 hash_add_rcu(ipsec->rx_sa_list, &ipsec->rx_tbl[sa_idx].hlist, in ixgbevf_ipsec_add_sa()
338 ret = ixgbevf_ipsec_find_empty_idx(ipsec, false); in ixgbevf_ipsec_add_sa()
365 memcpy(&ipsec->tx_tbl[sa_idx], &tsa, sizeof(tsa)); in ixgbevf_ipsec_add_sa()
369 ipsec->num_tx_sa++; in ixgbevf_ipsec_add_sa()
383 struct ixgbevf_ipsec *ipsec = adapter->ipsec; in ixgbevf_ipsec_del_sa() local
389 if (!ipsec->rx_tbl[sa_idx].used) { in ixgbevf_ipsec_del_sa()
395 ixgbevf_ipsec_del_pf_sa(adapter, ipsec->rx_tbl[sa_idx].pfsa); in ixgbevf_ipsec_del_sa()
396 hash_del_rcu(&ipsec->rx_tbl[sa_idx].hlist); in ixgbevf_ipsec_del_sa()
397 memset(&ipsec->rx_tbl[sa_idx], 0, sizeof(struct rx_sa)); in ixgbevf_ipsec_del_sa()
398 ipsec->num_rx_sa--; in ixgbevf_ipsec_del_sa()
402 if (!ipsec->tx_tbl[sa_idx].used) { in ixgbevf_ipsec_del_sa()
408 ixgbevf_ipsec_del_pf_sa(adapter, ipsec->tx_tbl[sa_idx].pfsa); in ixgbevf_ipsec_del_sa()
409 memset(&ipsec->tx_tbl[sa_idx], 0, sizeof(struct tx_sa)); in ixgbevf_ipsec_del_sa()
410 ipsec->num_tx_sa--; in ixgbevf_ipsec_del_sa()
451 struct ixgbevf_ipsec *ipsec = adapter->ipsec; in ixgbevf_ipsec_tx() local
478 tsa = &ipsec->tx_tbl[sa_idx]; in ixgbevf_ipsec_tx()
546 struct ixgbevf_ipsec *ipsec = adapter->ipsec; in ixgbevf_ipsec_rx() local
587 xs = ixgbevf_ipsec_find_rx_state(ipsec, daddr, proto, spi, !!ip4); in ixgbevf_ipsec_rx()
610 struct ixgbevf_ipsec *ipsec; in ixgbevf_init_ipsec_offload() local
620 ipsec = kzalloc(sizeof(*ipsec), GFP_KERNEL); in ixgbevf_init_ipsec_offload()
621 if (!ipsec) in ixgbevf_init_ipsec_offload()
623 hash_init(ipsec->rx_sa_list); in ixgbevf_init_ipsec_offload()
626 ipsec->rx_tbl = kzalloc(size, GFP_KERNEL); in ixgbevf_init_ipsec_offload()
627 if (!ipsec->rx_tbl) in ixgbevf_init_ipsec_offload()
631 ipsec->tx_tbl = kzalloc(size, GFP_KERNEL); in ixgbevf_init_ipsec_offload()
632 if (!ipsec->tx_tbl) in ixgbevf_init_ipsec_offload()
635 ipsec->num_rx_sa = 0; in ixgbevf_init_ipsec_offload()
636 ipsec->num_tx_sa = 0; in ixgbevf_init_ipsec_offload()
638 adapter->ipsec = ipsec; in ixgbevf_init_ipsec_offload()
652 kfree(ipsec->rx_tbl); in ixgbevf_init_ipsec_offload()
653 kfree(ipsec->tx_tbl); in ixgbevf_init_ipsec_offload()
654 kfree(ipsec); in ixgbevf_init_ipsec_offload()
665 struct ixgbevf_ipsec *ipsec = adapter->ipsec; in ixgbevf_stop_ipsec_offload() local
667 adapter->ipsec = NULL; in ixgbevf_stop_ipsec_offload()
668 if (ipsec) { in ixgbevf_stop_ipsec_offload()
669 kfree(ipsec->rx_tbl); in ixgbevf_stop_ipsec_offload()
670 kfree(ipsec->tx_tbl); in ixgbevf_stop_ipsec_offload()
671 kfree(ipsec); in ixgbevf_stop_ipsec_offload()