From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 10:57:49 2022 Received: (at submit) by debbugs.gnu.org; 12 Jan 2022 15:57:49 +0000 Received: from localhost ([127.0.0.1]:58742 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7g0S-0003DY-1X for submit@debbugs.gnu.org; Wed, 12 Jan 2022 10:57:48 -0500 Received: from lists.gnu.org ([209.51.188.17]:58554) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7bZJ-0008Be-UY for submit@debbugs.gnu.org; Wed, 12 Jan 2022 06:13:33 -0500 Received: from eggs.gnu.org ([209.51.188.92]:52146) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n7bZJ-0006UQ-Q4 for bug-coreutils@gnu.org; Wed, 12 Jan 2022 06:13:29 -0500 Received: from smtp01-ext2.udag.de ([62.146.106.18]:58668) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n7bZG-00014P-TC for bug-coreutils@gnu.org; Wed, 12 Jan 2022 06:13:29 -0500 Received: from a2021.localnet (unknown [79.97.148.125]) by smtp01-ext2.udag.de (Postfix) with ESMTPA id 3B9DBE9D85; Wed, 12 Jan 2022 12:13:21 +0100 (CET) From: Joachim Wagner To: bug-coreutils@gnu.org Subject: stat shows wrong, non-existing device number Date: Wed, 12 Jan 2022 11:13:21 +0000 Message-ID: <8052558.NyiUUSuA9g@a2021> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Authentication-Results: smtp01-ext2.udag.de; auth=pass smtp.auth=mqzmail-eu-0005 smtp.mailfrom=jo2l@mqzmail.eu Received-SPF: none client-ip=62.146.106.18; envelope-from=jo2l@mqzmail.eu; helo=smtp01-ext2.udag.de X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Wed, 12 Jan 2022 10:57:46 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Issue: The device number shown in `stat` output does not match the device numbers of any of the devices used by the filesystem. On my system: $ stat --version | head -n 1 stat (GNU coreutils) 8.32 $ cat /etc/os-release | fgrep -i pretty PRETTY_NAME="openSUSE Leap 15.3" $ ls -l /dev/nvme0n1p6 /dev/nvme1n1p3 brw-rw---- 1 root disk 259, 6 Jan 12 09:29 /dev/nvme0n1p6 brw-rw---- 1 root disk 259, 12 Jan 12 09:29 /dev/nvme1n1p3 $ fgrep home /etc/crypttab cr_home0 /dev/disk/by-id/nvme-RETRACTED1-part6 cr_home1 /dev/disk/by-id/nvme-RETRACTED2-part3 $ ls -l /dev/mapper/cr_home? lrwxrwxrwx 1 root root 7 Jan 12 09:29 /dev/mapper/cr_home0 -> ../dm-6 lrwxrwxrwx 1 root root 7 Jan 12 09:30 /dev/mapper/cr_home1 -> ../dm-5 $ ls -l /dev/dm-[56] brw-rw---- 1 root disk 254, 5 Jan 12 09:30 /dev/dm-5 brw-rw---- 1 root disk 254, 6 Jan 12 09:29 /dev/dm-6 $ fgrep home /etc/fstab /dev/mapper/cr_home0 /home btrfs defaults 0 0 $ history | fgrep cr_home | tail -n 3 | head -n 2 108 2022-01-05 17:01:22 mkfs.btrfs /dev/mapper/cr_home0 141 2022-01-05 17:16:49 btrfs device add /dev/mapper/cr_home1 /home $ touch /home/test $ stat /home/test | fgrep -i device Device: 3ch/60d Inode: 2143351 Links: 1 $ ls -l /dev | grep "^b" | fgrep 60 | wc -l 0 Expected behaviour: Device should be one (or more) of fe06h/65030d <-- most expected as this is the primary btrfs device fe05h/65029d <-- the 2nd device (/dev/cr_home1) 10306h/66310d <-- backing device for cr_home0 (/dev/nvme0n1p6) 1030ch/66316d <-- backing device for cr_home1 (/dev/nvme1n1p3) 10300h/66304d <-- SSD 1 (/dev/nvme0n1) 10309h/66313d <-- SSD 2 (/dev/nvme1n1) Speculation: Searching the mailing list for stat + major on https:// www.gnu.org/software/coreutils/ shows results indicating that stat uses only 8 bit for major and minor. However, since kernel 2.6.0 according to https:// stackoverflow.com/questions/14833467/maximum-values-of-major-and-minor- numbers-in-linux , the major has 12 bit and the minor 20 bit. Output above shows a major with at least 9 bits that may confuse `stat` if it doesn't stay with the immediate device number of the top level dm-crypt device. From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 11:14:26 2022 Received: (at submit) by debbugs.gnu.org; 12 Jan 2022 16:14:26 +0000 Received: from localhost ([127.0.0.1]:58770 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7gGX-0003jo-UQ for submit@debbugs.gnu.org; Wed, 12 Jan 2022 11:14:26 -0500 Received: from lists.gnu.org ([209.51.188.17]:53764) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7gGV-0003jd-6v for submit@debbugs.gnu.org; Wed, 12 Jan 2022 11:14:24 -0500 Received: from eggs.gnu.org ([209.51.188.92]:50850) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n7gGS-0000bk-IC for bug-coreutils@gnu.org; Wed, 12 Jan 2022 11:14:23 -0500 Received: from smtp04-ext3.udag.de ([62.146.106.41]:41794) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n7gGM-0003Gf-AM for bug-coreutils@gnu.org; Wed, 12 Jan 2022 11:14:16 -0500 Received: from a2021.localnet (unknown [79.97.148.125]) by smtp04-ext3.udag.de (Postfix) with ESMTPA id B5B74E03F0; Wed, 12 Jan 2022 17:14:05 +0100 (CET) From: Joachim Wagner To: bug-coreutils@gnu.org Subject: Re: stat shows wrong, non-existing device number Date: Wed, 12 Jan 2022 16:14:04 +0000 Message-ID: <2614137.mvXUDI8C0e@a2021> In-Reply-To: <4681474.GXAFRqVoOG@a2021> References: <8052558.NyiUUSuA9g@a2021> <4681474.GXAFRqVoOG@a2021> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Authentication-Results: smtp04-ext3.udag.de; auth=pass smtp.auth=mqzmail-eu-0005 smtp.mailfrom=jo2l@mqzmail.eu Received-SPF: none client-ip=62.146.106.41; envelope-from=jo2l@mqzmail.eu; helo=smtp04-ext3.udag.de X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > and only filesystems and only some filesystems From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 11:25:25 2022 Received: (at 53209) by debbugs.gnu.org; 12 Jan 2022 16:25:25 +0000 Received: from localhost ([127.0.0.1]:58783 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7gRB-00044t-47 for submit@debbugs.gnu.org; Wed, 12 Jan 2022 11:25:25 -0500 Received: from smtp01-ext2.udag.de ([62.146.106.18]:45304) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7gRA-00044b-6q for 53209@debbugs.gnu.org; Wed, 12 Jan 2022 11:25:24 -0500 Received: from a2021.localnet (unknown [79.97.148.125]) by smtp01-ext2.udag.de (Postfix) with ESMTPA id 061CFE9BCC; Wed, 12 Jan 2022 17:25:17 +0100 (CET) From: Joachim Wagner To: 53209@debbugs.gnu.org Subject: Update on 53209 "stat shows wrong, non-existing device number" Date: Wed, 12 Jan 2022 16:25:16 +0000 Message-ID: <4370671.LvFx2qVVIh@a2021> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Authentication-Results: smtp01-ext2.udag.de; auth=pass smtp.auth=mqzmail-eu-0005 smtp.mailfrom=jo2l@mqzmail.eu X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 53209 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Further reading suggests this a not a bug but a feature and only some filesystems choose (major<<8)+minor of the primary device specified when mounting the filesystem as the filesystem's device number. A sentence in the man page explaining this would be helpful. From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 11:28:02 2022 Received: (at submit) by debbugs.gnu.org; 12 Jan 2022 16:28:02 +0000 Received: from localhost ([127.0.0.1]:58787 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7gTf-00049J-FP for submit@debbugs.gnu.org; Wed, 12 Jan 2022 11:28:02 -0500 Received: from lists.gnu.org ([209.51.188.17]:43990) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7ff3-0002Ys-5x for submit@debbugs.gnu.org; Wed, 12 Jan 2022 10:35:44 -0500 Received: from eggs.gnu.org ([209.51.188.92]:33868) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n7fev-00010J-Nn for bug-coreutils@gnu.org; Wed, 12 Jan 2022 10:35:36 -0500 Received: from smtp06-ext.udag.de ([62.146.106.76]:51752) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n7fes-0003wE-0H for bug-coreutils@gnu.org; Wed, 12 Jan 2022 10:35:31 -0500 Received: from a2021.localnet (unknown [79.97.148.125]) by smtp06-ext.udag.de (Postfix) with ESMTPA id 49D66E08E6; Wed, 12 Jan 2022 16:35:27 +0100 (CET) From: Joachim Wagner To: bug-coreutils@gnu.org Subject: Re: stat shows wrong, non-existing device number Date: Wed, 12 Jan 2022 15:35:26 +0000 Message-ID: <4681474.GXAFRqVoOG@a2021> In-Reply-To: <8052558.NyiUUSuA9g@a2021> References: <8052558.NyiUUSuA9g@a2021> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Authentication-Results: smtp06-ext.udag.de; auth=pass smtp.auth=mqzmail-eu-0005 smtp.mailfrom=jo2l@mqzmail.eu Received-SPF: none client-ip=62.146.106.76; envelope-from=jo2l@mqzmail.eu; helo=smtp06-ext.udag.de X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Wed, 12 Jan 2022 11:27:58 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Issue: The device number shown in `stat` output does not match the device > numbers of any of the devices used by the filesystem. Further reading suggests this a not a bug but a feature and only filesystems choose (major<<8)+minor of the primary device specified when mounting the filesystem. I cloned git://git.sv.gnu.org/coreutils to add a sentence on this to stat's man page but coreutils/man/stat.x is only a template, missing what I see in `man stat` on my system. Trying to find out how to contribute to documentation, I encountered the following cycle with no answer: https://www.gnu.org/help/ https://www.gnu.org/philosophy/free-doc.html https://www.gnu.org/doc/doc.html https://www.gnu.org/help/help.html#helpgnu Joachim From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 12:02:23 2022 Received: (at control) by debbugs.gnu.org; 12 Jan 2022 17:02:23 +0000 Received: from localhost ([127.0.0.1]:58854 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7h0w-0005H0-Th for submit@debbugs.gnu.org; Wed, 12 Jan 2022 12:02:23 -0500 Received: from smtp02-ext3.udag.de ([62.146.106.33]:59214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7h0v-0005Gm-Jx for control@debbugs.gnu.org; Wed, 12 Jan 2022 12:02:21 -0500 Received: from a2021.localnet (unknown [79.97.148.125]) by smtp02-ext3.udag.de (Postfix) with ESMTPA id 3FD07E04E0; Wed, 12 Jan 2022 18:02:15 +0100 (CET) From: Joachim Wagner To: control@debbugs.gnu.org Subject: close 53209 "stat shows wrong, non-existing device number" Date: Wed, 12 Jan 2022 17:02:14 +0000 Message-ID: <5685322.MhkbZ0Pkbq@a2021> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Authentication-Results: smtp02-ext3.udag.de; auth=pass smtp.auth=mqzmail-eu-0005 smtp.mailfrom=jo2l@mqzmail.eu X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) close 53209 thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 12:38:01 2022 Received: (at 53209) by debbugs.gnu.org; 12 Jan 2022 17:38:01 +0000 Received: from localhost ([127.0.0.1]:58959 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7hZR-0002Nz-HC for submit@debbugs.gnu.org; Wed, 12 Jan 2022 12:38:01 -0500 Received: from mout.kundenserver.de ([212.227.126.130]:49423) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7hZN-0002Nb-Gv for 53209@debbugs.gnu.org; Wed, 12 Jan 2022 12:38:00 -0500 Received: from [192.168.101.10] ([93.218.103.209]) by mrelayeu.kundenserver.de (mreue012 [212.227.15.167]) with ESMTPSA (Nemesis) id 1McIYO-1mVM0Y2fvg-00cen9; Wed, 12 Jan 2022 18:37:50 +0100 Message-ID: Date: Wed, 12 Jan 2022 18:37:49 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.4.1 Subject: Re: bug#53209: stat shows wrong, non-existing device number Content-Language: en-US To: Joachim Wagner , 53209@debbugs.gnu.org References: <8052558.NyiUUSuA9g@a2021> <4681474.GXAFRqVoOG@a2021> From: Bernhard Voelker In-Reply-To: <4681474.GXAFRqVoOG@a2021> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K1:tzunv3sMZ1Q2dfbUxSE867Od9yB9uPDb7WUTJFKSJyLGxvHHTEv +fpir574YF708OTbUqyAS+9u1uGrTdKQaMeMnvZcLaE+wP6lLyC5Us/cMxc7Y5H5j0ys4ID /XZsPIb/sMM7PS7rlg3+pBoKFI+diw+Hk0+2TwStIysL13oWkaf0SHrjQMUcru+fowS0gsb nseEA+26GU0eavGZaUj4Q== X-Spam-Flag: NO X-UI-Out-Filterresults: notjunk:1;V03:K0:OWMzb0wQ3eQ=:411lTkHiH7Li1jNkephO3k v/sp3gXQmhzsf+UzFs2v0AXE7YOlsMFjdSsyLXfq2ikl/S2tPTEjcmRnv/JPBUKFpt9j3WFwp 5/CpNH21R+som9U0ll+VfEc4/BNVwl7vwj4Dkb1Is3DaBaFec9VXLfnH/yxSL2OSZz2xdij4K 6QScrQFF90gNJTLOPD6fU6phyN9lpcUnttpDnhtULFjei0/JRynsE6bzknMDNDdU9mUboBLFJ W7vvq0kejUR/Ue3ot634T/9atGKDzOG1+5Uqz4S8VXfxRi+b6bkx5HYw3dA6ztTBCt4hMsSyt YeIIN5xgIRKvWTs56UkzEXmt+TXURznChGRUrXwcJGq5B9/H4Sq6kOBXFpF8OiAZWIixxo4qG nP4JLNmb6xT6PRfJPpWtt1rOjn4wzvwUWg2sNnGfqTjesmoMWOqn1aMaAjEw/591gmarF9X9U v+8kpocPh9L4uBFJXDN8FDiqOAuROVpqrbhJmo2B+/7cYAu+Nn8+MulIfpIv99WMYJdYGb3kL Lyc0LwzZzlvjHWs4pBMffEh3KTZGeAA2VgzC8gCDM2b7h7bvm6uby7IwipiVWHL+Bp/gmJWTJ qEp+DR+SLUXEpKYQX99cHDPX+pMIHz/UKo3mW//cZC6Pegym834MBa7iYS2T3kCn3IELvnB2i QsTp20AIj9RPFW6VEi88m+nXL0nDdaQM90II77jLVgCxwyivdzCVbcKH9qZOTdYRN5gYGVQab Zs43stcRIlgnbuD4 X-Spam-Score: -1.1 (-) X-Debbugs-Envelope-To: 53209 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.1 (--) On 1/12/22 16:35, Joachim Wagner wrote: > I cloned git://git.sv.gnu.org/coreutils to add a sentence on this to stat's > man page but coreutils/man/stat.x is only a template, missing what I see in > `man stat` on my system. Trying to find out how to contribute to > documentation, I encountered the following cycle with no answer: > > https://www.gnu.org/help/ > https://www.gnu.org/philosophy/free-doc.html > https://www.gnu.org/doc/doc.html > https://www.gnu.org/help/help.html#helpgnu Typically, the first thing to look at are the README* files, especially 'README-hacking'. Re. man pages of the coreutils: a) they are generated during the build from the output of "$UTIL --help" plus the information in "man/$UTIL.x". b) The information in the man pages should be kept as terse as possible, and more detailed information should go into the Texinfo manual (which also gets uploaded to https://www.gnu.org/software/coreutils/manual/ in HTML, PDF and other formats after each release). Have a nice day, Berny From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 14:04:00 2022 Received: (at control) by debbugs.gnu.org; 12 Jan 2022 19:04:00 +0000 Received: from localhost ([127.0.0.1]:59101 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7iue-00013I-NN for submit@debbugs.gnu.org; Wed, 12 Jan 2022 14:04:00 -0500 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:33862) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7iua-000131-8R for control@debbugs.gnu.org; Wed, 12 Jan 2022 14:03:59 -0500 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 21B92160095 for ; Wed, 12 Jan 2022 11:03:50 -0800 (PST) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id 7K4lVZNE9DZZ for ; Wed, 12 Jan 2022 11:03:49 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 7F4DD16008D for ; Wed, 12 Jan 2022 11:03:49 -0800 (PST) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id szh9iNk52DB5 for ; Wed, 12 Jan 2022 11:03:49 -0800 (PST) Received: from [192.168.1.9] (cpe-172-91-119-151.socal.res.rr.com [172.91.119.151]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 5F4CA160051 for ; Wed, 12 Jan 2022 11:03:49 -0800 (PST) Message-ID: Date: Wed, 12 Jan 2022 11:03:49 -0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.3.1 Content-Language: en-US To: control@debbugs.gnu.org From: Paul Eggert Subject: 53209 is not a bug Organization: UCLA Computer Science Department Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) tags 53209 notabug close 53209 From unknown Thu Jun 19 14:05:30 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 10 Feb 2022 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator