From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7C6AE1BDE8 for ; Fri, 3 Nov 2023 15:34:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="fJqCMJYT" Received: from out-187.mta1.migadu.com (out-187.mta1.migadu.com [IPv6:2001:41d0:203:375::bb]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9B866123 for ; Fri, 3 Nov 2023 08:34:16 -0700 (PDT) Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1699025654; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=I/wlp4jOvBK13urBSKrCUKqvF5z/qYmvzjCWEsvs3n0=; b=fJqCMJYThItK1DlV3kaq2mtS9hwsvAD1DFBYzQbmoEWyg/47IcpogbsKP1eswEQg2WB3vs l75Pu4j7ZsWutupFeBVvImNvLg1u3qMBIK+pNurJUEdRGXNELzxFCnO/+/YeIWD0tCUcaH 2XY2HE3Ky2BYbpeHrfqQfzRdhk6hwXA= Date: Fri, 3 Nov 2023 08:34:05 -0700 Precedence: bulk X-Mailing-List: bpf@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [PATCH bpf-next] bpftool: fix prog object type in manpage Content-Language: en-GB To: Artem Savkov , Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , bpf@vger.kernel.org, netdev@vger.kernel.org Cc: Jerry Snitselaar References: <20231103081126.170034-1-asavkov@redhat.com> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Yonghong Song In-Reply-To: <20231103081126.170034-1-asavkov@redhat.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 11/3/23 1:11 AM, Artem Savkov wrote: > bpftool's man page lists "program" as one of possible values for OBJECT, > while in fact bpftool accepts "prog" instead. > > Reported-by: Jerry Snitselaar > Signed-off-by: Artem Savkov Acked-by: Yonghong Song