doc: add Meson coding style to contributors guide
[dpdk.git] / lib / librte_pipeline / rte_port_in_action.h
index 0a85e4e..d6b063c 100644 (file)
@@ -172,7 +172,8 @@ struct rte_port_in_action_profile;
  * @return
  *   Input port action profile handle on success, NULL otherwise.
  */
-struct rte_port_in_action_profile * __rte_experimental
+__rte_experimental
+struct rte_port_in_action_profile *
 rte_port_in_action_profile_create(uint32_t socket_id);
 
 /**
@@ -183,7 +184,8 @@ rte_port_in_action_profile_create(uint32_t socket_id);
  * @return
  *   Zero on success, non-zero error code otherwise.
  */
-int __rte_experimental
+__rte_experimental
+int
 rte_port_in_action_profile_free(struct rte_port_in_action_profile *profile);
 
 /**
@@ -201,7 +203,8 @@ rte_port_in_action_profile_free(struct rte_port_in_action_profile *profile);
  * @return
  *   Zero on success, non-zero error code otherwise.
  */
-int __rte_experimental
+__rte_experimental
+int
 rte_port_in_action_profile_action_register(
        struct rte_port_in_action_profile *profile,
        enum rte_port_in_action_type type,
@@ -223,7 +226,8 @@ rte_port_in_action_profile_action_register(
  *
  * @see rte_port_in_action_create()
  */
-int __rte_experimental
+__rte_experimental
+int
 rte_port_in_action_profile_freeze(struct rte_port_in_action_profile *profile);
 
 /**
@@ -245,7 +249,8 @@ struct rte_port_in_action;
  * @return
  *   Handle to input port action object on success, NULL on error.
  */
-struct rte_port_in_action * __rte_experimental
+__rte_experimental
+struct rte_port_in_action *
 rte_port_in_action_create(struct rte_port_in_action_profile *profile,
        uint32_t socket_id);
 
@@ -257,7 +262,8 @@ rte_port_in_action_create(struct rte_port_in_action_profile *profile,
  * @return
  *   Zero on success, non-zero error code otherwise.
  */
-int __rte_experimental
+__rte_experimental
+int
 rte_port_in_action_free(struct rte_port_in_action *action);
 
 /**
@@ -270,7 +276,8 @@ rte_port_in_action_free(struct rte_port_in_action *action);
  * @return
  *   Zero on success, non-zero error code otherwise.
  */
-int __rte_experimental
+__rte_experimental
+int
 rte_port_in_action_params_get(struct rte_port_in_action *action,
        struct rte_pipeline_port_in_params *params);
 
@@ -289,7 +296,8 @@ rte_port_in_action_params_get(struct rte_port_in_action *action,
  * @return
  *   Zero on success, non-zero error code otherwise.
  */
-int __rte_experimental
+__rte_experimental
+int
 rte_port_in_action_apply(struct rte_port_in_action *action,
        enum rte_port_in_action_type type,
        void *action_params);