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 C4F37C001DF for ; Wed, 26 Jul 2023 14:49:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233582AbjGZOtY (ORCPT ); Wed, 26 Jul 2023 10:49:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36024 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233367AbjGZOtU (ORCPT ); Wed, 26 Jul 2023 10:49:20 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8BC2C2135 for ; Wed, 26 Jul 2023 07:48:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1690382912; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=K3TmK0cy+uZ8VvoQR/o3r58eb488AHuocKvNBDVotBw=; b=RBM16DlhPLt18VDNMgrr2ozXpUwhLv020Fy0T60oP9XqTv7rflhcXQmUIofZChxYswDKKO 49uJQW/X7B0ECVxBS1rb/8Hu6WJ1Eyz9MTodTsRYbVjeGO7rDpMYD0h0/7IXz5CQXWCHRI RjnE+u5ZQ9ZXqDoSkRnZN2slvBPvq8o= Received: from mimecast-mx02.redhat.com (66.187.233.73 [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-230-0gd6dcDnNXqLz-zM8V29Vw-1; Wed, 26 Jul 2023 10:48:29 -0400 X-MC-Unique: 0gd6dcDnNXqLz-zM8V29Vw-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 86E701C06EE3 for ; Wed, 26 Jul 2023 14:48:29 +0000 (UTC) Received: from ashelat.remote.csb (unknown [10.22.34.41]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3C1774094DC0; Wed, 26 Jul 2023 14:48:29 +0000 (UTC) From: Anubhav Shelat To: linux-rt-users@vger.kernel.org Cc: kcarcia@redhat.com, Anubhav Shelat Subject: [PATCH 1/5] bitmasklist_test: Added SPDX licence Date: Wed, 26 Jul 2023 10:48:22 -0400 Message-Id: <20230726144826.355643-2-ashelat@redhat.com> In-Reply-To: <20230726144826.355643-1-ashelat@redhat.com> References: <20230726144826.355643-1-ashelat@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.1 on 10.11.54.2 Precedence: bulk List-ID: X-Mailing-List: linux-rt-users@vger.kernel.org bitmasklist_test: Added SPDX licence Signed-off-by: Anubhav Shelat --- bitmasklist_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bitmasklist_test.py b/bitmasklist_test.py index 677c84a9504f..16169af52bfd 100755 --- a/bitmasklist_test.py +++ b/bitmasklist_test.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later #!/usr/bin/python3 """ Module to test bitmasklist functionality """ -- 2.39.3