From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (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 BA79716E87D for ; Fri, 10 May 2024 11:46:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=170.10.129.124 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715341580; cv=none; b=CczYhcWLkRm6RfGjaPkC5Sm3IaIK8UImNFGaGQXJRQiwW7/zdgaCbqmNpbe2gXBXXTy7YjqV9VHbwg7lO7UQBuAAwtx/ID7hYa2Es9fdPlcJt4v/MT0g7/9XjostZg9zpMwjEVSAKJFTeBu6ubuMD5LUebCYkXSgHcqcvURw1Xw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715341580; c=relaxed/simple; bh=8fZVZZLwrYj7eBOG3h8Y9eFzWHWyYMn9hTu3xemaVHQ=; h=From:In-Reply-To:References:Cc:Subject:MIME-Version:Content-Type: Date:Message-ID; b=VnUQQtdeD5NCOUKR6kwddpaKv4WYVABDm+v8WSgbKGolVtC42tMrcY4aMyCjWhDe1Dpw6XzzU5f6cYX+RpLZAW2Xp9LbvXMTZWIV97qZ+XePjhFaTEMO9fGmHUrYlaHvviGydCkoaQ1FKeDtTIEIkIg6etB8rZCfY0gwi77JWsc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com; spf=pass smtp.mailfrom=redhat.com; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b=cra9aRyc; arc=none smtp.client-ip=170.10.129.124 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=redhat.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="cra9aRyc" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1715341576; h=from:from:reply-to:subject:subject:date:date:message-id:message-id:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=IwU5Oore3SuCw8wZi4A6hCUo7BctEtdssnTwHpRObJs=; b=cra9aRycywDW5la13ssx08sw/151AUz0704WI+ow4S10XBhFboqDcW96b1F/M+GoY5GfAj XmROf84jC9oBtjjjp1IBSAOylQXQH429QbuTCXuF33UV8X5AhyLOZdXH5HgQ/saOWYK6h7 qsoIo0Z6j/RRJv3Uo9CJpKubyOyn+us= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-643-wA18SPOdMBeTCD36AVxuKw-1; Fri, 10 May 2024 07:46:14 -0400 X-MC-Unique: wA18SPOdMBeTCD36AVxuKw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 3FABB8030A6; Fri, 10 May 2024 11:46:14 +0000 (UTC) Received: from warthog.procyon.org.uk (unknown [10.42.28.34]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5AC7F2055894; Fri, 10 May 2024 11:46:13 +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: <1586576.1715341405@warthog.procyon.org.uk> References: <1586576.1715341405@warthog.procyon.org.uk> Cc: dhowells@redhat.com, Max Kellermann , Jan Kara , Miklos Szeredi , Christian Brauner , linux-ext4@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] ext4: Don't reduce symlink i_mode by umask if no ACL support Precedence: bulk X-Mailing-List: linux-ext4@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <1586840.1715341572.1@warthog.procyon.org.uk> Date: Fri, 10 May 2024 12:46:12 +0100 Message-ID: <1586841.1715341572@warthog.procyon.org.uk> X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.6 David Howells wrote: > - inode->i_mode &= ~current_umask(); > + if (!S_ISLNK(inode->i_mode)) > + inode->i_mode &= ~current_umask(); Meh. I forgot to commit the change. Will resend. David