linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Bug 213759] New: CD tray ejected on hibernate resume
@ 2021-07-16 22:37 bugzilla-daemon
  2021-07-16 22:38 ` [Bug 213759] " bugzilla-daemon
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-16 22:37 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

            Bug ID: 213759
           Summary: CD tray ejected on hibernate resume
           Product: SCSI Drivers
           Version: 2.5
    Kernel Version: 5.10.48
          Hardware: x86-64
                OS: Linux
              Tree: Mainline
            Status: NEW
          Severity: normal
          Priority: P1
         Component: Other
          Assignee: scsi_drivers-other@kernel-bugs.osdl.org
          Reporter: computerpro_58@hotmail.com
        Regression: No

After resuming from hibernation (shutdown-disk), CD tray (which is empty and
untouched) is ejected on resume. I use a LUKS-encrypted root partition, and the
tray is always ejected before my distro NixOS (cryptsetup) prompts for my key.

I bi-sect'd the problem commit down to this one:

From: ManYi Li <limanyi@uniontech.com>
To: axboe@kernel.dk, jejb@linux.ibm.com, martin.petersen@oracle.com
Cc: linux-kernel@vger.kernel.org, linux-scsi@vger.kernel.org,
        ManYi Li <limanyi@uniontech.com>
Subject: [PATCH] sr: Fix get the error media event code
Date: Fri, 11 Jun 2021 17:44:02 +0800
Message-ID: <20210611094402.23884-1-limanyi@uniontech.com> (raw)

Eject the specified slot or media through a mechanical switch on the Drive,
med->media_event_code is 3 not 1 in the sr_get_events().

If disk_flush_events() and sr_block_open() are called,
clearing is 1 or 3 in the sr_check_events(),then it report
DISK_EVENT_MEDIA_CHANGE not DISK_EVENT_EJECT_REQUEST.

If disk_flush_events() and sr_block_open() aren't called,
clearing is 0 in the sr_check_events(),then it doesn't
report any event.

Signed-off-by: ManYi Li <limanyi@uniontech.com>
---
 drivers/scsi/sr.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c
index 482a07b662a9..94c254e9012e 100644
--- a/drivers/scsi/sr.c
+++ b/drivers/scsi/sr.c
@@ -220,6 +220,8 @@ static unsigned int sr_get_events(struct scsi_device *sdev)
                return DISK_EVENT_EJECT_REQUEST;
        else if (med->media_event_code == 2)
                return DISK_EVENT_MEDIA_CHANGE;
+       else if (med->media_event_code == 3)
+               return DISK_EVENT_EJECT_REQUEST;
        return 0;
 }


That commit was backported onto a number of kernels, so I can reproduce this on
a number of different kernels (master, stable, LTS). I'm not sure if this is a
bug in the CD-reader (tossing back an incorrect status), or if the bug is
within this driver?

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
@ 2021-07-16 22:38 ` bugzilla-daemon
  2021-07-17 21:58 ` bugzilla-daemon
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-16 22:38 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

computerpro_58@hotmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |linux-scsi@vger.kernel.org
         Regression|No                          |Yes

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
  2021-07-16 22:38 ` [Bug 213759] " bugzilla-daemon
@ 2021-07-17 21:58 ` bugzilla-daemon
  2021-07-20  3:58 ` bugzilla-daemon
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-17 21:58 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

xalomo4655@eyeremind.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xalomo4655@eyeremind.com

--- Comment #1 from xalomo4655@eyeremind.com ---
Also seeing this problem on resume from suspend on a completely different
system than the above user's system.

Can we please get this fixed ASAP? Its a very annoying issue. Thank you.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
  2021-07-16 22:38 ` [Bug 213759] " bugzilla-daemon
  2021-07-17 21:58 ` bugzilla-daemon
@ 2021-07-20  3:58 ` bugzilla-daemon
  2021-07-20  5:24 ` bugzilla-daemon
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-20  3:58 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

limanyi (limanyi@uniontech.com) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |limanyi@uniontech.com

--- Comment #2 from limanyi (limanyi@uniontech.com) ---
I'm the author of this patch:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.14-rc2&id=7dd753ca59d6c8cc09aa1ed24f7657524803c7f3

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (2 preceding siblings ...)
  2021-07-20  3:58 ` bugzilla-daemon
@ 2021-07-20  5:24 ` bugzilla-daemon
  2021-07-23 15:51 ` bugzilla-daemon
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-20  5:24 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

--- Comment #3 from limanyi@uniontech.com (limanyi@uniontech.com) ---
Seeing this problem on Linux 5.14-rc2, CD tray (which is empty and untouched)
is ejected on resume from hibernation.I'm looking for the root cause of the
problem.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (3 preceding siblings ...)
  2021-07-20  5:24 ` bugzilla-daemon
@ 2021-07-23 15:51 ` bugzilla-daemon
  2021-07-24  9:42 ` bugzilla-daemon
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-23 15:51 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

Todd Lyons (trlyons@gmail.com) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |trlyons@gmail.com

--- Comment #4 from Todd Lyons (trlyons@gmail.com) ---
Glad to see this isn't just me with the DVD-ROM tray snapping out on wake. I
first noticed it with 5.13.2. Hope to see this squashed soon. Thank you.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (4 preceding siblings ...)
  2021-07-23 15:51 ` bugzilla-daemon
@ 2021-07-24  9:42 ` bugzilla-daemon
  2021-07-24 10:31 ` bugzilla-daemon
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-24  9:42 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

Jonne Ransijn (jonneransijn1998@gmail.com) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jonneransijn1998@gmail.com

--- Comment #5 from Jonne Ransijn (jonneransijn1998@gmail.com) ---
The description for media event code 3 reads:

MediaRemoval
The media has been removed from the specified slot,
and the Drive is unable to access the media without user intervention.
This applies to media changers only.

This seems like a reasonable status notification after the disk drive detected
no disk in the drive.
How else could the the drive signal that the user removed a disk while the
kernel is suspended? The disk drive is (presumably) stateless, it doesn't
remember if it used to have a disk inserted.
This doesn't seem like a bug in the disk drive.

I'm pretty sure 'DISK_EVENT_EJECT_REQUEST' is not the correct event in this
case.
It seems more reasonable to send a 'DISK_EVENT_MEDIA_CHANGE'.

Also, the description for media event code 4:

MediaChanged
The user has requested that the media in the specified slot be loaded.
This applies to media changers only.

Should probably send a 'DISK_EVENT_MEDIA_CHANGE' for that as well then.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (5 preceding siblings ...)
  2021-07-24  9:42 ` bugzilla-daemon
@ 2021-07-24 10:31 ` bugzilla-daemon
  2021-07-26 11:01 ` bugzilla-daemon
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-24 10:31 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

--- Comment #6 from limanyi@uniontech.com (limanyi@uniontech.com) ---
I agree to send a 'DISK_EVENT_MEDIA_CHANGE' instead of
'DISK_EVENT_EJECT_REQUEST' when media event code is 3.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (6 preceding siblings ...)
  2021-07-24 10:31 ` bugzilla-daemon
@ 2021-07-26 11:01 ` bugzilla-daemon
  2021-07-27 14:55 ` bugzilla-daemon
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-26 11:01 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

--- Comment #7 from limanyi@uniontech.com (limanyi@uniontech.com) ---
1. modify the file /lib/udev/rules.d/60-cdrom_id.rules:
-ENV{DISK_EJECT_REQUEST}=="?*", RUN+="cdrom_id --eject-media $devnode",
GOTO="cdrom_end"
+#ENV{DISK_EJECT_REQUEST}=="?*", RUN+="cdrom_id --eject-media $devnode",
GOTO="cdrom_end"

2. systemctl restart udev.service

I find that CD tray isn`t ejected on resume. I think that the kernel should not
send 'DISK_EVENT_EJECT_REQUEST' when media event code is 3.


This patch solves this problem:
diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c
index 94c254e9012e..a6d3ac0a6cbc 100644
--- a/drivers/scsi/sr.c
+++ b/drivers/scsi/sr.c
@@ -221,7 +221,7 @@ static unsigned int sr_get_events(struct scsi_device *sdev)
        else if (med->media_event_code == 2)
                return DISK_EVENT_MEDIA_CHANGE;
        else if (med->media_event_code == 3)
-               return DISK_EVENT_EJECT_REQUEST;
+               return DISK_EVENT_MEDIA_CHANGE;
        return 0;
 }

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (7 preceding siblings ...)
  2021-07-26 11:01 ` bugzilla-daemon
@ 2021-07-27 14:55 ` bugzilla-daemon
  2021-08-25  5:34 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-07-27 14:55 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

vkuznets@redhat.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vkuznets@redhat.com

--- Comment #8 from vkuznets@redhat.com ---
FWIW I'm seeing the same issue with Hyper-V Generation 2 VMs. After 

commit 7dd753ca59d6c8cc09aa1ed24f7657524803c7f3
Author: ManYi Li <limanyi@uniontech.com>
Date:   Fri Jun 11 17:44:02 2021 +0800

    scsi: sr: Return appropriate error code when disk is ejected

DISK_EVENT_EJECT_REQUEST is generated when storvsc driver loads and in case
there's a udev rule to do "cdrom_id --eject-media ... " at this time the
virtual CDROM goes away.

Patch from https://bugzilla.kernel.org/show_bug.cgi?id=213759#c7 helps.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (8 preceding siblings ...)
  2021-07-27 14:55 ` bugzilla-daemon
@ 2021-08-25  5:34 ` bugzilla-daemon
  2021-08-28 22:40 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-08-25  5:34 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

Jerick Fischer (almaza24map@gmail.com) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |almaza24map@gmail.com

--- Comment #9 from Jerick Fischer (almaza24map@gmail.com) ---
Is there a solution to this already? I hope this will be solved soon. 


RJ | https://www.sanantoniotruckingpros.com/

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (9 preceding siblings ...)
  2021-08-25  5:34 ` bugzilla-daemon
@ 2021-08-28 22:40 ` bugzilla-daemon
  2021-09-15  3:55 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-08-28 22:40 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

computerpro_58@hotmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |CODE_FIX

--- Comment #10 from computerpro_58@hotmail.com ---
Can confirm the patch in #7 fixes the issue (in trunk, backported as well).
Thanks for the great work @limanyi, issue resolved.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (10 preceding siblings ...)
  2021-08-28 22:40 ` bugzilla-daemon
@ 2021-09-15  3:55 ` bugzilla-daemon
  2021-09-22 18:27 ` bugzilla-daemon
  2021-10-15 17:59 ` bugzilla-daemon
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-09-15  3:55 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

jeffro (jetlag0515@yahoo.com) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jetlag0515@yahoo.com

--- Comment #11 from jeffro (jetlag0515@yahoo.com) ---
Also encountering this issue on Ubuntu 18.04 LTS as of last kernel update to
4.15.0.156-generic.  CD tray only ejects after resume from suspend, not on boot
(No disk in the drive).  Previous kernel (4.15.0.154-generic) does not exhibit
this behavior.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (11 preceding siblings ...)
  2021-09-15  3:55 ` bugzilla-daemon
@ 2021-09-22 18:27 ` bugzilla-daemon
  2021-10-15 17:59 ` bugzilla-daemon
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-09-22 18:27 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

--- Comment #12 from jeffro (jetlag0515@yahoo.com) ---
After today's Ubuntu 18.04 LTS kernel update to 4.15.0.158-generic the CD tray
eject problem still persists.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* [Bug 213759] CD tray ejected on hibernate resume
  2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
                   ` (12 preceding siblings ...)
  2021-09-22 18:27 ` bugzilla-daemon
@ 2021-10-15 17:59 ` bugzilla-daemon
  13 siblings, 0 replies; 15+ messages in thread
From: bugzilla-daemon @ 2021-10-15 17:59 UTC (permalink / raw)
  To: linux-scsi

https://bugzilla.kernel.org/show_bug.cgi?id=213759

Ahmed Sayeed (ucelsanicin@yahoo.com) changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ucelsanicin@yahoo.com

--- Comment #13 from Ahmed Sayeed (ucelsanicin@yahoo.com) ---
/gdb/arch/arc.c:117:43:   required from here http://www.compilatori.com/ 
/usr/include/c++/4.8.2/bits/hashtable_policy.h:195:39: error: no matching
function for call to ‘std::pair<const arc_arch_features, const
std::unique_ptr<target_desc, http://www-look-4.com/ target_desc_deleter>
>::pair(const arc_arch_features&, target_desc*&)’
  : _M_v(std::forward<_Args>(__args)...) { } http://www.acpirateradio.co.uk/
                                       ^ 
/usr/include/c++/4.8.2/bits/hashtable_policy.h:195:39: note: candidates are:
https://www.webb-dev.co.uk/
In file included from /usr/include/c++/4.8.2/utility:70:0,
                 from /usr/include/c++/4.8.2/tuple:38,
http://www.logoarts.co.uk/
                 from /usr/include/c++/4.8.2/functional:55, 
                 from ../../gdb/../gdbsupport/ptid.h:35,
https://komiya-dental.com/
                 from ../../gdb/../gdbsupport/common-defs.h:123,
                 from ../../gdb/arch/arc.c:19: http://www.slipstone.co.uk/

/usr/include/c++/4.8.2/bits/stl_pair.h:206:9: note: template<class ... _Args1,
long unsigned int ..._Indexes1, class ... _Args2, long unsigned int
..._Indexes2> std::pair<_T1, http://embermanchester.uk/  
_T2>::pair(std::tuple<_Args1 ...>&, std::tuple<_Args2 ...>&,
std::_Index_tuple<_Indexes1 ...>, std::_Index_tuple<_Indexes2 ...>)
         pair(tuple<_Args1...>&, tuple<_Args2...>&, http://connstr.net/
         ^
-------->8---------
http://joerg.li/
Thanks to Tome de Vries' investigation, same fix applies in ARC's case as well:
--------8<--------- http://www.jopspeech.com/
diff --git a/gdb/arch/arc.c b/gdb/arch/arc.c
index 3808f9f..a5385ce 100644
--- a/gdb/arch/arc.c
+++ b/gdb/arch/arc.c http://www.wearelondonmade.com/
@@ -114,7 +114,7 @@ struct arc_arch_features_hasher
   target_desc *tdesc = arc_create_target_description (features);
https://waytowhatsnext.com/

   /* Add the newly created target description to the repertoire.  */
-  arc_tdesc_cache.emplace (features, tdesc); http://www.iu-bloomington.com/
+  arc_tdesc_cache.emplace (features, target_desc_up (tdesc));

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are on the CC list for the bug.
You are watching the assignee of the bug.

^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2021-10-15 17:59 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-16 22:37 [Bug 213759] New: CD tray ejected on hibernate resume bugzilla-daemon
2021-07-16 22:38 ` [Bug 213759] " bugzilla-daemon
2021-07-17 21:58 ` bugzilla-daemon
2021-07-20  3:58 ` bugzilla-daemon
2021-07-20  5:24 ` bugzilla-daemon
2021-07-23 15:51 ` bugzilla-daemon
2021-07-24  9:42 ` bugzilla-daemon
2021-07-24 10:31 ` bugzilla-daemon
2021-07-26 11:01 ` bugzilla-daemon
2021-07-27 14:55 ` bugzilla-daemon
2021-08-25  5:34 ` bugzilla-daemon
2021-08-28 22:40 ` bugzilla-daemon
2021-09-15  3:55 ` bugzilla-daemon
2021-09-22 18:27 ` bugzilla-daemon
2021-10-15 17:59 ` bugzilla-daemon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).