From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from userp2130.oracle.com (userp2130.oracle.com [156.151.31.86]) by sourceware.org (Postfix) with ESMTPS id 191BF3858D35 for ; Mon, 3 Aug 2020 15:04:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 191BF3858D35 Received: from pps.filterd (userp2130.oracle.com [127.0.0.1]) by userp2130.oracle.com (8.16.0.42/8.16.0.42) with SMTP id 073F38vA057676; Mon, 3 Aug 2020 15:04:11 GMT Received: from aserp3020.oracle.com (aserp3020.oracle.com [141.146.126.70]) by userp2130.oracle.com with ESMTP id 32pdnq28jc-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 03 Aug 2020 15:04:09 +0000 Received: from pps.filterd (aserp3020.oracle.com [127.0.0.1]) by aserp3020.oracle.com (8.16.0.42/8.16.0.42) with SMTP id 073F2mjk194509; Mon, 3 Aug 2020 15:04:08 GMT Received: from aserv0121.oracle.com (aserv0121.oracle.com [141.146.126.235]) by aserp3020.oracle.com with ESMTP id 32pdnnh5af-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 03 Aug 2020 15:04:08 +0000 Received: from abhmp0010.oracle.com (abhmp0010.oracle.com [141.146.116.16]) by aserv0121.oracle.com (8.14.4/8.13.8) with ESMTP id 073F47SY003564; Mon, 3 Aug 2020 15:04:07 GMT Received: from termi.oracle.com (/10.175.1.95) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Mon, 03 Aug 2020 08:04:07 -0700 From: "Jose E. Marchesi" To: Eli Zaretskii Cc: gdb-patches@sourceware.org Subject: Re: [PATCH V6 1/3] gdb: support for eBPF References: <20200803140237.14476-1-jose.marchesi@oracle.com> <20200803140237.14476-2-jose.marchesi@oracle.com> <834kpjbx42.fsf@gnu.org> Date: Mon, 03 Aug 2020 17:04:04 +0200 In-Reply-To: <834kpjbx42.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 03 Aug 2020 17:52:13 +0300") Message-ID: <87eeong49n.fsf@oracle.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=nai engine=6000 definitions=9702 signatures=668679 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=9 spamscore=0 mlxscore=0 bulkscore=0 adultscore=0 phishscore=0 malwarescore=0 mlxlogscore=999 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2006250000 definitions=main-2008030114 X-Proofpoint-Virus-Version: vendor=nai engine=6000 definitions=9702 signatures=668679 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 impostorscore=0 mlxscore=0 suspectscore=9 clxscore=1015 priorityscore=1501 bulkscore=0 adultscore=0 malwarescore=0 phishscore=0 mlxlogscore=999 spamscore=0 lowpriorityscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2006250000 definitions=main-2008030114 X-Spam-Status: No, score=-4.9 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_MSPIKE_H2, SPF_HELO_PASS, SPF_PASS, TXREP, UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Aug 2020 15:04:20 -0000 Hi Eli. >> Date: Mon, 3 Aug 2020 16:02:35 +0200 >> From: "Jose E. Marchesi via Gdb-patches" >> >> This patch adds basic support for the eBPF target: tdep and build >> machinery. The accompanying simulator is introduced in subsequent >> patches. >> >> gdb/ChangeLog: >> >> 2020-08-03 Weimin Pan >> Jose E. Marchesi >> >> * configure.tgt: Add entry for bpf-*-*. >> * Makefile.in (ALL_TARGET_OBS): Add bpf-tdep.o >> (ALLDEPFILES): Add bpf-tdep.c. >> * bpf-tdep.c: New file. >> * MAINTAINERS: Add bpf target and maintainer. >> >> gdb/doc/ChangeLog: >> >> 2020-08-03 Jose E. Marchesi >> >> * gdb.texinfo (Contributors): Add information for the eBPF >> support. >> (BPF): New section. > > Thanks. > >> @@ -24381,6 +24385,7 @@ acceptable commands. >> @menu >> * ARC:: Synopsys ARC >> * ARM:: ARM >> +* BPF:: eBPF > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > Please don't use TABs in Texinfo sources. > > Also, I think this should be called out in NEWS. > > The documentation part is OK with these nits fixed. Will fix the tabs and add a note in NEWS. Thanks.