From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) (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 CD7023D5251 for ; Fri, 10 Apr 2026 14:39:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.79.88.28 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775831996; cv=none; b=bk+/Ll9E+K4vdlvXo5sTuMQhoKAkIc+XPAk94/46L+wm9Vy5+VlhGrH3gR+XoF4+0J+pJX0eitBUbpKkpuM6KnZ8MJnH51Wqddg2GOTShJ6mbYB7xAfwtcMPvzK04zufhY858oe2XKKbzRM38ti/fXpEWkc4rVOB015DQ66Muh4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775831996; c=relaxed/simple; bh=7bMjCZiVO2P5H+eiFsIRUca06LdMnnhlxsNHI2pdmWs=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=s2tMGUZ5O26Iu/4ENkLc0D2GpqZoQDuhwutTOKEjOrB4Rc9O9i07j1FyEpzddumIth5YfFEPNCb4TlOIxxskGnMGXnJe6ZflGnXVa74kmaGJcUx6z3wUuv7gFWwhBHeeU579iTSG95cLuUlMq8vf9vJGjJUERK9R4A1lX8eHUss= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net; spf=pass smtp.mailfrom=lwn.net; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b=joqIhAEz; arc=none smtp.client-ip=45.79.88.28 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lwn.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b="joqIhAEz" DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 3CD4041089 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1775831988; bh=p1LkpgWUcwkEHntwhVsMLRr70PDkyRvOfj+CmbpTa/0=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=joqIhAEzZQhBKVNDsQ/fJlA3x13k3Jjpq6I4tPXy1ZQl0QBBSFvIQg2mENll9URxo mskObcTfkWt/ORJa8Kb7IQNcjyWYoXkEUn1QD9q6Ml+fBGQgT9BLSJ7T96LD20SR63 KiwPiiaoUyvwKGcFjpCMMayY5+nueCme+mjiZkeQMV5DkswldVmW6jZAGGaoaMHDn7 Z6bVopCriq0/CX9VT13PGpQD0ajo77QMfk/09TuEY3aiJUKQV6dKnkYkvF/U4125+6 WUqohPSn94luGJRdA9+1mBKR+h+jjV+arrampRDXSR78J/PWNcCXgpySWN9lx15Ygd KOMkOlfSGMQhg== Received: from localhost (unknown [IPv6:2601:280:4600:27b::1fe]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 3CD4041089; Fri, 10 Apr 2026 14:39:48 +0000 (UTC) From: Jonathan Corbet To: Wolfram Sang , linux-doc@vger.kernel.org Cc: Wolfram Sang , Shuah Khan Subject: Re: [PATCH] Documentation: seq_file: drop 2.6 reference In-Reply-To: <20260410143234.43610-2-wsa+renesas@sang-engineering.com> References: <20260410143234.43610-2-wsa+renesas@sang-engineering.com> Date: Fri, 10 Apr 2026 08:39:47 -0600 Message-ID: <87zf3a2824.fsf@trenco.lwn.net> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain Wolfram Sang writes: > Even kernels after 2.6 have seq-file support. > > Signed-off-by: Wolfram Sang > --- > > See, somebody still reads it :) > > Documentation/filesystems/seq_file.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/filesystems/seq_file.rst b/Documentation/filesystems/seq_file.rst > index 1e1713d00010..d753d8177bcb 100644 > --- a/Documentation/filesystems/seq_file.rst > +++ b/Documentation/filesystems/seq_file.rst > @@ -27,7 +27,7 @@ position within the virtual file - that position is, likely as not, in the > middle of a line of output. The kernel has traditionally had a number of > implementations that got this wrong. > > -The 2.6 kernel contains a set of functions (implemented by Alexander Viro) > +The kernel now contains a set of functions (implemented by Alexander Viro) > which are designed to make it easy for virtual file creators to get it But but but ... it *is* correct as written... :) (Applied, thanks). jon