From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D63D3C433EF for ; Fri, 4 Mar 2022 18:25:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241546AbiCDSZu (ORCPT ); Fri, 4 Mar 2022 13:25:50 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34926 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232870AbiCDSZr (ORCPT ); Fri, 4 Mar 2022 13:25:47 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C4D9C1B0C51; Fri, 4 Mar 2022 10:24:59 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 63A936149A; Fri, 4 Mar 2022 18:24:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5F65EC340E9; Fri, 4 Mar 2022 18:24:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1646418298; bh=OKWpg4Di5pQedVI8IF5G8rnnQxGql6NERNwzL/tXc2g=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=U7PxsmN6hs/5KlyNaW9WRtx4PJZeJpgpzw2rvGqmLUSHQF6X+HoRIUJPdLW4emd26 GNw3QXzav6+sJBd3rdswSNYz1XyXdI9hd1FoH3NMDmSanAF3NOYdVxunz6LEvfOH4R VqrTI6khZzydXl7zj5mPG3ZR3GXTD4sEAoxkue9E= Date: Fri, 4 Mar 2022 19:24:42 +0100 From: Greg KH To: Benjamin Tissoires Cc: Jiri Kosina , Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Martin KaFai Lau , Song Liu , Yonghong Song , John Fastabend , KP Singh , Shuah Khan , Dave Marchevsky , Joe Stringer , Tero Kristo , linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, netdev@vger.kernel.org, bpf@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH bpf-next v2 03/28] HID: hook up with bpf Message-ID: References: <20220304172852.274126-1-benjamin.tissoires@redhat.com> <20220304172852.274126-4-benjamin.tissoires@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220304172852.274126-4-benjamin.tissoires@redhat.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Mar 04, 2022 at 06:28:27PM +0100, Benjamin Tissoires wrote: > Now that BPF can be compatible with HID, add the capability into HID. > drivers/hid/hid-bpf.c takes care of the glue between bpf and HID, and > hid-core can then inject any incoming event from the device into a BPF > program to filter/analyze it. > > Signed-off-by: Benjamin Tissoires > Reviewed-by: Greg Kroah-Hartman