| .. | .. |
|---|
| 5 | 5 | #include <linux/list.h> |
|---|
| 6 | 6 | #include <linux/wait.h> |
|---|
| 7 | 7 | #include <linux/workqueue.h> |
|---|
| 8 | +#include <linux/rhashtable-types.h> |
|---|
| 8 | 9 | #include <linux/xfrm.h> |
|---|
| 10 | +#include <linux/android_kabi.h> |
|---|
| 9 | 11 | #include <net/dst_ops.h> |
|---|
| 10 | 12 | |
|---|
| 11 | 13 | struct ctl_table_header; |
|---|
| .. | .. |
|---|
| 53 | 55 | unsigned int policy_count[XFRM_POLICY_MAX * 2]; |
|---|
| 54 | 56 | struct work_struct policy_hash_work; |
|---|
| 55 | 57 | struct xfrm_policy_hthresh policy_hthresh; |
|---|
| 58 | + struct list_head inexact_bins; |
|---|
| 56 | 59 | |
|---|
| 57 | 60 | |
|---|
| 58 | 61 | struct sock *nlsk; |
|---|
| .. | .. |
|---|
| 70 | 73 | #if IS_ENABLED(CONFIG_IPV6) |
|---|
| 71 | 74 | struct dst_ops xfrm6_dst_ops; |
|---|
| 72 | 75 | #endif |
|---|
| 73 | | - spinlock_t xfrm_state_lock; |
|---|
| 76 | + spinlock_t xfrm_state_lock; |
|---|
| 77 | + seqcount_t xfrm_state_hash_generation; |
|---|
| 78 | + |
|---|
| 74 | 79 | spinlock_t xfrm_policy_lock; |
|---|
| 75 | 80 | struct mutex xfrm_cfg_mutex; |
|---|
| 81 | + |
|---|
| 82 | + ANDROID_KABI_RESERVE(1); |
|---|
| 76 | 83 | }; |
|---|
| 77 | 84 | |
|---|
| 78 | 85 | #endif |
|---|