From patchwork Fri Jul 31 18:28:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrii Nakryiko X-Patchwork-Id: 1339548 X-Patchwork-Delegate: bpf@iogearbox.net Return-Path: X-Original-To: incoming-bpf@patchwork.ozlabs.org Delivered-To: patchwork-incoming-bpf@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=bpf-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=pass (p=reject dis=none) header.from=fb.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=fb.com header.i=@fb.com header.a=rsa-sha256 header.s=facebook header.b=jI+kXod4; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by ozlabs.org (Postfix) with ESMTP id 4BJG506yvYz9sTY for ; Sat, 1 Aug 2020 04:28:52 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387911AbgGaS2w (ORCPT ); Fri, 31 Jul 2020 14:28:52 -0400 Received: from mx0a-00082601.pphosted.com ([67.231.145.42]:39208 "EHLO mx0a-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387907AbgGaS2u (ORCPT ); Fri, 31 Jul 2020 14:28:50 -0400 Received: from pps.filterd (m0044012.ppops.net [127.0.0.1]) by mx0a-00082601.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 06VIGQPT000780 for ; Fri, 31 Jul 2020 11:28:49 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fb.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=facebook; bh=JgfEaGwNQRVUqJr1ZSWmaVimqm5x282W48cubRvrXek=; b=jI+kXod4DW2ig+rcNzGnhg5SEv/8oIdKYTYtujj19TWBbhHllxBtSnB402S6yg/7bFcx U2zW+iQQC7E5qqZs9E5Hyh2Fr66evQEFumVvJ5NGlvGtJhJCQSyZMjJRv7opac8WCh0A gxcRZyMXE5jBCQiagii0f98we0S2EY4Ny8g= Received: from maileast.thefacebook.com ([163.114.130.16]) by mx0a-00082601.pphosted.com with ESMTP id 32mn7g94e8-2 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT) for ; Fri, 31 Jul 2020 11:28:49 -0700 Received: from intmgw002.08.frc2.facebook.com (2620:10d:c0a8:1b::d) by mail.thefacebook.com (2620:10d:c0a8:83::4) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1979.3; Fri, 31 Jul 2020 11:28:47 -0700 Received: by devbig012.ftw2.facebook.com (Postfix, from userid 137359) id 050E92EC4E02; Fri, 31 Jul 2020 11:28:42 -0700 (PDT) Smtp-Origin-Hostprefix: devbig From: Andrii Nakryiko Smtp-Origin-Hostname: devbig012.ftw2.facebook.com To: , , , CC: , , Andrii Nakryiko , Song Liu Smtp-Origin-Cluster: ftw2c04 Subject: [PATCH v2 bpf-next 5/5] tools/bpftool: add documentation and bash-completion for `link detach` Date: Fri, 31 Jul 2020 11:28:30 -0700 Message-ID: <20200731182830.286260-6-andriin@fb.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200731182830.286260-1-andriin@fb.com> References: <20200731182830.286260-1-andriin@fb.com> MIME-Version: 1.0 X-FB-Internal: Safe X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.235, 18.0.687 definitions=2020-07-31_07:2020-07-31,2020-07-31 signatures=0 X-Proofpoint-Spam-Details: rule=fb_default_notspam policy=fb_default score=0 phishscore=0 adultscore=0 impostorscore=0 mlxlogscore=985 mlxscore=0 priorityscore=1501 clxscore=1015 suspectscore=8 bulkscore=0 spamscore=0 lowpriorityscore=0 malwarescore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2006250000 definitions=main-2007310137 X-FB-Internal: deliver Sender: bpf-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: bpf@vger.kernel.org Add info on link detach sub-command to man page. Add detach to bash-completion as well. Acked-by: Song Liu Signed-off-by: Andrii Nakryiko Acked-by: John Fastabend