From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-bk0-f42.google.com (mail-bk0-f42.google.com [209.85.214.42]) by dpdk.org (Postfix) with ESMTP id 102531F3 for ; Wed, 18 Sep 2013 12:17:05 +0200 (CEST) Received: by mail-bk0-f42.google.com with SMTP id my10so2781463bkb.1 for ; Wed, 18 Sep 2013 03:17:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=4ZT9gV93lSkQmUwJIpcJmXedvruPtVcyLyumrnadISU=; b=WZApy+aWmKptc5LOwjYfrzjbcrjrHisg+vf3to5m4AE1KCGacL4b/OaDvHdaSFZrjb qmQ0rk1J41PlR36a5rQ+DXbvZJdXCr2YbThmx/RYQPuwjCcQXjxRZgw2KBKsMMJsY0Ck JU1mR8FNOXjOh/vwGriOqqg+rYPsDAsZSt8pooNiOU3f8muSzfqpTHRbMTeKYpYp0hOD cJQW/ideGEbw5fRSAYfUXDqW4OpiJKXKPJNTsMPOxHRiQHzYC5utTrMpfLZz73wTXldv r5dxNkwmEMcjFtGti8ZaVUuGus/BDfh7ShUZw7/v61S9FMMG8t7UtqCcSkyquTOuKfxP QMwg== X-Gm-Message-State: ALoCoQkUMl2PvFRxL5Ib5O+WMBWNpFVt0EXvqIxbd2xM4r49qKU/67qWkRzDllktIY8ROMRiysCP X-Received: by 10.204.68.142 with SMTP id v14mr33017049bki.18.1379499464063; Wed, 18 Sep 2013 03:17:44 -0700 (PDT) Received: from 6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by mx.google.com with ESMTPSA id jt14sm514120bkb.0.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 18 Sep 2013 03:17:43 -0700 (PDT) Received: by 6wind.com (sSMTP sendmail emulation); Wed, 18 Sep 2013 12:17:41 +0200 From: Thomas Monjalon To: dev@dpdk.org Date: Wed, 18 Sep 2013 12:17:41 +0200 Message-Id: <1379499461-25593-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 1.7.10.4 Subject: [dpdk-dev] [PATCH] doc: add meter, sched, power and KNI X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Sep 2013 10:17:06 -0000 KNI was new in DPDK 1.3. The libraries meter, sched and power were new in DPDK 1.4. The library sched includes some dependencies: approx, bitmap and red. Signed-off-by: Thomas Monjalon --- doc/doxy-api-index.md | 17 +++++++++++++---- doc/doxy-api.conf | 4 ++++ 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/doc/doxy-api-index.md b/doc/doxy-api-index.md index 24d461f..c4eab24 100644 --- a/doc/doxy-api-index.md +++ b/doc/doxy-api-index.md @@ -37,6 +37,7 @@ There are many libraries, so their headers may be grouped by topics: - **device**: [ethdev] (@ref rte_ethdev.h), + [KNI] (@ref rte_kni.h), [PCI] (@ref rte_pci.h), [PCI IDs] (@ref rte_pci_dev_ids.h) @@ -57,17 +58,18 @@ There are many libraries, so their headers may be grouped by topics: [rwlock] (@ref rte_rwlock.h), [spinlock] (@ref rte_spinlock.h) -- **cpu arch**: +- **CPU arch**: [branch prediction] (@ref rte_branch_prediction.h), [cache prefetch] (@ref rte_prefetch.h), [byte order] (@ref rte_byteorder.h), [CPU flags] (@ref rte_cpuflags.h) -- **cpu multicore**: +- **CPU multicore**: [interrupts] (@ref rte_interrupts.h), [launch] (@ref rte_launch.h), [lcore] (@ref rte_lcore.h), - [per-lcore] (@ref rte_per_lcore.h) + [per-lcore] (@ref rte_per_lcore.h), + [power/freq] (@ref rte_power.h) - **layers**: [ethernet] (@ref rte_ether.h), @@ -77,6 +79,11 @@ There are many libraries, so their headers may be grouped by topics: [UDP] (@ref rte_udp.h), [LPM route] (@ref rte_lpm.h) +- **QoS**: + [metering] (@ref rte_meter.h), + [scheduler] (@ref rte_sched.h), + [RED congestion] (@ref rte_red.h) + - **hashes**: [hash] (@ref rte_hash.h), [jhash] (@ref rte_jhash.h), @@ -86,7 +93,8 @@ There are many libraries, so their headers may be grouped by topics: - **containers**: [mbuf] (@ref rte_mbuf.h), [ring] (@ref rte_ring.h), - [tailq] (@ref rte_tailq.h) + [tailq] (@ref rte_tailq.h), + [bitmap] (@ref rte_bitmap.h) - **debug**: [debug] (@ref rte_debug.h), @@ -97,6 +105,7 @@ There are many libraries, so their headers may be grouped by topics: - **misc**: [EAL config] (@ref rte_eal.h), [common] (@ref rte_common.h), + [approx fraction] (@ref rte_approx.h), [random] (@ref rte_random.h), [string] (@ref rte_string_fns.h), [version] (@ref rte_version.h) diff --git a/doc/doxy-api.conf b/doc/doxy-api.conf index f4d43c2..5d3e4ca 100644 --- a/doc/doxy-api.conf +++ b/doc/doxy-api.conf @@ -33,12 +33,16 @@ INPUT = doc/doxy-api-index.md \ lib/librte_eal/common/include \ lib/librte_ether \ lib/librte_hash \ + lib/librte_kni \ lib/librte_lpm \ lib/librte_malloc \ lib/librte_mbuf \ lib/librte_mempool \ + lib/librte_meter \ lib/librte_net \ + lib/librte_power \ lib/librte_ring \ + lib/librte_sched \ lib/librte_timer FILE_PATTERNS = rte_*.h \ cmdline.h -- 1.7.10.4