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 X-Spam-Level: X-Spam-Status: No, score=-11.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 81A55C433E0 for ; Mon, 4 Jan 2021 12:53:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4AB59207B1 for ; Mon, 4 Jan 2021 12:53:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726713AbhADMwV (ORCPT ); Mon, 4 Jan 2021 07:52:21 -0500 Received: from us-smtp-delivery-124.mimecast.com ([216.205.24.124]:28398 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726579AbhADMwU (ORCPT ); Mon, 4 Jan 2021 07:52:20 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1609764654; 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=D7cdYIjLB2TJwkBcPMV987oTnRn/FEmni88uTGzxuGA=; b=ifDOXYuZytD7ijjwfEt5bL0M+IaqbwWXjAf6LvBjRBZbZsGZHeoQBCMCZEzhoHCgei6gyA nZLWFZNyYxZ0mDIeI0XeOb1HLsKN/eiLUkJEOXXotS3oos+gNwN6iRq7e/FKKrisbDUPSf t3Q59GzBC6LHT+glW5Q7WdoReDDJVFI= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-173-mAxJZbDYPF-TPxibUqBH0w-1; Mon, 04 Jan 2021 07:50:51 -0500 X-MC-Unique: mAxJZbDYPF-TPxibUqBH0w-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 750D1107ACE3; Mon, 4 Jan 2021 12:50:49 +0000 (UTC) Received: from warthog.procyon.org.uk (ovpn-112-8.rdu2.redhat.com [10.10.112.8]) by smtp.corp.redhat.com (Postfix) with ESMTP id 98D526F920; Mon, 4 Jan 2021 12:50:47 +0000 (UTC) Organization: Red Hat UK Ltd. Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 3798903 From: David Howells In-Reply-To: <20201229173916.1459499-1-trix@redhat.com> References: <20201229173916.1459499-1-trix@redhat.com> To: trix@redhat.com Cc: dhowells@redhat.com, davem@davemloft.net, kuba@kernel.org, natechancellor@gmail.com, ndesaulniers@google.com, linux-afs@lists.infradead.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, clang-built-linux@googlegroups.com Subject: Re: [PATCH] rxrpc: fix handling of an unsupported token type in rxrpc_read() MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <259548.1609764646.1@warthog.procyon.org.uk> Content-Transfer-Encoding: quoted-printable Date: Mon, 04 Jan 2021 12:50:46 +0000 Message-ID: <259549.1609764646@warthog.procyon.org.uk> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org trix@redhat.com wrote: > - switch (token->security_index) { > - case RXRPC_SECURITY_RXKAD: > ... > - switch (token->security_index) { > - case RXRPC_SECURITY_RXKAD: These switches need to be kept. There's another security type on the way. See: https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs.git/log/= ?h=3Drxrpc-rxgk for example. I'll have a look later. David