X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_acl%2Frte_acl.h;h=0d913eedca3e069e8ece24b3a48422414ae714f5;hb=d26c18c93260242328f85927660d1cb2236ada60;hp=0e8233904813270be31840f7203484bd83531ef3;hpb=074f54ad03ee0c84dcae235933e2b426208fe591;p=dpdk.git diff --git a/lib/librte_acl/rte_acl.h b/lib/librte_acl/rte_acl.h index 0e82339048..0d913eedca 100644 --- a/lib/librte_acl/rte_acl.h +++ b/lib/librte_acl/rte_acl.h @@ -67,7 +67,7 @@ enum { }; /** - * ACL Field defintion. + * ACL Field definition. * Each field in the ACL rule has an associate definition. * It defines the type of field, its size, its offset in the input buffer, * the field index, and the input index. @@ -259,12 +259,12 @@ void rte_acl_reset(struct rte_acl_ctx *ctx); /** - * Avaialble implementations of ACL classify. + * Available implementations of ACL classify. */ enum rte_acl_classify_alg { RTE_ACL_CLASSIFY_DEFAULT = 0, RTE_ACL_CLASSIFY_SCALAR = 1, /**< generic implementation. */ - RTE_ACL_CLASSIFY_SSE = 2, /**< requries SSE4.1 support. */ + RTE_ACL_CLASSIFY_SSE = 2, /**< requires SSE4.1 support. */ }; /** @@ -330,7 +330,7 @@ rte_acl_classify(const struct rte_acl_ctx *ctx, * match per category. * @param alg * Algorithm to be used for the search. - * It is the caller responibility to ensure that the value refers to the + * It is the caller responsibility to ensure that the value refers to the * existing algorithm, and that it could be run on the given CPU. * @return * zero on successful completion. @@ -349,7 +349,7 @@ rte_acl_classify_alg(const struct rte_acl_ctx *ctx, * ACL context to change classify function for. * @param alg * New default classify algorithm for given ACL context. - * It is the caller responibility to ensure that the value refers to the + * It is the caller responsibility to ensure that the value refers to the * existing algorithm, and that it could be run on the given CPU. * @return * - -EINVAL if the parameters are invalid.