From patchwork Wed Aug 9 03:39:07 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Alemayhu X-Patchwork-Id: 799522 X-Patchwork-Delegate: shemminger@vyatta.com Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=patches.alemayhu.com header.i=@patches.alemayhu.com header.b="KGvd8/1C"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3xRxwd0MK4z9s65 for ; Wed, 9 Aug 2017 13:44:48 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752561AbdHIDok (ORCPT ); Tue, 8 Aug 2017 23:44:40 -0400 Received: from rs224.mailgun.us ([209.61.151.224]:62941 "EHLO rs224.mailgun.us" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752497AbdHIDoj (ORCPT ); Tue, 8 Aug 2017 23:44:39 -0400 X-Greylist: delayed 308 seconds by postgrey-1.27 at vger.kernel.org; Tue, 08 Aug 2017 23:44:39 EDT DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=patches.alemayhu.com; q=dns/txt; s=mailo; t=1502250279; h=Message-Id: Date: Subject: Cc: To: From: Sender; bh=hmwkpZdhD1sYHfPCmnF4S8QXxnLwXD/lPjpnv3EOt5M=; b=KGvd8/1CAGbVdUIFwcxttKnpG4iCWCYuQwOabvezk9QH33v8rsVn2HAskh2O8VaiptamnGdL JsMgEIBnXBmr42gFm10DQ+rgbcn+xYblZ5gVJsETvw9gt5kPFygpUFMkfcqF5bVx8wngd22D k/3tK+w2wnPWJ17cBa7SG/72jDU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=patches.alemayhu.com; s=mailo; q=dns; h=Sender: From: To: Cc: Subject: Date: Message-Id; b=CJMWx7Cy+kLmm+eZHS4NnZSNbItMaWgiQzFPAIMcmQWcp/UVZF0B7ffXC+vMXI0F1kbYmy AoZxcHp0upkeLRaf83tk6H/dyZoYxPOLSQaKo4OK7YjO9HRj//tW+z3tBXY7Cut2FWbtL0yD vkXWccnM80Ao61Qbk80z5K+fPRwzw= X-Mailgun-Sending-Ip: 209.61.151.224 X-Mailgun-Sid: WyI0ZjliYSIsICJuZXRkZXZAdmdlci5rZXJuZWwub3JnIiwgIjg0ZGFmOSJd Received: from localhost (cm-84.209.242.8.getinternet.no [84.209.242.8]) by mxa.mailgun.org with ESMTP id 598a83f2.7fce06fe3f90-smtp-out-n03; Wed, 09 Aug 2017 03:39:30 -0000 (UTC) From: Alexander Alemayhu To: netdev@vger.kernel.org Cc: stephen@networkplumber.org, Alexander Alemayhu Subject: [PATCH iproute2 master] examples/bpf: update list of examples Date: Wed, 9 Aug 2017 05:39:07 +0200 Message-Id: <20170809033907.9194-1-alexander@alemayhu.com> X-Mailer: git-send-email 2.13.3 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Remove deleted examples and add the new map in map example. Signed-off-by: Alexander Alemayhu Acked-by: Daniel Borkmann --- examples/bpf/README | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/examples/bpf/README b/examples/bpf/README index 4247257850eb..1bbdda3f8dc1 100644 --- a/examples/bpf/README +++ b/examples/bpf/README @@ -1,13 +1,8 @@ eBPF toy code examples (running in kernel) to familiarize yourself with syntax and features: - - bpf_prog.c -> Classifier examples with using maps - bpf_shared.c -> Ingress/egress map sharing example - bpf_tailcall.c -> Using tail call chains - bpf_cyclic.c -> Simple cycle as tail calls - bpf_graft.c -> Demo on altering runtime behaviour - -User space code example: - - - bpf_agent.c -> Counterpart to bpf_prog.c for user - space to transfer/read out map data + - bpf_map_in_map.c -> Using map in map example