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 A00EDC04A95 for ; Wed, 28 Sep 2022 14:23:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234304AbiI1OXl (ORCPT ); Wed, 28 Sep 2022 10:23:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41608 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234413AbiI1OXl (ORCPT ); Wed, 28 Sep 2022 10:23:41 -0400 Received: from mail-wr1-f54.google.com (mail-wr1-f54.google.com [209.85.221.54]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4019EA98DB; Wed, 28 Sep 2022 07:23:38 -0700 (PDT) Received: by mail-wr1-f54.google.com with SMTP id z6so20112997wrq.1; Wed, 28 Sep 2022 07:23:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=in-reply-to:content-disposition:mime-version:references:message-id :subject:cc:to:from:date:x-gm-message-state:from:to:cc:subject:date; bh=mFcQzaNt7lB5NgLGuk0y5Jq2O1gMF6tf08IwQo9puOM=; b=T2af/lb28QQrBAAPDiBGB0qdywJ2uwmVMq/VHoQhEGeiLVBF46RNB/briKhQ3I/AR8 tQ8fYjS9ZsKZp65H2/umnGtlCuEprgad93m52KM5VAQ7mcWSJr8ARpvKBkG6kwp46uAs GI8+N6zSn16s/nBAF1Rs9GcQY1m1gcJGcgKttRH5anl6EJafT0m4rIKlyGro7xFJeA3N hwF9nYhG1kcW3du4HEZwx8ytWL00rIcCPcXnnGo2djaMZoNizxzDywfnHpYg+VOZoq3s KgMSnhiCAuHxEJ4hwlVo7718rF76Q/6cBw5SM84MuGQPZLvnEzyvWOIAGs+fnf/ddjIZ Q1YQ== X-Gm-Message-State: ACrzQf1MgU6Yk7J/C8edWfbK4rH0nY042POGrKN5/8t2jridjlzAJ2a+ 3F9TZwGnKzx3HwL0LSZ4AUY= X-Google-Smtp-Source: AMsMyM4A35IvCHXOo7o0KiszcrKYBNlUbkmxsEcP8E5OgZYnXdM2PTBm8J0+c9svSjderpHlnmzrGA== X-Received: by 2002:a5d:6e92:0:b0:22c:c09c:8f23 with SMTP id k18-20020a5d6e92000000b0022cc09c8f23mr5707080wrz.389.1664375016787; Wed, 28 Sep 2022 07:23:36 -0700 (PDT) Received: from liuwe-devbox-debian-v2 ([51.145.34.42]) by smtp.gmail.com with ESMTPSA id fc10-20020a05600c524a00b003b435c41103sm2900459wmb.0.2022.09.28.07.23.35 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 28 Sep 2022 07:23:36 -0700 (PDT) Date: Wed, 28 Sep 2022 14:23:34 +0000 From: Wei Liu To: Miguel Ojeda Cc: Linus Torvalds , Greg Kroah-Hartman , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, patches@lists.linux.dev, Jarkko Sakkinen , Kees Cook , Alex Gaynor , Finn Behrens , Wedson Almeida Filho , Milan Landaverde , Boqun Feng , Gary Guo , =?iso-8859-1?Q?Bj=F6rn?= Roy Baron , Wei Liu Subject: Re: [PATCH v10 26/27] samples: add first Rust examples Message-ID: References: <20220927131518.30000-1-ojeda@kernel.org> <20220927131518.30000-27-ojeda@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220927131518.30000-27-ojeda@kernel.org> Precedence: bulk List-ID: X-Mailing-List: rust-for-linux@vger.kernel.org On Tue, Sep 27, 2022 at 03:14:57PM +0200, Miguel Ojeda wrote: > The beginning of a set of Rust modules that showcase how Rust > modules look like and how to use the abstracted kernel features. > > It also includes an example of a Rust host program with > several modules. > > These samples also double as tests in the CI. > > Reviewed-by: Kees Cook > Co-developed-by: Alex Gaynor > Signed-off-by: Alex Gaynor > Co-developed-by: Finn Behrens > Signed-off-by: Finn Behrens > Co-developed-by: Wedson Almeida Filho > Signed-off-by: Wedson Almeida Filho > Co-developed-by: Milan Landaverde > Signed-off-by: Milan Landaverde > Signed-off-by: Miguel Ojeda Reviewed-by: Wei Liu