@@ -157,7 +157,7 @@ static void __ovs_ct_update_key(struct sw_flow_key *key, u8 state,
157
157
ovs_ct_get_labels (ct , & key -> ct .labels );
158
158
}
159
159
160
- /* Update 'key' based on skb->nfct . If 'post_ct' is true, then OVS has
160
+ /* Update 'key' based on skb->_nfct . If 'post_ct' is true, then OVS has
161
161
* previously sent the packet to conntrack via the ct action. If
162
162
* 'keep_nat_flags' is true, the existing NAT flags retained, else they are
163
163
* initialized from the connection status.
@@ -421,12 +421,12 @@ ovs_ct_get_info(const struct nf_conntrack_tuple_hash *h)
421
421
422
422
/* Find an existing connection which this packet belongs to without
423
423
* re-attributing statistics or modifying the connection state. This allows an
424
- * skb->nfct lost due to an upcall to be recovered during actions execution.
424
+ * skb->_nfct lost due to an upcall to be recovered during actions execution.
425
425
*
426
426
* Must be called with rcu_read_lock.
427
427
*
428
- * On success, populates skb->nfct and skb->nfctinfo, and returns the
429
- * connection. Returns NULL if there is no existing entry.
428
+ * On success, populates skb->_nfct and returns the connection. Returns NULL
429
+ * if there is no existing entry.
430
430
*/
431
431
static struct nf_conn *
432
432
ovs_ct_find_existing (struct net * net , const struct nf_conntrack_zone * zone ,
@@ -464,7 +464,7 @@ ovs_ct_find_existing(struct net *net, const struct nf_conntrack_zone *zone,
464
464
return ct ;
465
465
}
466
466
467
- /* Determine whether skb->nfct is equal to the result of conntrack lookup. */
467
+ /* Determine whether skb->_nfct is equal to the result of conntrack lookup. */
468
468
static bool skb_nfct_cached (struct net * net ,
469
469
const struct sw_flow_key * key ,
470
470
const struct ovs_conntrack_info * info ,
@@ -475,7 +475,7 @@ static bool skb_nfct_cached(struct net *net,
475
475
476
476
ct = nf_ct_get (skb , & ctinfo );
477
477
/* If no ct, check if we have evidence that an existing conntrack entry
478
- * might be found for this skb. This happens when we lose a skb->nfct
478
+ * might be found for this skb. This happens when we lose a skb->_nfct
479
479
* due to an upcall. If the connection was not confirmed, it is not
480
480
* cached and needs to be run through conntrack again.
481
481
*/
@@ -699,7 +699,7 @@ static int ovs_ct_nat(struct net *net, struct sw_flow_key *key,
699
699
/* Pass 'skb' through conntrack in 'net', using zone configured in 'info', if
700
700
* not done already. Update key with new CT state after passing the packet
701
701
* through conntrack.
702
- * Note that if the packet is deemed invalid by conntrack, skb->nfct will be
702
+ * Note that if the packet is deemed invalid by conntrack, skb->_nfct will be
703
703
* set to NULL and 0 will be returned.
704
704
*/
705
705
static int __ovs_ct_lookup (struct net * net , struct sw_flow_key * key ,
0 commit comments