]> git.karo-electronics.de Git - linux-beck.git/blobdiff - net/openvswitch/datapath.h
Merge tag 'trace-v4.6' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux...
[linux-beck.git] / net / openvswitch / datapath.h
index 67bdecd9fdc1f2b0544c2081aa1a557b16e0063a..427e39a045cf2d98aff3add0b4a9f47c50c467f4 100644 (file)
@@ -68,6 +68,8 @@ struct dp_stats_percpu {
  * ovs_mutex and RCU.
  * @stats_percpu: Per-CPU datapath statistics.
  * @net: Reference to net namespace.
+ * @max_headroom: the maximum headroom of all vports in this datapath; it will
+ * be used by all the internal vports in this dp.
  *
  * Context: See the comment on locking at the top of datapath.c for additional
  * locking information.
@@ -89,6 +91,8 @@ struct datapath {
        possible_net_t net;
 
        u32 user_features;
+
+       u32 max_headroom;
 };
 
 /**