diff options
Diffstat (limited to 'src/plugins/avf')
-rw-r--r-- | src/plugins/avf/README.md | 4 | ||||
-rw-r--r-- | src/plugins/avf/output.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/avf/README.md b/src/plugins/avf/README.md index 2ebc1372570..995a557a467 100644 --- a/src/plugins/avf/README.md +++ b/src/plugins/avf/README.md @@ -4,7 +4,7 @@ This plugins provides native device support for intel Adaptive Virtual Function (AVF). AVF is driver specification for current and future Intel Virtual Function devices. AVF defines communication channel between -Physical Funciton (PF) and VF. +Physical Functions (PF) and VF. In essence, today this driver can be used only with Intel XL710 / X710 / XXV710 adapters. @@ -75,7 +75,7 @@ setup 0000:3b:00.0 00:11:22:33:44:00 setup 0000:3b:00.1 00:11:22:33:44:01 ``` -### Interface Cration +### Interface Creation Interfaces can be dynamically created by using following CLI: ``` create interface avf 0000:3b:02.0 diff --git a/src/plugins/avf/output.c b/src/plugins/avf/output.c index a094050d6ac..8f8e82d146c 100644 --- a/src/plugins/avf/output.c +++ b/src/plugins/avf/output.c @@ -61,7 +61,7 @@ VNET_DEVICE_CLASS_TX_FN (avf_device_class) (vlib_main_t * vm, next = txq->next; retry: - /* release cosumed bufs */ + /* release consumed bufs */ if (txq->n_enqueued) { u16 first, slot, n_free = 0; |