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 11E993858D35 for ; Mon, 6 Jul 2020 14:47:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 11E993858D35 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 066EfjZE015807; Mon, 6 Jul 2020 14:46:56 GMT Received: from userp3030.oracle.com (userp3030.oracle.com [156.151.31.80]) by userp2130.oracle.com with ESMTP id 323wacap8f-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 06 Jul 2020 14:46:56 +0000 Received: from pps.filterd (userp3030.oracle.com [127.0.0.1]) by userp3030.oracle.com (8.16.0.42/8.16.0.42) with SMTP id 066Ei7Cp115914; Mon, 6 Jul 2020 14:46:56 GMT Received: from userv0122.oracle.com (userv0122.oracle.com [156.151.31.75]) by userp3030.oracle.com with ESMTP id 3233pvf4s3-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 06 Jul 2020 14:46:56 +0000 Received: from abhmp0001.oracle.com (abhmp0001.oracle.com [141.146.116.7]) by userv0122.oracle.com (8.14.4/8.14.4) with ESMTP id 066EkpHw026590; Mon, 6 Jul 2020 14:46:51 GMT Received: from termi.oracle.com (/10.175.54.43) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Mon, 06 Jul 2020 07:46:50 -0700 From: "Jose E. Marchesi" To: Simon Marchi Cc: Daniel Xu , gdb-patches@sourceware.org Subject: Re: [PATCH V3 0/3] eBPF support References: <87y2nyq012.fsf@oracle.com> Date: Sun, 05 Jul 2020 12:18:02 +0200 In-Reply-To: (Simon Marchi's message of "Sat, 4 Jul 2020 21:34:55 -0400") Message-ID: <87a70ep8o5.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=9673 signatures=668680 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 adultscore=0 spamscore=0 mlxscore=0 mlxlogscore=999 bulkscore=0 phishscore=0 malwarescore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2004280000 definitions=main-2007060112 X-Proofpoint-Virus-Version: vendor=nai engine=6000 definitions=9673 signatures=668680 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 lowpriorityscore=0 priorityscore=1501 phishscore=0 spamscore=0 mlxlogscore=999 adultscore=0 cotscore=-2147483648 suspectscore=0 impostorscore=0 bulkscore=0 mlxscore=0 clxscore=1015 malwarescore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-2004280000 definitions=main-2007060112 X-Spam-Status: No, score=-4.5 required=5.0 tests=BAYES_00, DATE_IN_PAST_24_48, 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=no 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, 06 Jul 2020 14:47:02 -0000 Hi Simon. On 2020-07-04 8:27 p.m., Jose E. Marchesi via Gdb-patches wrote: > (gdb) target sim > (gdb) sim memory-size 4Mb > (gdb) load ~/dev/libbpf-rs/target/bpf/runqslower.bpf.o > (gdb) file load ~/dev/libbpf-rs/target/bpf/runqslower.bpf.o You probably meant `file ~/dev/libbpf-rs/target/bpf/runqslower.bpf.o` for the last command? Yeah that was a typo. You can also save some typing by doing the `file blablabla` first, then `load` without arguments. Oh nice, I didn't know that! :D