diff mbox series

drm/mgag200: Increase bandwidth for G200se A rev1

Message ID 20230717133037.25941-1-jfalempe@redhat.com (mailing list archive)
State New, archived
Headers show
Series drm/mgag200: Increase bandwidth for G200se A rev1 | expand

Commit Message

Jocelyn Falempe July 17, 2023, 1:29 p.m. UTC
A G200SE_A rev 1 user reported that prior to v6.0, he was able to get Xorg
working at 1440x900@60Hz. This somehow bypassed the bandwidth test in the
driver. After v6.0, and the driver refactor, it's no longer possible.
So increase the bandwidth, as the hardware is able to do it.

In mgag200_calculate_mode_bandwidth(), the bandwidth for 1440x900@60 is
30318019, while 24400 * 1024 = 24985600 and 30100 * 1024 = 30822400.
Raising the bandwidth from 24400 to 30100 is enough to allow this mode.

Reported-by: Roger Sewell <roger.sewell@cantab.net>
Tested-by: Roger Sewell <roger.sewell@cantab.net>
Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
---
 drivers/gpu/drm/mgag200/mgag200_g200se.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: c2268daa65fb415cfd463016ad54c20afef8f75e

Comments

Thomas Zimmermann July 24, 2023, 6:48 p.m. UTC | #1
Hi Jocelyn

Am 17.07.23 um 15:29 schrieb Jocelyn Falempe:
> A G200SE_A rev 1 user reported that prior to v6.0, he was able to get Xorg
> working at 1440x900@60Hz. This somehow bypassed the bandwidth test in the
> driver. After v6.0, and the driver refactor, it's no longer possible.

I took that bandwidth number from the old source code at

 
https://elixir.bootlin.com/linux/v5.19/source/drivers/gpu/drm/mgag200/mgag200_mode.c#L725

 From this code, I don't see how it skipped this test. Maybe the 
refactoring is incorrect.

Do you have the opportunity to further debug this issue on the users 
machine?  I'd be interested in the exact model and the unique_rev_id 
(you said A, rev1 ?) and if the early-out branches in 
mga_vga_calculate_mode_bandwidth() are being taken. Can you figure out 
how exactly the CPU moves through mga_vga_mode_valid().

Best regards
Thomas

> So increase the bandwidth, as the hardware is able to do it.
> 
> In mgag200_calculate_mode_bandwidth(), the bandwidth for 1440x900@60 is
> 30318019, while 24400 * 1024 = 24985600 and 30100 * 1024 = 30822400.
> Raising the bandwidth from 24400 to 30100 is enough to allow this mode.
> 
> Reported-by: Roger Sewell <roger.sewell@cantab.net>
> Tested-by: Roger Sewell <roger.sewell@cantab.net>
> Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
> ---
>   drivers/gpu/drm/mgag200/mgag200_g200se.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/mgag200/mgag200_g200se.c b/drivers/gpu/drm/mgag200/mgag200_g200se.c
> index bd6e573c9a1a..3b49e30931e1 100644
> --- a/drivers/gpu/drm/mgag200/mgag200_g200se.c
> +++ b/drivers/gpu/drm/mgag200/mgag200_g200se.c
> @@ -437,7 +437,7 @@ static int mgag200_g200se_pipeline_init(struct mga_device *mdev)
>    */
>   
>   static const struct mgag200_device_info mgag200_g200se_a_01_device_info =
> -	MGAG200_DEVICE_INFO_INIT(1600, 1200, 24400, false, 0, 1, true);
> +	MGAG200_DEVICE_INFO_INIT(1600, 1200, 30100, false, 0, 1, true);
>   
>   static const struct mgag200_device_info mgag200_g200se_a_02_device_info =
>   	MGAG200_DEVICE_INFO_INIT(1920, 1200, 30100, false, 0, 1, true);
> 
> base-commit: c2268daa65fb415cfd463016ad54c20afef8f75e
Thomas Zimmermann July 24, 2023, 6:57 p.m. UTC | #2
Am 24.07.23 um 20:48 schrieb Thomas Zimmermann:
> Hi Jocelyn
> 
> Am 17.07.23 um 15:29 schrieb Jocelyn Falempe:
>> A G200SE_A rev 1 user reported that prior to v6.0, he was able to get 
>> Xorg
>> working at 1440x900@60Hz. This somehow bypassed the bandwidth test in the
>> driver. After v6.0, and the driver refactor, it's no longer possible.
> 
> I took that bandwidth number from the old source code at
> 
> 
> https://elixir.bootlin.com/linux/v5.19/source/drivers/gpu/drm/mgag200/mgag200_mode.c#L725
> 
>  From this code, I don't see how it skipped this test. Maybe the 
> refactoring is incorrect.

There's a difference that might be worth investigating: if the unique 
rev equals 0x00, the current code will use the settings for rev 1.

 
https://elixir.bootlin.com/linux/v6.4/source/drivers/gpu/drm/mgag200/mgag200_g200se.c#L514

Compare this to the old code, which would have taken the settings for 
rev 3 and later:

https://elixir.bootlin.com/linux/v5.19/source/drivers/gpu/drm/mgag200/mgag200_mode.c#L719

Best regards
Thomas

> 
> Do you have the opportunity to further debug this issue on the users 
> machine?  I'd be interested in the exact model and the unique_rev_id 
> (you said A, rev1 ?) and if the early-out branches in 
> mga_vga_calculate_mode_bandwidth() are being taken. Can you figure out 
> how exactly the CPU moves through mga_vga_mode_valid().
> 
> Best regards
> Thomas
> 
>> So increase the bandwidth, as the hardware is able to do it.
>>
>> In mgag200_calculate_mode_bandwidth(), the bandwidth for 1440x900@60 is
>> 30318019, while 24400 * 1024 = 24985600 and 30100 * 1024 = 30822400.
>> Raising the bandwidth from 24400 to 30100 is enough to allow this mode.
>>
>> Reported-by: Roger Sewell <roger.sewell@cantab.net>
>> Tested-by: Roger Sewell <roger.sewell@cantab.net>
>> Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
>> ---
>>   drivers/gpu/drm/mgag200/mgag200_g200se.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/mgag200/mgag200_g200se.c 
>> b/drivers/gpu/drm/mgag200/mgag200_g200se.c
>> index bd6e573c9a1a..3b49e30931e1 100644
>> --- a/drivers/gpu/drm/mgag200/mgag200_g200se.c
>> +++ b/drivers/gpu/drm/mgag200/mgag200_g200se.c
>> @@ -437,7 +437,7 @@ static int mgag200_g200se_pipeline_init(struct 
>> mga_device *mdev)
>>    */
>>   static const struct mgag200_device_info 
>> mgag200_g200se_a_01_device_info =
>> -    MGAG200_DEVICE_INFO_INIT(1600, 1200, 24400, false, 0, 1, true);
>> +    MGAG200_DEVICE_INFO_INIT(1600, 1200, 30100, false, 0, 1, true);
>>   static const struct mgag200_device_info 
>> mgag200_g200se_a_02_device_info =
>>       MGAG200_DEVICE_INFO_INIT(1920, 1200, 30100, false, 0, 1, true);
>>
>> base-commit: c2268daa65fb415cfd463016ad54c20afef8f75e
>
Roger Sewell July 24, 2023, 8:57 p.m. UTC | #3
Thomas,

Hello, I'm the user who reported the issue. Definitely happy to help you
sort this out if I can, though my response speed will decrease when term
restarts in October.

> I'd be interested in the exact model and the unique_rev_id
> (you said A, rev1 ?) 

The machine is an Intel SR1625URR server including an S5520UR
motherboard. 

Table 10 in the following document says that  1440x900@60Hz is supported:
https://www.intel.com/content/dam/support/us/en/documents/motherboards/server/s5520ur/sb/e44031012_s5520ur_s5520urt_tps_r1_9.pdf

lspci -v returns:

07:00.0 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G200e [Pilot] ServerEngines (SEP1) (rev 02) (prog-if 00 [VGA controller])
	Subsystem: Intel Corporation Device 0101
	Physical Slot: 5
	Flags: bus master, fast devsel, latency 0, IRQ 16
	Memory at b0000000 (32-bit, prefetchable) [size=16M]
	Memory at b1800000 (32-bit, non-prefetchable) [size=16K]
	Memory at b1000000 (32-bit, non-prefetchable) [size=8M]
	Expansion ROM at 000c0000 [disabled] [size=128K]
	Capabilities: <access denied>
	Kernel driver in use: mgag200
	Kernel modules: mgag200

so in particular the chip is said to be a G200e, not the G200SE-A that
the kernel module seems to be interpreting it as. In the lspci return it
calls itself "rev 02", but the unique_rev_id returned is 0x01, not 02,
and not 00. (My originally suggested solution was that "rev 02" might
correspond to unique_rev_id=0x01 and that one should add 1 to the
unique_rev_id, but Jocelyn indicated that isn't right.)

I instrumented a version of the new code by adding printk statements to
a version of the module embodied in a kmod-mgag200 package and observing
messages in the /var/log/messages file. These tell me that:

> and if the early-out branches in mga_vga_calculate_mode_bandwidth()
> are being taken. 

In the "old" code the options to return 0 are NOT being taken, and the
bandwidth returned is the expected value of 30318019. 

In the *new* code the options to return 0 are NOT being taken, and the
bandwidth returned is the expected value of 30318019. 

> Can you figure out how exactly the CPU moves through
> mga_vga_mode_valid().

In the "old" code we enter the true part of the if (IS_G200_SE(mdev)),
then the true part of the if (unique_rev_id == 0x01), then return
MODE_BANDWIDTH (i.e. MODE_BAD) at the third if statement in that block.

In the *new* code the nearest-named function I could see is
mgag200_mode_config_mode_valid, which returns MODE_OK at the end of the
function if the bandwidth limit is increased to 30100, and returns
MODE_BAD three lines higher up if it is left at 24400.

Moreover if when using the old code we switch to Wayland instead of
Xorg, it doesn't let me pick the 1440x900@60Hz mode at all, but it does
with Xorg (one of the reasons I hadn't used Wayland).

Therefore I think the reason that the old code allowed use of
1440x900@60Hz was that Xorg somehow didn't properly check the return
value from mga_vga_mode_valid, but Wayland did. Moreover I think that
the latest version of the Xorg stuff does PARTIALLY check that return
value, to the extent that it won't let you actually use that mode, but
does nonetheless present it as a choice when you go to Settings->Display
- and then saves the values it didn't allow you to take in
~/.config/monitors.xml, and on relogin refuses to give you any graphics
at all because it doesn't like those values. But that, of course, is
nothing to do with the mgag200 driver (if it is indeed true - I haven't
looked at the Xorg source code at all).

The issue from the point of view of my usage case is that the chip works
just fine in the 1440x900@60Hz mode, even though 30318019 > 1024*24400. 

If I haven't made anything sufficiently clear, or if you need more info,
please ask.

Best wishes,
Roger.
Thomas Zimmermann July 25, 2023, 7:37 p.m. UTC | #4
Hi Roger,

thanks for all the information.

Am 24.07.23 um 22:57 schrieb Roger Sewell:
> Thomas,
> 
> Hello, I'm the user who reported the issue. Definitely happy to help you
> sort this out if I can, though my response speed will decrease when term
> restarts in October.
> 
>> I'd be interested in the exact model and the unique_rev_id
>> (you said A, rev1 ?)
> 
> The machine is an Intel SR1625URR server including an S5520UR
> motherboard.
> 
> Table 10 in the following document says that  1440x900@60Hz is supported:
> https://www.intel.com/content/dam/support/us/en/documents/motherboards/server/s5520ur/sb/e44031012_s5520ur_s5520urt_tps_r1_9.pdf

That manual says that the resolution is only supported with at most 
24-bit colors. The old X code still supports that to some extend, but 
modern userspace doesn't.

It's not a Wayland thing, but applications now use Mesa for drawing, 
which doesn't like 24-bit color mode much. Userspace is slowly loosing 
the ability to work with anything less the 32-bit colors.

> 
> lspci -v returns:
> 
> 07:00.0 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G200e [Pilot] ServerEngines (SEP1) (rev 02) (prog-if 00 [VGA controller])
> 	Subsystem: Intel Corporation Device 0101
> 	Physical Slot: 5
> 	Flags: bus master, fast devsel, latency 0, IRQ 16
> 	Memory at b0000000 (32-bit, prefetchable) [size=16M]
> 	Memory at b1800000 (32-bit, non-prefetchable) [size=16K]
> 	Memory at b1000000 (32-bit, non-prefetchable) [size=8M]
> 	Expansion ROM at 000c0000 [disabled] [size=128K]
> 	Capabilities: <access denied>
> 	Kernel driver in use: mgag200
> 	Kernel modules: mgag200
> 
> so in particular the chip is said to be a G200e, not the G200SE-A that
> the kernel module seems to be interpreting it as. In the lspci return it

It actually is the G200SE-A. It's just named differently by lspci. The 
PCI device id should be 0x0522.

> calls itself "rev 02", but the unique_rev_id returned is 0x01, not 02,
> and not 00. (My originally suggested solution was that "rev 02" might
> correspond to unique_rev_id=0x01 and that one should add 1 to the
> unique_rev_id, but Jocelyn indicated that isn't right.)

That rev 02 if the PCI revision number. Matrox also has another revision 
ID named 'unique_rev_id' in the code. Who knows why...

> 
> I instrumented a version of the new code by adding printk statements to
> a version of the module embodied in a kmod-mgag200 package and observing
> messages in the /var/log/messages file. These tell me that:
> 
>> and if the early-out branches in mga_vga_calculate_mode_bandwidth()
>> are being taken.
> 
> In the "old" code the options to return 0 are NOT being taken, and the
> bandwidth returned is the expected value of 30318019.
> 
> In the *new* code the options to return 0 are NOT being taken, and the
> bandwidth returned is the expected value of 30318019.
> 
>> Can you figure out how exactly the CPU moves through
>> mga_vga_mode_valid().
> 
> In the "old" code we enter the true part of the if (IS_G200_SE(mdev)),
> then the true part of the if (unique_rev_id == 0x01), then return
> MODE_BANDWIDTH (i.e. MODE_BAD) at the third if statement in that block.

So the old kernel already did the right thing.

> 
> In the *new* code the nearest-named function I could see issys/class/drm/card1-eDP-1/modes
> mgag200_mode_config_mode_valid, which returns MODE_OK at the end of the
> function if the bandwidth limit is increased to 30100, and returns
> MODE_BAD three lines higher up if it is left at 24400.

Nothing has changed in the new kernel.

> 
> Moreover if when using the old code we switch to Wayland instead of
> Xorg, it doesn't let me pick the 1440x900@60Hz mode at all, but it does
> with Xorg (one of the reasons I hadn't used Wayland).

You can do

   cat /sys/class/drm/card1-VGA-1/modes

on the old and new kernel. With a monitor connector, it will tell you 
the supported resolutions.

> 
> Therefore I think the reason that the old code allowed use of
> 1440x900@60Hz was that Xorg somehow didn't properly check the return
> value from mga_vga_mode_valid, but Wayland did. Moreover I think that
> the latest version of the Xorg stuff does PARTIALLY check that return
> value, to the extent that it won't let you actually use that mode, but
> does nonetheless present it as a choice when you go to Settings->Display
> - and then saves the values it didn't allow you to take in
> ~/.config/monitors.xml, and on relogin refuses to give you any graphics
> at all because it doesn't like those values. But that, of course, is
> nothing to do with the mgag200 driver (if it is indeed true - I haven't
> looked at the Xorg source code at all).
> 
> The issue from the point of view of my usage case is that the chip works
> just fine in the 1440x900@60Hz mode, even though 30318019 > 1024*24400.

I don't want to increase that limit in the driver, as it might have 
consequences for a lot of other hardware. And if you assume that 
30318019 * 3 / 4 ~= 22738514 , 24-bit color mode fits into the current 
limit.

Jocelyn, should we attempt to make extra resolutions available for 16- 
and 24-bit modes? We could do the bandwith test in the primary plane's 
atomic_check, where we know the resolution and the color format. The 
general mode test would use bpp=8.  IDK how userspace reacts to that, so 
it would require some testing.

> 
> If I haven't made anything sufficiently clear, or if you need more info,
> please ask.

Your reply was very helpful. Thank you.

Best regards
Thomas

> 
> Best wishes,
> Roger.
Roger Sewell July 25, 2023, 9:31 p.m. UTC | #5
Thomas,

Thank you for your reply.

>> Table 10 in the following document says that  1440x900@60Hz is
>> supported:
>> https://www.intel.com/content/dam/support/us/en/documents/motherboards/server/s5520ur/sb/e44031012_s5520ur_s5520urt_tps_r1_9.pdf
> 
> That manual says that the resolution is only supported with at most
> 24-bit colors. The old X code still supports that to some extend, but 
> modern userspace doesn't.

How can I check for sure whether I am using 24 or 32 bits per pixel ?

>> so in particular the chip is said to be a G200e, not the G200SE-A
>> that the kernel module seems to be interpreting it as. 

> It actually is the G200SE-A. It's just named differently by lspci. The
> PCI device id should be 0x0522.

It is indeed 0x0522.

> So the old kernel already did the right thing.

(but if I understand the situation right Xorg didn't ?)

> You can do
> 
>   cat /sys/class/drm/card1-VGA-1/modes
> 
> on the old and new kernel. With a monitor connector, it will tell you
> the supported resolutions.

With the new kernel and the unmodified mgag200 module it tells me that
1440x900 is not on the list - but Xorg still lists it under
Settings->Display (and Wayland doesn't). With the increased bandwidth
module in place it tells me 1440x900 is on the list. I think this is as
you expect as far as the kernel rather than Xorg is concerned.

Thanks,
Roger.
Jocelyn Falempe July 26, 2023, 8:10 a.m. UTC | #6
On 25/07/2023 21:37, Thomas Zimmermann wrote:
> Hi Roger,
> 
> thanks for all the information.
> 
> Am 24.07.23 um 22:57 schrieb Roger Sewell:
>> Thomas,
>>
>> Hello, I'm the user who reported the issue. Definitely happy to help you
>> sort this out if I can, though my response speed will decrease when term
>> restarts in October.
>>
>>> I'd be interested in the exact model and the unique_rev_id
>>> (you said A, rev1 ?)
>>
>> The machine is an Intel SR1625URR server including an S5520UR
>> motherboard.
>>
>> Table 10 in the following document says that  1440x900@60Hz is supported:
>> https://www.intel.com/content/dam/support/us/en/documents/motherboards/server/s5520ur/sb/e44031012_s5520ur_s5520urt_tps_r1_9.pdf
> 
> That manual says that the resolution is only supported with at most 
> 24-bit colors. The old X code still supports that to some extend, but 
> modern userspace doesn't.
> 
> It's not a Wayland thing, but applications now use Mesa for drawing, 
> which doesn't like 24-bit color mode much. Userspace is slowly loosing 
> the ability to work with anything less the 32-bit colors.
> 
>>
>> lspci -v returns:
>>
>> 07:00.0 VGA compatible controller: Matrox Electronics Systems Ltd. MGA 
>> G200e [Pilot] ServerEngines (SEP1) (rev 02) (prog-if 00 [VGA controller])
>>     Subsystem: Intel Corporation Device 0101
>>     Physical Slot: 5
>>     Flags: bus master, fast devsel, latency 0, IRQ 16
>>     Memory at b0000000 (32-bit, prefetchable) [size=16M]
>>     Memory at b1800000 (32-bit, non-prefetchable) [size=16K]
>>     Memory at b1000000 (32-bit, non-prefetchable) [size=8M]
>>     Expansion ROM at 000c0000 [disabled] [size=128K]
>>     Capabilities: <access denied>
>>     Kernel driver in use: mgag200
>>     Kernel modules: mgag200
>>
>> so in particular the chip is said to be a G200e, not the G200SE-A that
>> the kernel module seems to be interpreting it as. In the lspci return it
> 
> It actually is the G200SE-A. It's just named differently by lspci. The 
> PCI device id should be 0x0522.
> 
>> calls itself "rev 02", but the unique_rev_id returned is 0x01, not 02,
>> and not 00. (My originally suggested solution was that "rev 02" might
>> correspond to unique_rev_id=0x01 and that one should add 1 to the
>> unique_rev_id, but Jocelyn indicated that isn't right.)
> 
> That rev 02 if the PCI revision number. Matrox also has another revision 
> ID named 'unique_rev_id' in the code. Who knows why...
> 
>>
>> I instrumented a version of the new code by adding printk statements to
>> a version of the module embodied in a kmod-mgag200 package and observing
>> messages in the /var/log/messages file. These tell me that:
>>
>>> and if the early-out branches in mga_vga_calculate_mode_bandwidth()
>>> are being taken.
>>
>> In the "old" code the options to return 0 are NOT being taken, and the
>> bandwidth returned is the expected value of 30318019.
>>
>> In the *new* code the options to return 0 are NOT being taken, and the
>> bandwidth returned is the expected value of 30318019.
>>
>>> Can you figure out how exactly the CPU moves through
>>> mga_vga_mode_valid().
>>
>> In the "old" code we enter the true part of the if (IS_G200_SE(mdev)),
>> then the true part of the if (unique_rev_id == 0x01), then return
>> MODE_BANDWIDTH (i.e. MODE_BAD) at the third if statement in that block.
> 
> So the old kernel already did the right thing.
> 
>>
>> In the *new* code the nearest-named function I could see 
>> issys/class/drm/card1-eDP-1/modes
>> mgag200_mode_config_mode_valid, which returns MODE_OK at the end of the
>> function if the bandwidth limit is increased to 30100, and returns
>> MODE_BAD three lines higher up if it is left at 24400.
> 
> Nothing has changed in the new kernel.

That's not completely true, as if I understand correctly, changing only 
the kernel with the same userspace, breaks the 1440x900 resolution. 
(Even if MODE_BAD is returned in both cases).

> 
>>
>> Moreover if when using the old code we switch to Wayland instead of
>> Xorg, it doesn't let me pick the 1440x900@60Hz mode at all, but it does
>> with Xorg (one of the reasons I hadn't used Wayland).
> 
> You can do
> 
>    cat /sys/class/drm/card1-VGA-1/modes
> 
> on the old and new kernel. With a monitor connector, it will tell you 
> the supported resolutions.
> 
>>
>> Therefore I think the reason that the old code allowed use of
>> 1440x900@60Hz was that Xorg somehow didn't properly check the return
>> value from mga_vga_mode_valid, but Wayland did. Moreover I think that
>> the latest version of the Xorg stuff does PARTIALLY check that return
>> value, to the extent that it won't let you actually use that mode, but
>> does nonetheless present it as a choice when you go to Settings->Display
>> - and then saves the values it didn't allow you to take in
>> ~/.config/monitors.xml, and on relogin refuses to give you any graphics
>> at all because it doesn't like those values. But that, of course, is
>> nothing to do with the mgag200 driver (if it is indeed true - I haven't
>> looked at the Xorg source code at all).
>>
>> The issue from the point of view of my usage case is that the chip works
>> just fine in the 1440x900@60Hz mode, even though 30318019 > 1024*24400.
> 
> I don't want to increase that limit in the driver, as it might have 
> consequences for a lot of other hardware. And if you assume that 
> 30318019 * 3 / 4 ~= 22738514 , 24-bit color mode fits into the current 
> limit.

There are no public hardware specifications, so it's pretty hard to know 
if the 24400 limit is legitimate or not. At least one hardware is able 
to overcome that.

I've already sent a patch to use internally 24bit colors, when userspace 
can use 32bit that would solve this issue as well. In the end, on the 
VGA link, 24 or 32 bit colors are the same. That would allow modern 
userspace to work on par with Xorg. So maybe we can reconsider it ?
https://patchwork.freedesktop.org/series/116381/
I would need to update the bandwidth test to accommodate for 24bit.

> 
> Jocelyn, should we attempt to make extra resolutions available for 16- 
> and 24-bit modes? We could do the bandwith test in the primary plane's 
> atomic_check, where we know the resolution and the color format. The 
> general mode test would use bpp=8.  IDK how userspace reacts to that, so 
> it would require some testing.

That will only work for old userspace (Xorg) able to do 16 or 24 bit 
modes. Also the driver don't do 8bit, so 16bit is the minimum, and can 
be used in the general mode test. I can still give it a try.

Best regards,
Jocelyn Falempe July 26, 2023, 8:16 a.m. UTC | #7
On 25/07/2023 23:31, Roger Sewell wrote:
> 
> Thomas,
> 
> Thank you for your reply.
> 
>>> Table 10 in the following document says that  1440x900@60Hz is
>>> supported:
>>> https://www.intel.com/content/dam/support/us/en/documents/motherboards/server/s5520ur/sb/e44031012_s5520ur_s5520urt_tps_r1_9.pdf
>>
>> That manual says that the resolution is only supported with at most
>> 24-bit colors. The old X code still supports that to some extend, but
>> modern userspace doesn't.
> 
> How can I check for sure whether I am using 24 or 32 bits per pixel ?

The easiest solution if you already rebuilt your kernel is to print the 
variable bpp here:

https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/mgag200/mgag200_mode.c#L326

pr_info("mgag200 bpp %d\n", bpp);

Also if you can run Wayland at 1440x900@60, that would mean the hardware 
is indeed able to handle it in 32bit.

> 
>>> so in particular the chip is said to be a G200e, not the G200SE-A
>>> that the kernel module seems to be interpreting it as.
> 
>> It actually is the G200SE-A. It's just named differently by lspci. The
>> PCI device id should be 0x0522.
> 
> It is indeed 0x0522.
> 
>> So the old kernel already did the right thing.
> 
> (but if I understand the situation right Xorg didn't ?)
> 
>> You can do
>>
>>    cat /sys/class/drm/card1-VGA-1/modes
>>
>> on the old and new kernel. With a monitor connector, it will tell you
>> the supported resolutions.
> 
> With the new kernel and the unmodified mgag200 module it tells me that
> 1440x900 is not on the list - but Xorg still lists it under
> Settings->Display (and Wayland doesn't). With the increased bandwidth
> module in place it tells me 1440x900 is on the list. I think this is as
> you expect as far as the kernel rather than Xorg is concerned.
> 
> Thanks,
> Roger.
> 

Best regards,
Roger Sewell July 26, 2023, 10:11 a.m. UTC | #8
Jocelyn,

>> How can I check for sure whether I am using 24 or 32 bits per pixel
>> ?
> 
> The easiest solution if you already rebuilt your kernel is to print
> the variable bpp here:
> 
> https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/mgag200/mgag200_mode.c#L326
> 
> pr_info("mgag200 bpp %d\n", bpp);

Did that, and I get "mgag200 bpp 32".

> Also if you can run Wayland at 1440x900@60, that would mean the
> hardware is indeed able to handle it in 32bit.

I can indeed run Wayland at 1440x900@60.

So I think I'm right in saying that my graphics chip can handle
1440x900@60 with 32 bits per pixel.

However, while searching /var/log/messages for the bpp output above, I
also found these two lines:

/usr/libexec/gdm-x-session[2366]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
/usr/libexec/gdm-x-session[2366]: (==) modeset(0): RGB weight 888

in case it makes a difference.

Thanks,
Roger.
Jocelyn Falempe July 26, 2023, 11:39 a.m. UTC | #9
On 26/07/2023 12:11, Roger Sewell wrote:
> 
> Jocelyn,
> 
>>> How can I check for sure whether I am using 24 or 32 bits per pixel
>>> ?
>>
>> The easiest solution if you already rebuilt your kernel is to print
>> the variable bpp here:
>>
>> https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/mgag200/mgag200_mode.c#L326
>>
>> pr_info("mgag200 bpp %d\n", bpp);
> 
> Did that, and I get "mgag200 bpp 32".
> 
>> Also if you can run Wayland at 1440x900@60, that would mean the
>> hardware is indeed able to handle it in 32bit.
> 
> I can indeed run Wayland at 1440x900@60.
> 
> So I think I'm right in saying that my graphics chip can handle
> 1440x900@60 with 32 bits per pixel.

Thanks for confirming that. So either the specification is a bit too 
conservative, or your specific hardware is above average.
> 
> However, while searching /var/log/messages for the bpp output above, I
> also found these two lines:
> 
> /usr/libexec/gdm-x-session[2366]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
> /usr/libexec/gdm-x-session[2366]: (==) modeset(0): RGB weight 888

Yes in 32bits, only 24 are actual color, the remaining 8 bits are 
discarded. In newer monitor, you can have 10 bits per color, but that 
would still be 32bits per pixel. Thus in your case the color depth is 24 
and bits_per_pixel is 32, which is the most common.
> 
> in case it makes a difference.
> 
> Thanks,
> Roger.
>
Thomas Zimmermann July 26, 2023, 3:21 p.m. UTC | #10
Hi

Am 26.07.23 um 12:11 schrieb Roger Sewell:
> Jocelyn,
> 
>>> How can I check for sure whether I am using 24 or 32 bits per pixel
>>> ?
>>
>> The easiest solution if you already rebuilt your kernel is to print
>> the variable bpp here:
>>
>> https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/mgag200/mgag200_mode.c#L326
>>
>> pr_info("mgag200 bpp %d\n", bpp);
> 
> Did that, and I get "mgag200 bpp 32".
> 
>> Also if you can run Wayland at 1440x900@60, that would mean the
>> hardware is indeed able to handle it in 32bit.
> 
> I can indeed run Wayland at 1440x900@60.
> 
> So I think I'm right in saying that my graphics chip can handle
> 1440x900@60 with 32 bits per pixel.

Of course. You modified that limit, so the pixel rate remains below.

Best regards
Thomas

> 
> However, while searching /var/log/messages for the bpp output above, I
> also found these two lines:
> 
> /usr/libexec/gdm-x-session[2366]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
> /usr/libexec/gdm-x-session[2366]: (==) modeset(0): RGB weight 888
> 
> in case it makes a difference.
> 
> Thanks,
> Roger.
Thomas Zimmermann July 26, 2023, 3:36 p.m. UTC | #11
Hi Jocelyn

Am 26.07.23 um 10:10 schrieb Jocelyn Falempe:
[...]
>> So the old kernel already did the right thing.
>>
>>>
>>> In the *new* code the nearest-named function I could see 
>>> issys/class/drm/card1-eDP-1/modes
>>> mgag200_mode_config_mode_valid, which returns MODE_OK at the end of the
>>> function if the bandwidth limit is increased to 30100, and returns
>>> MODE_BAD three lines higher up if it is left at 24400.
>>
>> Nothing has changed in the new kernel.
> 
> That's not completely true, as if I understand correctly, changing only 
> the kernel with the same userspace, breaks the 1440x900 resolution. 
> (Even if MODE_BAD is returned in both cases).

But how so? My understanding is that the kernel's behavior does not 
change. Only userspace. I'm rather puzzled about the details here. Maybe 
the old Xorg uses an entirely different driver, such as the old Xorg 
userspace code.

> 
>>
>>>
>>> Moreover if when using the old code we switch to Wayland instead of
>>> Xorg, it doesn't let me pick the 1440x900@60Hz mode at all, but it does
>>> with Xorg (one of the reasons I hadn't used Wayland).
>>
>> You can do
>>
>>    cat /sys/class/drm/card1-VGA-1/modes
>>
>> on the old and new kernel. With a monitor connector, it will tell you 
>> the supported resolutions.
>>
>>>
>>> Therefore I think the reason that the old code allowed use of
>>> 1440x900@60Hz was that Xorg somehow didn't properly check the return
>>> value from mga_vga_mode_valid, but Wayland did. Moreover I think that
>>> the latest version of the Xorg stuff does PARTIALLY check that return
>>> value, to the extent that it won't let you actually use that mode, but
>>> does nonetheless present it as a choice when you go to Settings->Display
>>> - and then saves the values it didn't allow you to take in
>>> ~/.config/monitors.xml, and on relogin refuses to give you any graphics
>>> at all because it doesn't like those values. But that, of course, is
>>> nothing to do with the mgag200 driver (if it is indeed true - I haven't
>>> looked at the Xorg source code at all).
>>>
>>> The issue from the point of view of my usage case is that the chip works
>>> just fine in the 1440x900@60Hz mode, even though 30318019 > 1024*24400.
>>
>> I don't want to increase that limit in the driver, as it might have 
>> consequences for a lot of other hardware. And if you assume that 
>> 30318019 * 3 / 4 ~= 22738514 , 24-bit color mode fits into the current 
>> limit.
> 
> There are no public hardware specifications, so it's pretty hard to know 
> if the 24400 limit is legitimate or not. At least one hardware is able 
> to overcome that.

That limit has been in the driver since the dawn of time. I'm not going 
to tinker with it.

 
https://cgit.freedesktop.org/xorg/driver/xf86-video-mga/tree/src/mga_driver.c#n3890

> 
> I've already sent a patch to use internally 24bit colors, when userspace 
> can use 32bit that would solve this issue as well. In the end, on the 
> VGA link, 24 or 32 bit colors are the same. That would allow modern 
> userspace to work on par with Xorg. So maybe we can reconsider it ?

No way. We've had IRC flamewars over this topic already. People didn't 
get work done that day; others ragequit-ed in frustration. Ask Javier, 
he'll remember. :)

The consent in DRM-land is: we're not going to mess with color formats 
behind the back of userspace. The only exception is the emulation of 
XRGB8888 iff the hardware does not support that. And only because it's 
the fallback format that is universally supported.

> https://patchwork.freedesktop.org/series/116381/
> I would need to update the bandwidth test to accommodate for 24bit.
> 
>>
>> Jocelyn, should we attempt to make extra resolutions available for 16- 
>> and 24-bit modes? We could do the bandwith test in the primary plane's 
>> atomic_check, where we know the resolution and the color format. The 
>> general mode test would use bpp=8.  IDK how userspace reacts to that, 
>> so it would require some testing.
> 
> That will only work for old userspace (Xorg) able to do 16 or 24 bit 
> modes. Also the driver don't do 8bit, so 16bit is the minimum, and can 
> be used in the general mode test. I can still give it a try.

Mesa still supports 16-bits IIRC. But 24-bit pixels are unaligned, which 
makes it hard.  I'm worried about autodetection here. If the userspace 
fails with 1440x900-32, it needs to test 1440x900-16 next. I wouldn't 
bet on this.

Best regards
Thomas

> 
> Best regards,
>
Thomas Zimmermann July 26, 2023, 3:40 p.m. UTC | #12
Hi

Am 25.07.23 um 23:31 schrieb Roger Sewell:
> Thomas,
> 
> Thank you for your reply.
> 
>>> Table 10 in the following document says that  1440x900@60Hz is
>>> supported:
>>> https://www.intel.com/content/dam/support/us/en/documents/motherboards/server/s5520ur/sb/e44031012_s5520ur_s5520urt_tps_r1_9.pdf
>>
>> That manual says that the resolution is only supported with at most
>> 24-bit colors. The old X code still supports that to some extend, but
>> modern userspace doesn't.
> 
> How can I check for sure whether I am using 24 or 32 bits per pixel ?

Could you provide us with the Xorg logs from /var/log/Xorg.0.log , please?

Specifically, I'd be interested in different logs from combinations of 
the old and new kernel and the old and new userspace.

Best regards
Thomas

> 
>>> so in particular the chip is said to be a G200e, not the G200SE-A
>>> that the kernel module seems to be interpreting it as.
> 
>> It actually is the G200SE-A. It's just named differently by lspci. The
>> PCI device id should be 0x0522.
> 
> It is indeed 0x0522.
> 
>> So the old kernel already did the right thing.
> 
> (but if I understand the situation right Xorg didn't ?)
> 
>> You can do
>>
>>    cat /sys/class/drm/card1-VGA-1/modes
>>
>> on the old and new kernel. With a monitor connector, it will tell you
>> the supported resolutions.
> 
> With the new kernel and the unmodified mgag200 module it tells me that
> 1440x900 is not on the list - but Xorg still lists it under
> Settings->Display (and Wayland doesn't). With the increased bandwidth
> module in place it tells me 1440x900 is on the list. I think this is as
> you expect as far as the kernel rather than Xorg is concerned.
> 
> Thanks,
> Roger.
Maxime Ripard July 27, 2023, 2:33 p.m. UTC | #13
Hi Thomas,

On Wed, Jul 26, 2023 at 05:36:15PM +0200, Thomas Zimmermann wrote:
> > I've already sent a patch to use internally 24bit colors, when userspace
> > can use 32bit that would solve this issue as well. In the end, on the
> > VGA link, 24 or 32 bit colors are the same. That would allow modern
> > userspace to work on par with Xorg. So maybe we can reconsider it ?
> 
> No way. We've had IRC flamewars over this topic already. People didn't get
> work done that day; others ragequit-ed in frustration. Ask Javier, he'll
> remember. :)
> 
> The consent in DRM-land is: we're not going to mess with color formats
> behind the back of userspace. The only exception is the emulation of
> XRGB8888 iff the hardware does not support that. And only because it's the
> fallback format that is universally supported.

I'm aware that I might be reviving old heated debates here, but I'm not
sure what is the problem here.

I guess part of the problem is that due to the memcpy call, we would
have it in software.

But it's not clear to me how we're messing with color formats there: the
memcpy would drop the alpha part that was doing to be dropped by the
hardware anyway (and likely would have done so transparently if it
wasn't for the memcpy).

It doesn't affect the userspace at all, it doesn't change the way we
interpret the format either, it just ignores a part of the format that
is supposed to be ignored anyway. And doing so frees up a bunch of
resources?

So, AFAIU, it doesn't have any side effect except for the fact that it
consumes less memory bandwidth and allows for more pixels to go through.
That's not really "messing with the formats" in my book.

Maxime
Thomas Zimmermann July 27, 2023, 2:55 p.m. UTC | #14
Hi Maxime

Am 27.07.23 um 16:33 schrieb Maxime Ripard:
> Hi Thomas,
> 
> On Wed, Jul 26, 2023 at 05:36:15PM +0200, Thomas Zimmermann wrote:
>>> I've already sent a patch to use internally 24bit colors, when userspace
>>> can use 32bit that would solve this issue as well. In the end, on the
>>> VGA link, 24 or 32 bit colors are the same. That would allow modern
>>> userspace to work on par with Xorg. So maybe we can reconsider it ?
>>
>> No way. We've had IRC flamewars over this topic already. People didn't get
>> work done that day; others ragequit-ed in frustration. Ask Javier, he'll
>> remember. :)
>>
>> The consent in DRM-land is: we're not going to mess with color formats
>> behind the back of userspace. The only exception is the emulation of
>> XRGB8888 iff the hardware does not support that. And only because it's the
>> fallback format that is universally supported.
> 
> I'm aware that I might be reviving old heated debates here, but I'm not
> sure what is the problem here.
> 
> I guess part of the problem is that due to the memcpy call, we would
> have it in software.
> 
> But it's not clear to me how we're messing with color formats there: the
> memcpy would drop the alpha part that was doing to be dropped by the
> hardware anyway (and likely would have done so transparently if it
> wasn't for the memcpy).
> 
> It doesn't affect the userspace at all, it doesn't change the way we
> interpret the format either, it just ignores a part of the format that
> is supposed to be ignored anyway. And doing so frees up a bunch of
> resources?
> 
> So, AFAIU, it doesn't have any side effect except for the fact that it
> consumes less memory bandwidth and allows for more pixels to go through.
> That's not really "messing with the formats" in my book.

Technically not, but it's still a difference. Even in such cases without 
side effects, it was dismissed when discussed in the context of simpledrm.

The reasoning is that userspace should always be in control of the 
format (sans that one exception). If userspace wants packed 24-bits it 
can support RGB888 explicitly.  For the color-format transformation, 
it's better to do that in userspace with SSE-like instructions than in 
the kernel.

I wasn't super-happy with this, but I think it's a clear statement with 
simple rules to follow. I'd prefer that over relaxed rules where each 
driver does its own thing.

Best regards
Thomas

> 
> Maxime
Javier Martinez Canillas July 27, 2023, 3:10 p.m. UTC | #15
Thomas Zimmermann <tzimmermann@suse.de> writes:

> Hi Maxime
>
> Am 27.07.23 um 16:33 schrieb Maxime Ripard:
>> Hi Thomas,
>> 
>> On Wed, Jul 26, 2023 at 05:36:15PM +0200, Thomas Zimmermann wrote:
>>>> I've already sent a patch to use internally 24bit colors, when userspace
>>>> can use 32bit that would solve this issue as well. In the end, on the
>>>> VGA link, 24 or 32 bit colors are the same. That would allow modern
>>>> userspace to work on par with Xorg. So maybe we can reconsider it ?
>>>
>>> No way. We've had IRC flamewars over this topic already. People didn't get
>>> work done that day; others ragequit-ed in frustration. Ask Javier, he'll
>>> remember. :)
>>>
>>> The consent in DRM-land is: we're not going to mess with color formats
>>> behind the back of userspace. The only exception is the emulation of
>>> XRGB8888 iff the hardware does not support that. And only because it's the
>>> fallback format that is universally supported.
>> 
>> I'm aware that I might be reviving old heated debates here, but I'm not
>> sure what is the problem here.
>> 
>> I guess part of the problem is that due to the memcpy call, we would
>> have it in software.
>> 
>> But it's not clear to me how we're messing with color formats there: the
>> memcpy would drop the alpha part that was doing to be dropped by the
>> hardware anyway (and likely would have done so transparently if it
>> wasn't for the memcpy).
>> 
>> It doesn't affect the userspace at all, it doesn't change the way we
>> interpret the format either, it just ignores a part of the format that
>> is supposed to be ignored anyway. And doing so frees up a bunch of
>> resources?
>> 
>> So, AFAIU, it doesn't have any side effect except for the fact that it
>> consumes less memory bandwidth and allows for more pixels to go through.
>> That's not really "messing with the formats" in my book.

I agree with you Maxime and I believe Thomas also does, but the concensus
when that topic was (heatedly) dicusssed was that drivers should not fake
a pixel format. Even if is only about dropping the alpha channel, like in
the patch that Jocelyn mentioned.

>
> Technically not, but it's still a difference. Even in such cases without 
> side effects, it was dismissed when discussed in the context of simpledrm.
>

Indeed. I remember that discussion.

> The reasoning is that userspace should always be in control of the 
> format (sans that one exception). If userspace wants packed 24-bits it 
> can support RGB888 explicitly.  For the color-format transformation, 
> it's better to do that in userspace with SSE-like instructions than in 
> the kernel.
>
> I wasn't super-happy with this, but I think it's a clear statement with 
> simple rules to follow. I'd prefer that over relaxed rules where each 
> driver does its own thing.
>

I wasn't super happy either, but if I remember correctly we were the only
two that had this point of view and everyone else there thought that the
drivers shouldn't expose a format that don't support (other than XR24) ?.
Roger Sewell July 27, 2023, 5:24 p.m. UTC | #16
Thomas,

> Could you provide us with the Xorg logs from /var/log/Xorg.0.log ,
> please?
> 
> Specifically, I'd be interested in different logs from combinations of
> the old and new kernel and the old and new userspace.

I've managed to do six of the eight possible combinations of kernel,
mgag200 module, and userspace. The attached archive contains all the
corresponding Xorg logs as well as a detailed notes file.

I couldn't do the remaining two combinations because I couldn't get the
new mgag200 module to compile for the old kernel. 

My previous theory was wrong, but hopefully the attached logs will help
you work out why the old kernel permitted the high bandwidth mode I
always use (despite returning MODE_BAD) and the new kernel doesn't.

(The "old" kernel is 9.1, i.e. 5.14.0-162.6.1.el9_1.0.1, and "new"
kernel is 9.2, i.e. 5.14.0-284.18.1.el9_2 .)

Best wishes,
Roger.
Roger Sewell July 27, 2023, 9:34 p.m. UTC | #17
Thomas, Jocelyn,

As a result of the collection of the Xorg logs requested by Thomas, I've
realised that at some long-past point upgrade the 1440x900@60 mode
disappeared, and in order to get it back I introduced the file
/etc/X11/xorg.conf.d/20-screen.conf attached.

If I remove this file, then with the unmodified new mgag200 module in
place, on going to Settings->Display I am no longer even offered the
1440x900 option - presumably as a result of
mgag200_mode_config_mode_valid returning MODE_BAD.

With this file in place, and with the unmodified new mgag200 module in
place, I am offered this setting, but if I pick it then it is not used
but *is* written into ~/.config/monitors.xml, and then on next login
graphics fail completely.

Hypothesis: there are two different places in the code where mode_valid
is potentially checked, both of which use the mgag200 module, and the
old module only does this check at one of them (deciding which modes to
offer) (which check is bypassed for modes requested in xorg.conf.d),
while the new module does it at both (and hence fails invalid modes
requested in xorg.conf.d) ??

Looking for possible reasons why this might be the case (and straying
way beyond my competence), I note that in the old module
mga_vga_mode_valid is made known to other parts of the system in a
different way than mgag200_mode_config_mode_valid is in the new module
(and indeed they have different parameter types). (Might this be
relevant ?)

Best wishes,
Roger.
Section "Monitor"
        Identifier      "My monitor"
        Modeline "1440x900" 106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync
        Modeline "1280x800"  83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync
        Modeline "1280x720"  74.44  1280 1336 1472 1664  720 721 724 746 -hsync +vsync
EndSection
Section "Screen"
	Identifier	"Builtin Default mga Screen 0"
	Device	"Builtin Default Device 0"
        Monitor "My monitor"
        SubSection "Display"
             Virtual 1440 900
             Modes "1440x900"
        EndSubSection
EndSection
Section "ServerLayout"
	Identifier	"Builtin Default Layout"
	Screen	"Builtin Default mga Screen 0"
EndSection
Thomas Zimmermann July 28, 2023, 7:21 a.m. UTC | #18
Hi

Am 27.07.23 um 19:24 schrieb Roger Sewell:
> 
> Thomas,
> 
>> Could you provide us with the Xorg logs from /var/log/Xorg.0.log ,
>> please?
>>
>> Specifically, I'd be interested in different logs from combinations of
>> the old and new kernel and the old and new userspace.
> 
> I've managed to do six of the eight possible combinations of kernel,
> mgag200 module, and userspace. The attached archive contains all the
> corresponding Xorg logs as well as a detailed notes file.
> 
> I couldn't do the remaining two combinations because I couldn't get the
> new mgag200 module to compile for the old kernel.
> 
> My previous theory was wrong, but hopefully the attached logs will help
> you work out why the old kernel permitted the high bandwidth mode I
> always use (despite returning MODE_BAD) and the new kernel doesn't.

Thanks for providing all these logs.

But I cannot really figure out why this works in the unmodified old 
kernel. In log 8, I can see an error at time 78.509.  That's the failed 
modeset operation. With the new driver, you get a lower resolution then?
It's not clear to me why X even tried 1440x900 at all. It should not be 
in the list of available modes.

Best regards
Thomas

> 
> (The "old" kernel is 9.1, i.e. 5.14.0-162.6.1.el9_1.0.1, and "new"
> kernel is 9.2, i.e. 5.14.0-284.18.1.el9_2 .)
> 
> Best wishes,
> Roger.
>
Jocelyn Falempe July 28, 2023, 7:37 a.m. UTC | #19
On 27/07/2023 19:24, Roger Sewell wrote:
> 
> Thomas,
> 
>> Could you provide us with the Xorg logs from /var/log/Xorg.0.log ,
>> please?
>>
>> Specifically, I'd be interested in different logs from combinations of
>> the old and new kernel and the old and new userspace.
> 
> I've managed to do six of the eight possible combinations of kernel,
> mgag200 module, and userspace. The attached archive contains all the
> corresponding Xorg logs as well as a detailed notes file.

Thanks for running all the tests.
> 
> I couldn't do the remaining two combinations because I couldn't get the
> new mgag200 module to compile for the old kernel.
> 
> My previous theory was wrong, but hopefully the attached logs will help
> you work out why the old kernel permitted the high bandwidth mode I
> always use (despite returning MODE_BAD) and the new kernel doesn't.
> 
> (The "old" kernel is 9.1, i.e. 5.14.0-162.6.1.el9_1.0.1, and "new"

For the drm/mgag200 part, it correspond to upstream v5.18 + 3 patches 
(which shouldn't impact the mode check):
c48a36301634 drm/mgag200: Optimize damage clips
3064debaf55e drm/mgag200: Add FB_DAMAGE_CLIPS support
c577b2f43e80 drm/mgag200: Enable atomic gamma lut update

> kernel is 9.2, i.e. 5.14.0-284.18.1.el9_2 .)

And this is equivalent to v6.0


> 
> Best wishes,
> Roger.
>
Thomas Zimmermann July 28, 2023, 7:45 a.m. UTC | #20
Hi

Am 27.07.23 um 23:34 schrieb Roger Sewell:
> 
> Thomas, Jocelyn,
> 
> As a result of the collection of the Xorg logs requested by Thomas, I've
> realised that at some long-past point upgrade the 1440x900@60 mode
> disappeared, and in order to get it back I introduced the file
> /etc/X11/xorg.conf.d/20-screen.conf attached.
> 
> If I remove this file, then with the unmodified new mgag200 module in
> place, on going to Settings->Display I am no longer even offered the
> 1440x900 option - presumably as a result of
> mgag200_mode_config_mode_valid returning MODE_BAD.
> 
> With this file in place, and with the unmodified new mgag200 module in
> place, I am offered this setting, but if I pick it then it is not used
> but *is* written into ~/.config/monitors.xml, and then on next login
> graphics fail completely.

Thanks for this information. If you configure a screen and/or modes via 
config file, such as 20-screen.conf, it overrides Xorg's autodetection. 
So X will happily use whatever you configured. This explains my other 
mail's question why Xorg even tries 1440x900 at all.

> 
> Hypothesis: there are two different places in the code where mode_valid
> is potentially checked, both of which use the mgag200 module, and the
> old module only does this check at one of them (deciding which modes to
> offer) (which check is bypassed for modes requested in xorg.conf.d),
> while the new module does it at both (and hence fails invalid modes
> requested in xorg.conf.d) ??

There's mode detection, which does the general test with mode_valid. It 
returns a list with possible modes. And there's mode setting, which 
tests if the display setting as a whole (mode, color format, outputs, 
and more) can can be programmed in the given combination. That's what 
fails with the new driver, but worked with the old driver.

I guess that the configured mode of 1440x900 somehow passed testing in 
the old driver. And as your chip could handle the overclocked pixelrate 
settings, you got a stable output even with 32-bit colors.

I assume that the new driver is somehow more strict in testing and 
rejects the overclocked pixel rate. (But I cannot see that in the code TBH).

> 
> Looking for possible reasons why this might be the case (and straying
> way beyond my competence), I note that in the old module
> mga_vga_mode_valid is made known to other parts of the system in a
> different way than mgag200_mode_config_mode_valid is in the new module
> (and indeed they have different parameter types). (Might this be
> relevant ?)

I'm not quite sure how to proceed here, as the driver is correct and the 
problem came from a mismatching config file on your system.

Best regards
Thomas

> 
> Best wishes,
> Roger.
> 
>
Jocelyn Falempe July 28, 2023, 8:09 a.m. UTC | #21
On 28/07/2023 09:45, Thomas Zimmermann wrote:
> Hi
> 
> Am 27.07.23 um 23:34 schrieb Roger Sewell:
>>
>> Thomas, Jocelyn,
>>
>> As a result of the collection of the Xorg logs requested by Thomas, I've
>> realised that at some long-past point upgrade the 1440x900@60 mode
>> disappeared, and in order to get it back I introduced the file
>> /etc/X11/xorg.conf.d/20-screen.conf attached.
>>
>> If I remove this file, then with the unmodified new mgag200 module in
>> place, on going to Settings->Display I am no longer even offered the
>> 1440x900 option - presumably as a result of
>> mgag200_mode_config_mode_valid returning MODE_BAD.
>>
>> With this file in place, and with the unmodified new mgag200 module in
>> place, I am offered this setting, but if I pick it then it is not used
>> but *is* written into ~/.config/monitors.xml, and then on next login
>> graphics fail completely.
> 
> Thanks for this information. If you configure a screen and/or modes via 
> config file, such as 20-screen.conf, it overrides Xorg's autodetection. 
> So X will happily use whatever you configured. This explains my other 
> mail's question why Xorg even tries 1440x900 at all.
> 
>>
>> Hypothesis: there are two different places in the code where mode_valid
>> is potentially checked, both of which use the mgag200 module, and the
>> old module only does this check at one of them (deciding which modes to
>> offer) (which check is bypassed for modes requested in xorg.conf.d),
>> while the new module does it at both (and hence fails invalid modes
>> requested in xorg.conf.d) ??
> 
> There's mode detection, which does the general test with mode_valid. It 
> returns a list with possible modes. And there's mode setting, which 
> tests if the display setting as a whole (mode, color format, outputs, 
> and more) can can be programmed in the given combination. That's what 
> fails with the new driver, but worked with the old driver.
> 
> I guess that the configured mode of 1440x900 somehow passed testing in 
> the old driver. And as your chip could handle the overclocked pixelrate 
> settings, you got a stable output even with 32-bit colors.
> 
> I assume that the new driver is somehow more strict in testing and 
> rejects the overclocked pixel rate. (But I cannot see that in the code 
> TBH).

I think the culprit is probably this patch:
https://patchwork.freedesktop.org/patch/486242/

before this patch,
mgag200_simple_display_pipe_mode_valid() always return MODE_OK

after this patch, it checks the bandwidth limit too.

> 
>>
>> Looking for possible reasons why this might be the case (and straying
>> way beyond my competence), I note that in the old module
>> mga_vga_mode_valid is made known to other parts of the system in a
>> different way than mgag200_mode_config_mode_valid is in the new module
>> (and indeed they have different parameter types). (Might this be
>> relevant ?)
> 
> I'm not quite sure how to proceed here, as the driver is correct and the 
> problem came from a mismatching config file on your system.

So the bandwidth limit was not really enforced before, and the more 
strict behavior breaks the user's configuration that are over the limit.

> 
> Best regards
> Thomas
> 
>>
>> Best wishes,
>> Roger.
>>
>>
>
Roger Sewell July 28, 2023, 9:11 a.m. UTC | #22
Jocelyn, Thomas,

JF> I think the culprit is probably this patch:
JF> https://patchwork.freedesktop.org/patch/486242/
JF> 
JF> before this patch,
JF> mgag200_simple_display_pipe_mode_valid() always return MODE_OK
JF> 
JF> after this patch, it checks the bandwidth limit too.

I can easily test this theory, which sounds entirely reasonable - I will
do so and let you know the result.

TZ> I'm not quite sure how to proceed here, as the driver is correct and
TZ> the problem came from a mismatching config file on your system.

In so far as a user's viewpoint is relevant, I would say this: 

A user wants to be able to obtain any mode that actually is usable with
his hardware. He starts from a position of not having any extra config
files in place, and it works. He wants a different mode, so he adds a
config file. If he does that deliberately, then the system should allow
it, even if it goes over some theoretical limit - as if he gets no
video, he will then know exactly why he got no video (and can use the
tty interface after a reboot to remove his config file). (But by all
means put a warning message in the logs.)

What is really bad is for a mode that used to work to stop working with
no explanation - and even to stop working in such a manner that the only
way to get the system back is to force a reboot by removing power rather
than defaulting to a different mode. (But I think that that behaviour
results from userspace not expecting a late rejection of the mode.)

Moreover, any decent system that uses a GUI to allow you to change
screen mode offers you a preview before locking that mode in - and
automatically reverses the change if the user doesn't confirm it.

So I would prefer a mode chosen by a deliberate xorg config file to not
be rejectable by the driver, but just give a warning in the logs.

(But I do understand that you will also need to consider other points of
view.)

I'll confirm the result of the above test shortly.

Thanks,
Roger.
Roger Sewell July 28, 2023, 12:12 p.m. UTC | #23
Thomas, Jocelyn,

JF> I think the culprit is probably this patch:
JF> https://patchwork.freedesktop.org/patch/486242/
JF> 
JF> before this patch,
JF> mgag200_simple_display_pipe_mode_valid() always return MODE_OK
JF> 
JF> after this patch, it checks the bandwidth limit too.

It turns out to be more complicated than that - and I still think it is
something to do with how the two functions
mgag200_simple_display_pipe_mode_valid and
mgag200_mode_config_mode_valid are made known to the rest of the drm
system, i.e. which slots in the various function structures they are put
in. 

I attach a contiguous excerpt from /var/log/messages, recording what
happened when I did the following.

1. I instrumented the old mgag200 module with printk statements in
   mgag200_simple_display_pipe_mode_valid and mga_vga_mode_valid and
   mga_vga_calculate_mode_bandwidth, and also put in a call to the
   latter in mgag200_simple_display_pipe_mode_valid so that I could see
   what parameters it had been called with. I then rebooted the system,
   getting the messages starting at Jul 28 10:42:45 . As you will see,
   almost every time mgag200_simple_display_pipe_mode_valid is called it
   is immediately following a return of MODE_OK from mga_vga_mode_valid
   with the same display parameters - the two exceptions are:

   a) at line 1156 is when it is called after "fbcon: mgag200drmfb (fb0)
      is primary device", and

   b) with the mode actually being set (1440x900) at line 2681 when it
      of course returns MODE_OK (as that is what it always returns, as
      you say).

2. I then switched to the new mgag200 module similarly instrumented, but
   with the unique_rev_id increased by 1 to get sufficient bandwidth to
   make 1440x900 usable. I then rebooted the system, getting the
   messages starting at Jul 28 11:46:53 . Again, almost every time
   mgag200_simple_display_pipe_mode_valid is called it is immediately
   after a return of MODE_OK from mgag200_mode_config_mode_valid, and we
   still have exception type (a) at line 5672. However, the exception
   type (b) is no longer present, as at line 6590, on setting the
   1440x900 mode, there is now a call of mgag200_mode_config_mode_valid
   preceding the call of mgag200_simple_display_pipe_mode_valid.

3. I then modified that mgag200 module by forcing a return of MODE_OK
   from mgag200_simple_display_pipe_mode_valid and removing the
   increment to unique_rev_id, so that 1440x900 is no longer "valid"
   according to the criteria being used. I rebooted, getting the
   messages starting at Jul 28 12:12:34 . Now at line 11004 we have a
   failure to set mode immediately followed by a return of MODE_BAD, not
   from mgag200_simple_display_pipe_mode_valid but from
   mgag200_mode_config_mode_valid. 

Thus between the old mgag200 module and the new one, there is a change
in when the mode_config_mode_valid function gets called - there being
one extra call. So even if one were to revert to
mgag200_simple_display_pipe_mode_valid just always returning MODE_OK it
wouldn't fix the problem.

At present I don't see how the change of behaviour can be anything other
than to do with the way these function names are passed to the rest of
the drm system (though of course even if that were reverted, the fact
that mgag200_simple_display_pipe_mode_valid now tests bandwidth would
still cause what I want to do to fail).

Sadly I don't understand how the drm system works, so I'm not sure that
I can shed any more light - but if there are any more experiments that
would help, please do let me know.

Thanks,
Roger.
Jul 28 10:42:45 revelation kernel: Command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 10:42:45 revelation kernel: x86/fpu: x87 FPU will use FXSAVE
Jul 28 10:42:45 revelation kernel: signal: max sigframe size: 1440
Jul 28 10:42:45 revelation kernel: BIOS-provided physical RAM map:
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009afff] usable
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000000009b000-0x000000000009ffff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008a474fff] usable
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008a475000-0x000000008c484fff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008c485000-0x000000008c566fff] ACPI NVS
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008c567000-0x000000008c648fff] ACPI data
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008c649000-0x000000008da48fff] ACPI NVS
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008da49000-0x000000008f601fff] ACPI data
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008f602000-0x000000008f64efff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008f64f000-0x000000008f6e4fff] ACPI data
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008f6e5000-0x000000008f6eefff] ACPI NVS
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008f6ef000-0x000000008f6f0fff] ACPI data
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008f6f1000-0x000000008f7cefff] ACPI NVS
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008f7cf000-0x000000008f7fffff] ACPI data
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x000000008f800000-0x000000008fffffff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x00000000a0000000-0x00000000afffffff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x00000000fc000000-0x00000000fcffffff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Jul 28 10:42:45 revelation kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000c6fffffff] usable
Jul 28 10:42:45 revelation kernel: NX (Execute Disable) protection: active
Jul 28 10:42:45 revelation kernel: SMBIOS 2.5 present.
Jul 28 10:42:45 revelation kernel: DMI: Intel Corporation S5520UR/S5520UR, BIOS S5500.86B.01.00.0064.050520141428 05/05/2014
Jul 28 10:42:45 revelation kernel: tsc: Fast TSC calibration using PIT
Jul 28 10:42:45 revelation kernel: tsc: Detected 3458.317 MHz processor
Jul 28 10:42:45 revelation kernel: last_pfn = 0xc70000 max_arch_pfn = 0x400000000
Jul 28 10:42:45 revelation kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jul 28 10:42:45 revelation kernel: last_pfn = 0x8a475 max_arch_pfn = 0x400000000
Jul 28 10:42:45 revelation kernel: found SMP MP-table at [mem 0x000fdad0-0x000fdadf]
Jul 28 10:42:45 revelation kernel: Using GB pages for direct mapping
Jul 28 10:42:45 revelation kernel: RAMDISK: [mem 0x315b3000-0x34ad1fff]
Jul 28 10:42:45 revelation kernel: ACPI: Early table checksum verification disabled
Jul 28 10:42:45 revelation kernel: ACPI: RSDP 0x00000000000F0410 000024 (v02 INTEL )
Jul 28 10:42:45 revelation kernel: ACPI: XSDT 0x000000008F7FD120 000094 (v01 INTEL  S5520UR  00000000      01000013)
Jul 28 10:42:45 revelation kernel: ACPI: FACP 0x000000008F7FB000 0000F4 (v04 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: DSDT 0x000000008F7F4000 0065A1 (v02 INTEL  S5520UR  00000003 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: FACS 0x000000008F6F1000 000040
Jul 28 10:42:45 revelation kernel: ACPI: FACS 0x000000008F6F1000 000040
Jul 28 10:42:45 revelation kernel: ACPI: APIC 0x000000008F7F3000 0001A8 (v02 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: MCFG 0x000000008F7F2000 00003C (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: HPET 0x000000008F7F1000 000038 (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: SLIT 0x000000008F7F0000 000030 (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: SRAT 0x000000008F7EF000 000430 (v02 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: SPCR 0x000000008F7EE000 000050 (v01 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: WDDT 0x000000008F7ED000 000040 (v01 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 10:42:45 revelation kernel: ACPI: SSDT 0x000000008F7D2000 01AFC4 (v02 INTEL  SSDT  PM 00004000 INTL 20061109)
Jul 28 10:42:45 revelation kernel: ACPI: SSDT 0x000000008F7D1000 0001D8 (v02 INTEL  IPMI     00004000 INTL 20061109)
Jul 28 10:42:45 revelation kernel: ACPI: HEST 0x000000008F7D0000 0000A8 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 10:42:45 revelation kernel: ACPI: BERT 0x000000008F7CF000 000030 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 10:42:45 revelation kernel: ACPI: ERST 0x000000008F6F0000 000230 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 10:42:45 revelation kernel: ACPI: EINJ 0x000000008F6EF000 000130 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 10:42:45 revelation kernel: ACPI: Reserving FACP table memory at [mem 0x8f7fb000-0x8f7fb0f3]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving DSDT table memory at [mem 0x8f7f4000-0x8f7fa5a0]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving FACS table memory at [mem 0x8f6f1000-0x8f6f103f]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving FACS table memory at [mem 0x8f6f1000-0x8f6f103f]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving APIC table memory at [mem 0x8f7f3000-0x8f7f31a7]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving MCFG table memory at [mem 0x8f7f2000-0x8f7f203b]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving HPET table memory at [mem 0x8f7f1000-0x8f7f1037]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving SLIT table memory at [mem 0x8f7f0000-0x8f7f002f]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving SRAT table memory at [mem 0x8f7ef000-0x8f7ef42f]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving SPCR table memory at [mem 0x8f7ee000-0x8f7ee04f]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving WDDT table memory at [mem 0x8f7ed000-0x8f7ed03f]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving SSDT table memory at [mem 0x8f7d2000-0x8f7ecfc3]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving SSDT table memory at [mem 0x8f7d1000-0x8f7d11d7]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving HEST table memory at [mem 0x8f7d0000-0x8f7d00a7]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving BERT table memory at [mem 0x8f7cf000-0x8f7cf02f]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving ERST table memory at [mem 0x8f6f0000-0x8f6f022f]
Jul 28 10:42:45 revelation kernel: ACPI: Reserving EINJ table memory at [mem 0x8f6ef000-0x8f6ef12f]
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x20 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x02 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x22 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x04 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x24 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x10 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x30 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x12 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x32 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x14 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x34 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x21 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x03 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x23 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x05 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x25 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x11 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x31 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x13 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x33 -> Node 1
Jul 28 10:42:45 revelation kernel: SRAT: PXM 0 -> APIC 0x15 -> Node 0
Jul 28 10:42:45 revelation kernel: SRAT: PXM 1 -> APIC 0x35 -> Node 1
Jul 28 10:42:45 revelation kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x8fffffff]
Jul 28 10:42:45 revelation kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x66fffffff]
Jul 28 10:42:45 revelation kernel: ACPI: SRAT: Node 1 PXM 1 [mem 0x670000000-0xc6fffffff]
Jul 28 10:42:45 revelation kernel: NUMA: Node 0 [mem 0x00000000-0x8fffffff] + [mem 0x100000000-0x66fffffff] -> [mem 0x00000000-0x66fffffff]
Jul 28 10:42:45 revelation kernel: NODE_DATA(0) allocated [mem 0x66ffd5000-0x66fffffff]
Jul 28 10:42:45 revelation kernel: NODE_DATA(1) allocated [mem 0xc6ffd4000-0xc6fffefff]
Jul 28 10:42:45 revelation kernel: Reserving 256MB of memory at 1952MB for crashkernel (System RAM: 49060MB)
Jul 28 10:42:45 revelation kernel: Zone ranges:
Jul 28 10:42:45 revelation kernel:  DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jul 28 10:42:45 revelation kernel:  DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jul 28 10:42:45 revelation kernel:  Normal   [mem 0x0000000100000000-0x0000000c6fffffff]
Jul 28 10:42:45 revelation kernel:  Device   empty
Jul 28 10:42:45 revelation kernel: Movable zone start for each node
Jul 28 10:42:45 revelation kernel: Early memory node ranges
Jul 28 10:42:45 revelation kernel:  node   0: [mem 0x0000000000001000-0x000000000009afff]
Jul 28 10:42:45 revelation kernel:  node   0: [mem 0x0000000000100000-0x000000008a474fff]
Jul 28 10:42:45 revelation kernel:  node   0: [mem 0x0000000100000000-0x000000066fffffff]
Jul 28 10:42:45 revelation kernel:  node   1: [mem 0x0000000670000000-0x0000000c6fffffff]
Jul 28 10:42:45 revelation kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000066fffffff]
Jul 28 10:42:45 revelation kernel: Initmem setup node 1 [mem 0x0000000670000000-0x0000000c6fffffff]
Jul 28 10:42:45 revelation kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jul 28 10:42:45 revelation kernel: On node 0, zone DMA: 101 pages in unavailable ranges
Jul 28 10:42:45 revelation kernel: On node 0, zone Normal: 23435 pages in unavailable ranges
Jul 28 10:42:45 revelation kernel: ACPI: PM-Timer IO Port: 0x408
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high level lint[0x1])
Jul 28 10:42:45 revelation kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jul 28 10:42:45 revelation kernel: IOAPIC[1]: apic_id 9, version 32, address 0xfec90000, GSI 24-47
Jul 28 10:42:45 revelation kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jul 28 10:42:45 revelation kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jul 28 10:42:45 revelation kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jul 28 10:42:45 revelation kernel: ACPI: HPET id: 0x8086a401 base: 0xfed00000
Jul 28 10:42:45 revelation kernel: ACPI: SPCR: SPCR table version 1
Jul 28 10:42:45 revelation kernel: ACPI: SPCR: console: uart,io,0x3f8,115200
Jul 28 10:42:45 revelation kernel: smpboot: Allowing 24 CPUs, 0 hotplug CPUs
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x0009b000-0x0009ffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8a475000-0x8c484fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c485000-0x8c566fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c567000-0x8c648fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c649000-0x8da48fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8da49000-0x8f601fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f602000-0x8f64efff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f64f000-0x8f6e4fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6e5000-0x8f6eefff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6ef000-0x8f6f0fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6f1000-0x8f7cefff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f7cf000-0x8f7fffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f800000-0x8fffffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x90000000-0x9fffffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xa0000000-0xafffffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xb0000000-0xfbffffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfcffffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xfed1bfff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed44fff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xff7fffff]
Jul 28 10:42:45 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xff800000-0xffffffff]
Jul 28 10:42:45 revelation kernel: [mem 0xb0000000-0xfbffffff] available for PCI devices
Jul 28 10:42:45 revelation kernel: Booting paravirtualized kernel on bare hardware
Jul 28 10:42:45 revelation kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Jul 28 10:42:45 revelation kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:2
Jul 28 10:42:45 revelation kernel: percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
Jul 28 10:42:45 revelation kernel: Fallback order for Node 0: 0 1 
Jul 28 10:42:45 revelation kernel: Fallback order for Node 1: 1 0 
Jul 28 10:42:45 revelation kernel: Built 2 zonelists, mobility grouping on.  Total pages: 12362979
Jul 28 10:42:45 revelation kernel: Policy zone: Normal
Jul 28 10:42:45 revelation kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 10:42:45 revelation kernel: Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 biosdevname=0 LANG=en_GB.UTF-8", will be passed to user space.
Jul 28 10:42:45 revelation kernel: mem auto-init: stack:off, heap alloc:off, heap free:off
Jul 28 10:42:45 revelation kernel: software IO TLB: area num 32.
Jul 28 10:42:45 revelation kernel: Memory: 2144340K/50237500K available (14342K kernel code, 5536K rwdata, 10180K rodata, 2792K init, 7524K bss, 1224840K reserved, 0K cma-reserved)
Jul 28 10:42:45 revelation kernel: random: get_random_u64 called from kmem_cache_open+0x1e/0x210 with crng_init=0
Jul 28 10:42:45 revelation kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=2
Jul 28 10:42:45 revelation kernel: Kernel/User page tables isolation: enabled
Jul 28 10:42:45 revelation kernel: ftrace: allocating 44807 entries in 176 pages
Jul 28 10:42:45 revelation kernel: ftrace: allocated 176 pages with 3 groups
Jul 28 10:42:45 revelation kernel: Dynamic Preempt: voluntary
Jul 28 10:42:45 revelation kernel: rcu: Preemptible hierarchical RCU implementation.
Jul 28 10:42:45 revelation kernel: rcu: #011RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=24.
Jul 28 10:42:45 revelation kernel: #011Trampoline variant of Tasks RCU enabled.
Jul 28 10:42:45 revelation kernel: #011Rude variant of Tasks RCU enabled.
Jul 28 10:42:45 revelation kernel: #011Tracing variant of Tasks RCU enabled.
Jul 28 10:42:45 revelation kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Jul 28 10:42:45 revelation kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24
Jul 28 10:42:45 revelation kernel: NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
Jul 28 10:42:45 revelation kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jul 28 10:42:45 revelation kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Jul 28 10:42:45 revelation kernel: Console: colour VGA+ 80x25
Jul 28 10:42:45 revelation kernel: printk: console [tty0] enabled
Jul 28 10:42:45 revelation kernel: mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
Jul 28 10:42:45 revelation kernel: ACPI: Core revision 20211217
Jul 28 10:42:45 revelation kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Jul 28 10:42:45 revelation kernel: APIC: Switch to symmetric I/O mode setup
Jul 28 10:42:45 revelation kernel: Switched APIC routing to physical flat.
Jul 28 10:42:45 revelation kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jul 28 10:42:45 revelation kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31d9808ce9f, max_idle_ns: 440795249953 ns
Jul 28 10:42:45 revelation kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6916.63 BogoMIPS (lpj=3458317)
Jul 28 10:42:45 revelation kernel: pid_max: default: 32768 minimum: 301
Jul 28 10:42:45 revelation kernel: LSM: Security Framework initializing
Jul 28 10:42:45 revelation kernel: Yama: becoming mindful.
Jul 28 10:42:45 revelation kernel: SELinux:  Initializing.
Jul 28 10:42:45 revelation kernel: LSM support for eBPF active
Jul 28 10:42:45 revelation kernel: Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
Jul 28 10:42:45 revelation kernel: Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, vmalloc hugepage)
Jul 28 10:42:45 revelation kernel: Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: CPU0: Thermal monitoring enabled (TM1)
Jul 28 10:42:45 revelation kernel: process: using mwait in idle threads
Jul 28 10:42:45 revelation kernel: Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jul 28 10:42:45 revelation kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jul 28 10:42:45 revelation kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jul 28 10:42:45 revelation kernel: Spectre V2 : Mitigation: Retpolines
Jul 28 10:42:45 revelation kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jul 28 10:42:45 revelation kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Jul 28 10:42:45 revelation kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Jul 28 10:42:45 revelation kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jul 28 10:42:45 revelation kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
Jul 28 10:42:45 revelation kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Jul 28 10:42:45 revelation kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
Jul 28 10:42:45 revelation kernel: MMIO Stale Data: Unknown: No mitigations
Jul 28 10:42:45 revelation kernel: Freeing SMP alternatives memory: 36K
Jul 28 10:42:45 revelation kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1063
Jul 28 10:42:45 revelation kernel: smpboot: CPU0: Intel(R) Xeon(R) CPU           X5690  @ 3.47GHz (family: 0x6, model: 0x2c, stepping: 0x2)
Jul 28 10:42:45 revelation kernel: cblist_init_generic: Setting adjustable number of callback queues.
Jul 28 10:42:45 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 10:42:45 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 10:42:45 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 10:42:45 revelation kernel: Performance Events: PEBS fmt1+, Westmere events, 16-deep LBR, Intel PMU driver.
Jul 28 10:42:45 revelation kernel: core: CPUID marked event: 'bus cycles' unavailable
Jul 28 10:42:45 revelation kernel: ... version:                3
Jul 28 10:42:45 revelation kernel: ... bit width:              48
Jul 28 10:42:45 revelation kernel: ... generic registers:      4
Jul 28 10:42:45 revelation kernel: ... value mask:             0000ffffffffffff
Jul 28 10:42:45 revelation kernel: ... max period:             000000007fffffff
Jul 28 10:42:45 revelation kernel: ... fixed-purpose events:   3
Jul 28 10:42:45 revelation kernel: ... event mask:             000000070000000f
Jul 28 10:42:45 revelation kernel: rcu: Hierarchical SRCU implementation.
Jul 28 10:42:45 revelation kernel: rcu: #011Max phase no-delay instances is 400.
Jul 28 10:42:45 revelation kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jul 28 10:42:45 revelation kernel: smp: Bringing up secondary CPUs ...
Jul 28 10:42:45 revelation kernel: x86: Booting SMP configuration:
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:        #1
Jul 28 10:42:45 revelation kernel: smpboot: CPU 1 Converting physical 0 to logical die 1
Jul 28 10:42:45 revelation kernel: 
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:    #2
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:    #3
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:    #4
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:    #5
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:    #6
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:    #7
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:    #8
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:    #9
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:   #10
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:   #11
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:   #12
Jul 28 10:42:45 revelation kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
Jul 28 10:42:45 revelation kernel: 
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:   #13
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:   #14
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:   #15
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:   #16
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:   #17
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:   #18
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:   #19
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:   #20
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:   #21
Jul 28 10:42:45 revelation kernel: .... node  #0, CPUs:   #22
Jul 28 10:42:45 revelation kernel: .... node  #1, CPUs:   #23
Jul 28 10:42:45 revelation kernel: smp: Brought up 2 nodes, 24 CPUs
Jul 28 10:42:45 revelation kernel: smpboot: Max logical packages: 2
Jul 28 10:42:45 revelation kernel: smpboot: Total of 24 processors activated (165998.16 BogoMIPS)
Jul 28 10:42:45 revelation kernel: node 0 deferred pages initialised in 39ms
Jul 28 10:42:45 revelation kernel: node 1 deferred pages initialised in 42ms
Jul 28 10:42:45 revelation kernel: devtmpfs: initialized
Jul 28 10:42:45 revelation kernel: x86/mm: Memory block size: 128MB
Jul 28 10:42:45 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8c485000-0x8c566fff] (925696 bytes)
Jul 28 10:42:45 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8c649000-0x8da48fff] (20971520 bytes)
Jul 28 10:42:45 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8f6e5000-0x8f6eefff] (40960 bytes)
Jul 28 10:42:45 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8f6f1000-0x8f7cefff] (909312 bytes)
Jul 28 10:42:45 revelation kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Jul 28 10:42:45 revelation kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: pinctrl core: initialized pinctrl subsystem
Jul 28 10:42:45 revelation kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jul 28 10:42:45 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Jul 28 10:42:45 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jul 28 10:42:45 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jul 28 10:42:45 revelation kernel: audit: initializing netlink subsys (disabled)
Jul 28 10:42:45 revelation kernel: audit: type=2000 audit(1690537363.317:1): state=initialized audit_enabled=0 res=1
Jul 28 10:42:45 revelation kernel: thermal_sys: Registered thermal governor 'fair_share'
Jul 28 10:42:45 revelation kernel: thermal_sys: Registered thermal governor 'step_wise'
Jul 28 10:42:45 revelation kernel: thermal_sys: Registered thermal governor 'user_space'
Jul 28 10:42:45 revelation kernel: cpuidle: using governor menu
Jul 28 10:42:45 revelation kernel: HugeTLB: can optimize 4095 vmemmap pages for hugepages-1048576kB
Jul 28 10:42:45 revelation kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jul 28 10:42:45 revelation kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jul 28 10:42:45 revelation kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xa0000000-0xafffffff] (base 0xa0000000)
Jul 28 10:42:45 revelation kernel: PCI: MMCONFIG at [mem 0xa0000000-0xafffffff] reserved in E820
Jul 28 10:42:45 revelation kernel: PCI: Using configuration type 1 for base access
Jul 28 10:42:45 revelation kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jul 28 10:42:45 revelation kernel: HugeTLB: can optimize 7 vmemmap pages for hugepages-2048kB
Jul 28 10:42:45 revelation kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jul 28 10:42:45 revelation kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jul 28 10:42:45 revelation kernel: cryptd: max_cpu_qlen set to 1000
Jul 28 10:42:45 revelation kernel: ACPI: Added _OSI(Module Device)
Jul 28 10:42:45 revelation kernel: ACPI: Added _OSI(Processor Device)
Jul 28 10:42:45 revelation kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jul 28 10:42:45 revelation kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jul 28 10:42:45 revelation kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jul 28 10:42:45 revelation kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jul 28 10:42:45 revelation kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jul 28 10:42:45 revelation kernel: ACPI: 3 ACPI AML tables successfully acquired and loaded
Jul 28 10:42:45 revelation kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [CPB3] at bit offset/length 64/32 exceeds size of target Buffer (64 bits) (20211217/dsopcode-198)
Jul 28 10:42:45 revelation kernel: ACPI Error: Aborting method \_SB._OSC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jul 28 10:42:45 revelation kernel: ACPI: Interpreter enabled
Jul 28 10:42:45 revelation kernel: ACPI: PM: (supports S0 S1 S5)
Jul 28 10:42:45 revelation kernel: ACPI: Using IOAPIC for interrupt routing
Jul 28 10:42:45 revelation kernel: HEST: Table parsing has been initialized.
Jul 28 10:42:45 revelation kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jul 28 10:42:45 revelation kernel: PCI: Using E820 reservations for host bridge windows
Jul 28 10:42:45 revelation kernel: ACPI: Enabled 11 GPEs in block 00 to 3F
Jul 28 10:42:45 revelation kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fd])
Jul 28 10:42:45 revelation kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jul 28 10:42:45 revelation kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Jul 28 10:42:45 revelation kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jul 28 10:42:45 revelation kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jul 28 10:42:45 revelation kernel: acpi PNP0A08:00: ignoring host bridge window [mem 0x000c4000-0x000cbfff window] (conflicts with Video ROM [mem 0x000c0000-0x000c7fff])
Jul 28 10:42:45 revelation kernel: PCI host bridge to bus 0000:00
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: Unknown NUMA node; performance will be reduced
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfedfffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: root bus resource [mem 0xb0000000-0xfdffffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: root bus resource [bus 00-fd]
Jul 28 10:42:45 revelation kernel: pci 0000:00:00.0: [8086:3406] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:01.0: [8086:3408] type 01 class 0x060400
Jul 28 10:42:45 revelation kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:03.0: [8086:340a] type 01 class 0x060400
Jul 28 10:42:45 revelation kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:07.0: [8086:340e] type 01 class 0x060400
Jul 28 10:42:45 revelation kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:09.0: [8086:3410] type 01 class 0x060400
Jul 28 10:42:45 revelation kernel: pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:0a.0: [8086:3411] type 01 class 0x060400
Jul 28 10:42:45 revelation kernel: pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:10.0: [8086:3425] type 00 class 0x080000
Jul 28 10:42:45 revelation kernel: pci 0000:00:10.1: [8086:3426] type 00 class 0x080000
Jul 28 10:42:45 revelation kernel: pci 0000:00:11.0: [8086:3427] type 00 class 0x080000
Jul 28 10:42:45 revelation kernel: pci 0000:00:11.1: [8086:3428] type 00 class 0x080000
Jul 28 10:42:45 revelation kernel: pci 0000:00:13.0: [8086:342d] type 00 class 0x080020
Jul 28 10:42:45 revelation kernel: pci 0000:00:13.0: reg 0x10: [mem 0xb1b23000-0xb1b23fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:14.0: [8086:342e] type 00 class 0x080000
Jul 28 10:42:45 revelation kernel: pci 0000:00:14.1: [8086:3422] type 00 class 0x080000
Jul 28 10:42:45 revelation kernel: pci 0000:00:14.2: [8086:3423] type 00 class 0x080000
Jul 28 10:42:45 revelation kernel: pci 0000:00:14.3: [8086:3438] type 00 class 0x080000
Jul 28 10:42:45 revelation kernel: pci 0000:00:15.0: [8086:342f] type 00 class 0x080020
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.0: [8086:3430] type 00 class 0x088000
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.0: reg 0x10: [mem 0xb1b00000-0xb1b03fff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.1: [8086:3431] type 00 class 0x088000
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.1: reg 0x10: [mem 0xb1b04000-0xb1b07fff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.2: [8086:3432] type 00 class 0x088000
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.2: reg 0x10: [mem 0xb1b08000-0xb1b0bfff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.3: [8086:3433] type 00 class 0x088000
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.3: reg 0x10: [mem 0xb1b0c000-0xb1b0ffff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.4: [8086:3429] type 00 class 0x088000
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.4: reg 0x10: [mem 0xb1b10000-0xb1b13fff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.5: [8086:342a] type 00 class 0x088000
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.5: reg 0x10: [mem 0xb1b14000-0xb1b17fff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.6: [8086:342b] type 00 class 0x088000
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.6: reg 0x10: [mem 0xb1b18000-0xb1b1bfff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.7: [8086:342c] type 00 class 0x088000
Jul 28 10:42:45 revelation kernel: pci 0000:00:16.7: reg 0x10: [mem 0xb1b1c000-0xb1b1ffff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.0: [8086:3a37] type 00 class 0x0c0300
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.0: reg 0x20: [io  0x30c0-0x30df]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.1: [8086:3a38] type 00 class 0x0c0300
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.1: reg 0x20: [io  0x30a0-0x30bf]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.2: [8086:3a39] type 00 class 0x0c0300
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.2: reg 0x20: [io  0x3080-0x309f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.7: [8086:3a3c] type 00 class 0x0c0320
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xb1b21000-0xb1b213ff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: [8086:3a40] type 01 class 0x060400
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4: [8086:3a48] type 01 class 0x060400
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: [8086:3a4a] type 01 class 0x060400
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.0: [8086:3a34] type 00 class 0x0c0300
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.0: reg 0x20: [io  0x3060-0x307f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.1: [8086:3a35] type 00 class 0x0c0300
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.1: reg 0x20: [io  0x3040-0x305f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.2: [8086:3a36] type 00 class 0x0c0300
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.2: reg 0x20: [io  0x3020-0x303f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.7: [8086:3a3a] type 00 class 0x0c0320
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xb1b20000-0xb1b203ff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.0: [8086:3a16] type 00 class 0x060100
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.0: quirk: [io  0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.0: quirk: [io  0x0500-0x053f] claimed by ICH6 GPIO
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0ca0 (mask 000f)
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0600 (mask 001f)
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.2: [8086:3a20] type 00 class 0x01018f
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.2: reg 0x10: [io  0x3138-0x313f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.2: reg 0x14: [io  0x314c-0x314f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.2: reg 0x18: [io  0x3130-0x3137]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x3148-0x314b]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.2: reg 0x20: [io  0x3110-0x311f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.2: reg 0x24: [io  0x3100-0x310f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.3: [8086:3a30] type 00 class 0x0c0500
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xb1b22000-0xb1b220ff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.3: reg 0x20: [io  0x3000-0x301f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.5: [8086:3a26] type 00 class 0x010185
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.5: reg 0x10: [io  0x3128-0x312f]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.5: reg 0x14: [io  0x3144-0x3147]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.5: reg 0x18: [io  0x3120-0x3127]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.5: reg 0x1c: [io  0x3140-0x3143]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.5: reg 0x20: [io  0x30f0-0x30ff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1f.5: reg 0x24: [io  0x30e0-0x30ef]
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.0: [8086:10a7] type 00 class 0x020000
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.0: reg 0x10: [mem 0xb1a20000-0xb1a3ffff]
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.0: reg 0x18: [io  0x2020-0x203f]
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xb1a44000-0xb1a47fff]
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.1: [8086:10a7] type 00 class 0x020000
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.1: reg 0x10: [mem 0xb1a00000-0xb1a1ffff]
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.1: reg 0x18: [io  0x2000-0x201f]
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.1: reg 0x1c: [mem 0xb1a40000-0xb1a43fff]
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
Jul 28 10:42:45 revelation kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jul 28 10:42:45 revelation kernel: pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:01.0:   bridge window [mem 0xb1a00000-0xb1afffff]
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: [1000:0073] type 00 class 0x010400
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: reg 0x10: [io  0x1000-0x10ff]
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: reg 0x14: [mem 0xb1940000-0xb1943fff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: reg 0x1c: [mem 0xb1900000-0xb193ffff 64bit]
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: supports D1 D2
Jul 28 10:42:45 revelation kernel: pci 0000:00:03.0: PCI bridge to [bus 02]
Jul 28 10:42:45 revelation kernel: pci 0000:00:03.0:   bridge window [io  0x1000-0x1fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:03.0:   bridge window [mem 0xb1900000-0xb19fffff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:07.0: PCI bridge to [bus 03]
Jul 28 10:42:45 revelation kernel: pci 0000:00:09.0: PCI bridge to [bus 04]
Jul 28 10:42:45 revelation kernel: pci 0000:00:0a.0: PCI bridge to [bus 05]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: PCI bridge to [bus 06]
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: [102b:0522] type 00 class 0x030000
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: reg 0x10: [mem 0xb0000000-0xb0ffffff pref]
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: reg 0x14: [mem 0xb1800000-0xb1803fff]
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: reg 0x18: [mem 0xb1000000-0xb17fffff]
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4: PCI bridge to [bus 07]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb1000000-0xb18fffff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:09: extended config space not accessible
Jul 28 10:42:45 revelation kernel: pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
Jul 28 10:42:45 revelation kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Jul 28 10:42:45 revelation kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Jul 28 10:42:45 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Jul 28 10:42:45 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfedfffff window] (subtractive decode)
Jul 28 10:42:45 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0xb0000000-0xfdffffff window] (subtractive decode)
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 9
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 5
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKE disabled
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKG disabled
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Jul 28 10:42:45 revelation kernel: ACPI: PCI: Interrupt link LNKH disabled
Jul 28 10:42:45 revelation kernel: iommu: Default domain type: Translated 
Jul 28 10:42:45 revelation kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Jul 28 10:42:45 revelation kernel: SCSI subsystem initialized
Jul 28 10:42:45 revelation kernel: ACPI: bus type USB registered
Jul 28 10:42:45 revelation kernel: usbcore: registered new interface driver usbfs
Jul 28 10:42:45 revelation kernel: usbcore: registered new interface driver hub
Jul 28 10:42:45 revelation kernel: usbcore: registered new device driver usb
Jul 28 10:42:45 revelation kernel: pps_core: LinuxPPS API ver. 1 registered
Jul 28 10:42:45 revelation kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jul 28 10:42:45 revelation kernel: PTP clock support registered
Jul 28 10:42:45 revelation kernel: EDAC MC: Ver: 3.0.0
Jul 28 10:42:45 revelation kernel: NetLabel: Initializing
Jul 28 10:42:45 revelation kernel: NetLabel:  domain hash size = 128
Jul 28 10:42:45 revelation kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jul 28 10:42:45 revelation kernel: NetLabel:  unlabeled traffic allowed by default
Jul 28 10:42:45 revelation kernel: PCI: Using ACPI for IRQ routing
Jul 28 10:42:45 revelation kernel: PCI: Discovered peer bus fe
Jul 28 10:42:45 revelation kernel: PCI host bridge to bus 0000:fe
Jul 28 10:42:45 revelation kernel: pci_bus 0000:fe: Unknown NUMA node; performance will be reduced
Jul 28 10:42:45 revelation kernel: pci_bus 0000:fe: root bus resource [io  0x0000-0xffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:fe: root bus resource [mem 0x00000000-0xffffffffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:fe: No busn resource found for root bus, will use [bus fe-ff]
Jul 28 10:42:45 revelation kernel: pci 0000:fe:00.0: [8086:2c70] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:00.1: [8086:2d81] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:02.0: [8086:2d90] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:02.1: [8086:2d91] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:02.2: [8086:2d92] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:02.3: [8086:2d93] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:02.4: [8086:2d94] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:02.5: [8086:2d95] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:03.0: [8086:2d98] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:03.1: [8086:2d99] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:03.2: [8086:2d9a] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:03.4: [8086:2d9c] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:04.0: [8086:2da0] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:04.1: [8086:2da1] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:04.2: [8086:2da2] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:04.3: [8086:2da3] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:05.0: [8086:2da8] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:05.1: [8086:2da9] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:05.2: [8086:2daa] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:05.3: [8086:2dab] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:06.0: [8086:2db0] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:06.1: [8086:2db1] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:06.2: [8086:2db2] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:fe:06.3: [8086:2db3] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci_bus 0000:fe: busn_res: [bus fe-ff] end is updated to fe
Jul 28 10:42:45 revelation kernel: PCI: Discovered peer bus ff
Jul 28 10:42:45 revelation kernel: PCI host bridge to bus 0000:ff
Jul 28 10:42:45 revelation kernel: pci_bus 0000:ff: Unknown NUMA node; performance will be reduced
Jul 28 10:42:45 revelation kernel: pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:ff: root bus resource [mem 0x00000000-0xffffffffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
Jul 28 10:42:45 revelation kernel: pci 0000:ff:00.0: [8086:2c70] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:00.1: [8086:2d81] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:02.0: [8086:2d90] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:02.1: [8086:2d91] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:02.2: [8086:2d92] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:02.3: [8086:2d93] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:02.4: [8086:2d94] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:02.5: [8086:2d95] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:03.0: [8086:2d98] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:03.1: [8086:2d99] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:03.2: [8086:2d9a] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:03.4: [8086:2d9c] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:04.0: [8086:2da0] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:04.1: [8086:2da1] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:04.2: [8086:2da2] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:04.3: [8086:2da3] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:05.0: [8086:2da8] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:05.1: [8086:2da9] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:05.2: [8086:2daa] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:05.3: [8086:2dab] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:06.0: [8086:2db0] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:06.1: [8086:2db1] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:06.2: [8086:2db2] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci 0000:ff:06.3: [8086:2db3] type 00 class 0x060000
Jul 28 10:42:45 revelation kernel: pci_bus 0000:ff: busn_res: [bus ff] end is updated to ff
Jul 28 10:42:45 revelation kernel: Expanded resource Reserved due to conflict with PCI Bus 0000:00
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: vgaarb: setting as boot VGA device
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: vgaarb: bridge control possible
Jul 28 10:42:45 revelation kernel: pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jul 28 10:42:45 revelation kernel: vgaarb: loaded
Jul 28 10:42:45 revelation kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Jul 28 10:42:45 revelation kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Jul 28 10:42:45 revelation kernel: clocksource: Switched to clocksource tsc-early
Jul 28 10:42:45 revelation kernel: VFS: Disk quotas dquot_6.6.0
Jul 28 10:42:45 revelation kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jul 28 10:42:45 revelation kernel: pnp: PnP ACPI init
Jul 28 10:42:45 revelation kernel: system 00:01: [io  0x0500-0x057f] could not be reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [io  0x0400-0x047f] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [io  0x0800-0x081f] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [io  0x0ca2-0x0ca3] could not be reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [io  0x0600-0x061f] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [io  0x0880-0x0883] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [io  0x0ca4-0x0ca5] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [mem 0xfed1c000-0xfed3fffe] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [mem 0xff000000-0xffffffff] could not be reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [mem 0xfe900000-0xfe90001f] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [mem 0xfea00000-0xfea0001f] has been reserved
Jul 28 10:42:45 revelation kernel: system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jul 28 10:42:45 revelation kernel: pnp: PnP ACPI: found 4 devices
Jul 28 10:42:45 revelation kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jul 28 10:42:45 revelation kernel: NET: Registered PF_INET protocol family
Jul 28 10:42:45 revelation kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
Jul 28 10:42:45 revelation kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: TCP: Hash tables configured (established 524288 bind 65536)
Jul 28 10:42:45 revelation kernel: MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: UDP hash table entries: 32768 (order: 8, 1048576 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, vmalloc)
Jul 28 10:42:45 revelation kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jul 28 10:42:45 revelation kernel: NET: Registered PF_XDP protocol family
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000 add_align 100000
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 06] add_size 200000 add_align 100000
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000 add_align 100000
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff] to [bus 08] add_size 200000 add_align 100000
Jul 28 10:42:45 revelation kernel: clipped [mem size 0x000c0000] to [mem size 0x000bb000] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xb1c00000-0xb1dfffff]
Jul 28 10:42:45 revelation kernel: clipped [mem size 0x00000000 64bit pref] to [mem size 0xffffffffffffb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 10:42:45 revelation kernel: clipped [mem size 0x000c0000 64bit pref] to [mem size 0x000bb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 10:42:45 revelation kernel: clipped [mem size 0x000c0000] to [mem size 0x000bb000] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: BAR 14: assigned [mem 0xb2000000-0xb21fffff]
Jul 28 10:42:45 revelation kernel: clipped [mem size 0x00000000 64bit pref] to [mem size 0xffffffffffffb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 10:42:45 revelation kernel: clipped [mem size 0x000c0000 64bit pref] to [mem size 0x000bb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: BAR 15: assigned [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4: BAR 13: assigned [io  0x5000-0x5fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: BAR 13: assigned [io  0x6000-0x6fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jul 28 10:42:45 revelation kernel: pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:01.0:   bridge window [mem 0xb1a00000-0xb1afffff]
Jul 28 10:42:45 revelation kernel: pci 0000:02:00.0: BAR 6: assigned [mem 0xb1960000-0xb197ffff pref]
Jul 28 10:42:45 revelation kernel: pci 0000:00:03.0: PCI bridge to [bus 02]
Jul 28 10:42:45 revelation kernel: pci 0000:00:03.0:   bridge window [io  0x1000-0x1fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:03.0:   bridge window [mem 0xb1900000-0xb19fffff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:07.0: PCI bridge to [bus 03]
Jul 28 10:42:45 revelation kernel: pci 0000:00:09.0: PCI bridge to [bus 04]
Jul 28 10:42:45 revelation kernel: pci 0000:00:0a.0: PCI bridge to [bus 05]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0: PCI bridge to [bus 06]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0:   bridge window [mem 0xb1c00000-0xb1dfffff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.0:   bridge window [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4: PCI bridge to [bus 07]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4:   bridge window [io  0x5000-0x5fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb1000000-0xb18fffff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5:   bridge window [io  0x6000-0x6fff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5:   bridge window [mem 0xb2000000-0xb21fffff]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1c.5:   bridge window [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 10:42:45 revelation kernel: pci 0000:00:1e.0: PCI bridge to [bus 09]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: resource 7 [mem 0xfed40000-0xfedfffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:00: resource 8 [mem 0xb0000000-0xfdffffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:01: resource 1 [mem 0xb1a00000-0xb1afffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:02: resource 1 [mem 0xb1900000-0xb19fffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:06: resource 0 [io  0x4000-0x4fff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:06: resource 1 [mem 0xb1c00000-0xb1dfffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:06: resource 2 [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:07: resource 0 [io  0x5000-0x5fff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:07: resource 1 [mem 0xb1000000-0xb18fffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:07: resource 2 [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:08: resource 0 [io  0x6000-0x6fff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:08: resource 1 [mem 0xb2000000-0xb21fffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:08: resource 2 [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:09: resource 4 [io  0x0000-0x0cf7 window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:09: resource 5 [io  0x0d00-0xffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:09: resource 6 [mem 0x000a0000-0x000bffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:09: resource 7 [mem 0xfed40000-0xfedfffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:09: resource 8 [mem 0xb0000000-0xfdffffff window]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:fe: resource 4 [io  0x0000-0xffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:fe: resource 5 [mem 0x00000000-0xffffffffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:ff: resource 4 [io  0x0000-0xffff]
Jul 28 10:42:45 revelation kernel: pci_bus 0000:ff: resource 5 [mem 0x00000000-0xffffffffff]
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.0: Disabling L0s
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.1: Disabling L0s
Jul 28 10:42:45 revelation kernel: pci 0000:01:00.1: can't disable ASPM; OS doesn't have ASPM control
Jul 28 10:42:45 revelation kernel: PCI: CLS 64 bytes, default 64
Jul 28 10:42:45 revelation kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jul 28 10:42:45 revelation kernel: Trying to unpack rootfs image as initramfs...
Jul 28 10:42:45 revelation kernel: software IO TLB: mapped [mem 0x0000000076000000-0x000000007a000000] (64MB)
Jul 28 10:42:45 revelation kernel: ACPI: bus type thunderbolt registered
Jul 28 10:42:45 revelation kernel: Initialise system trusted keyrings
Jul 28 10:42:45 revelation kernel: Key type blacklist registered
Jul 28 10:42:45 revelation kernel: workingset: timestamp_bits=36 max_order=24 bucket_order=0
Jul 28 10:42:45 revelation kernel: zbud: loaded
Jul 28 10:42:45 revelation kernel: integrity: Platform Keyring initialized
Jul 28 10:42:45 revelation kernel: NET: Registered PF_ALG protocol family
Jul 28 10:42:45 revelation kernel: xor: measuring software checksum speed
Jul 28 10:42:45 revelation kernel:   prefetch64-sse  : 19190 MB/sec
Jul 28 10:42:45 revelation kernel:   generic_sse     : 16316 MB/sec
Jul 28 10:42:45 revelation kernel: xor: using function: prefetch64-sse (19190 MB/sec)
Jul 28 10:42:45 revelation kernel: Key type asymmetric registered
Jul 28 10:42:45 revelation kernel: Asymmetric key parser 'x509' registered
Jul 28 10:42:45 revelation kernel: Running certificate verification selftests
Jul 28 10:42:45 revelation kernel: Loaded X.509 cert 'Certificate verification self-testing key: f58703bb33ce1b73ee02eccdee5b8817518fe3db'
Jul 28 10:42:45 revelation kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Jul 28 10:42:45 revelation kernel: io scheduler mq-deadline registered
Jul 28 10:42:45 revelation kernel: io scheduler kyber registered
Jul 28 10:42:45 revelation kernel: io scheduler bfq registered
Jul 28 10:42:45 revelation kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 25
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:01.0: AER: enabled with IRQ 25
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:03.0: PME: Signaling with IRQ 27
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:03.0: AER: enabled with IRQ 27
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:07.0: PME: Signaling with IRQ 29
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:07.0: AER: enabled with IRQ 29
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:09.0: PME: Signaling with IRQ 31
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:09.0: AER: enabled with IRQ 31
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:0a.0: PME: Signaling with IRQ 33
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:0a.0: AER: enabled with IRQ 33
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 34
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:1c.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 35
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:1c.4: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:1c.5: PME: Signaling with IRQ 36
Jul 28 10:42:45 revelation kernel: pcieport 0000:00:1c.5: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 10:42:45 revelation kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jul 28 10:42:45 revelation kernel: ACPI: \_PR_.CPU0: Found 2 idle states
Jul 28 10:42:45 revelation kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
Jul 28 10:42:45 revelation kernel: ACPI: button: Sleep Button [SLPB]
Jul 28 10:42:45 revelation kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Jul 28 10:42:45 revelation kernel: ACPI: button: Power Button [PWRF]
Jul 28 10:42:45 revelation kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Jul 28 10:42:45 revelation kernel: pstore: Registered erst as persistent store backend
Jul 28 10:42:45 revelation kernel: GHES: APEI firmware first mode is enabled by WHEA _OSC.
Jul 28 10:42:45 revelation kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jul 28 10:42:45 revelation kernel: 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jul 28 10:42:45 revelation kernel: 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Jul 28 10:42:45 revelation kernel: Non-volatile memory driver v1.3
Jul 28 10:42:45 revelation kernel: rdac: device handler registered
Jul 28 10:42:45 revelation kernel: hp_sw: device handler registered
Jul 28 10:42:45 revelation kernel: emc: device handler registered
Jul 28 10:42:45 revelation kernel: alua: device handler registered
Jul 28 10:42:45 revelation kernel: libphy: Fixed MDIO Bus: probed
Jul 28 10:42:45 revelation kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jul 28 10:42:45 revelation kernel: ehci-pci: EHCI PCI platform driver
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1a.7: debug port 1
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1a.7: irq 19, io mem 0xb1b21000
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jul 28 10:42:45 revelation kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Jul 28 10:42:45 revelation kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 10:42:45 revelation kernel: usb usb1: Product: EHCI Host Controller
Jul 28 10:42:45 revelation kernel: usb usb1: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 ehci_hcd
Jul 28 10:42:45 revelation kernel: usb usb1: SerialNumber: 0000:00:1a.7
Jul 28 10:42:45 revelation kernel: hub 1-0:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 1-0:1.0: 6 ports detected
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1d.7: debug port 1
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1d.7: irq 16, io mem 0xb1b20000
Jul 28 10:42:45 revelation kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jul 28 10:42:45 revelation kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Jul 28 10:42:45 revelation kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 10:42:45 revelation kernel: usb usb2: Product: EHCI Host Controller
Jul 28 10:42:45 revelation kernel: usb usb2: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 ehci_hcd
Jul 28 10:42:45 revelation kernel: usb usb2: SerialNumber: 0000:00:1d.7
Jul 28 10:42:45 revelation kernel: hub 2-0:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 2-0:1.0: 6 ports detected
Jul 28 10:42:45 revelation kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jul 28 10:42:45 revelation kernel: ohci-pci: OHCI PCI platform driver
Jul 28 10:42:45 revelation kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.0: irq 19, io port 0x000030c0
Jul 28 10:42:45 revelation kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 10:42:45 revelation kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 10:42:45 revelation kernel: usb usb3: Product: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: usb usb3: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 10:42:45 revelation kernel: usb usb3: SerialNumber: 0000:00:1a.0
Jul 28 10:42:45 revelation kernel: hub 3-0:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 3-0:1.0: 2 ports detected
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.1: irq 19, io port 0x000030a0
Jul 28 10:42:45 revelation kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 10:42:45 revelation kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 10:42:45 revelation kernel: usb usb4: Product: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: usb usb4: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 10:42:45 revelation kernel: usb usb4: SerialNumber: 0000:00:1a.1
Jul 28 10:42:45 revelation kernel: hub 4-0:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 4-0:1.0: 2 ports detected
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.2: detected 2 ports
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1a.2: irq 19, io port 0x00003080
Jul 28 10:42:45 revelation kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 10:42:45 revelation kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 10:42:45 revelation kernel: usb usb5: Product: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: usb usb5: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 10:42:45 revelation kernel: usb usb5: SerialNumber: 0000:00:1a.2
Jul 28 10:42:45 revelation kernel: hub 5-0:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 5-0:1.0: 2 ports detected
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.0: irq 16, io port 0x00003060
Jul 28 10:42:45 revelation kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 10:42:45 revelation kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 10:42:45 revelation kernel: usb usb6: Product: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: usb usb6: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 10:42:45 revelation kernel: usb usb6: SerialNumber: 0000:00:1d.0
Jul 28 10:42:45 revelation kernel: hub 6-0:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 6-0:1.0: 2 ports detected
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.1: irq 16, io port 0x00003040
Jul 28 10:42:45 revelation kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 10:42:45 revelation kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 10:42:45 revelation kernel: usb usb7: Product: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: usb usb7: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 10:42:45 revelation kernel: usb usb7: SerialNumber: 0000:00:1d.1
Jul 28 10:42:45 revelation kernel: hub 7-0:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 7-0:1.0: 2 ports detected
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
Jul 28 10:42:45 revelation kernel: uhci_hcd 0000:00:1d.2: irq 16, io port 0x00003020
Jul 28 10:42:45 revelation kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 10:42:45 revelation kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 10:42:45 revelation kernel: usb usb8: Product: UHCI Host Controller
Jul 28 10:42:45 revelation kernel: usb usb8: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 10:42:45 revelation kernel: usb usb8: SerialNumber: 0000:00:1d.2
Jul 28 10:42:45 revelation kernel: hub 8-0:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 8-0:1.0: 2 ports detected
Jul 28 10:42:45 revelation kernel: usbcore: registered new interface driver usbserial_generic
Jul 28 10:42:45 revelation kernel: usbserial: USB Serial support registered for generic
Jul 28 10:42:45 revelation kernel: i8042: PNP: No PS/2 controller found.
Jul 28 10:42:45 revelation kernel: mousedev: PS/2 mouse device common for all mice
Jul 28 10:42:45 revelation kernel: rtc_cmos 00:00: RTC can wake from S4
Jul 28 10:42:45 revelation kernel: rtc_cmos 00:00: registered as rtc0
Jul 28 10:42:45 revelation kernel: rtc_cmos 00:00: setting system clock to 2023-07-28T09:42:44 UTC (1690537364)
Jul 28 10:42:45 revelation kernel: rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jul 28 10:42:45 revelation kernel: intel_pstate: CPU model not supported
Jul 28 10:42:45 revelation kernel: hid: raw HID events driver (C) Jiri Kosina
Jul 28 10:42:45 revelation kernel: usbcore: registered new interface driver usbhid
Jul 28 10:42:45 revelation kernel: usbhid: USB HID core driver
Jul 28 10:42:45 revelation kernel: drop_monitor: Initializing network drop monitor service
Jul 28 10:42:45 revelation kernel: Initializing XFRM netlink socket
Jul 28 10:42:45 revelation kernel: NET: Registered PF_INET6 protocol family
Jul 28 10:42:45 revelation kernel: Segment Routing with IPv6
Jul 28 10:42:45 revelation kernel: NET: Registered PF_PACKET protocol family
Jul 28 10:42:45 revelation kernel: mpls_gso: MPLS GSO support
Jul 28 10:42:45 revelation kernel: microcode: sig=0x206c2, pf=0x1, revision=0x1f
Jul 28 10:42:45 revelation kernel: microcode: Microcode Update Driver: v2.2.
Jul 28 10:42:45 revelation kernel: IPI shorthand broadcast: enabled
Jul 28 10:42:45 revelation kernel: SSE version of gcm_enc/dec engaged.
Jul 28 10:42:45 revelation kernel: sched_clock: Marking stable (698018019, 32205660)->(797789002, -67565323)
Jul 28 10:42:45 revelation kernel: registered taskstats version 1
Jul 28 10:42:45 revelation kernel: Loading compiled-in X.509 certificates
Jul 28 10:42:45 revelation kernel: Loaded X.509 cert 'Rocky kernel signing key: d64d6c663c66627385ebffd5cb5e33bb7f0b4a98'
Jul 28 10:42:45 revelation kernel: Loaded X.509 cert 'Rocky Enterprise Software Foundation: Rocky Linux Driver Signing Cert 101: ce537f0c615c038114acbb01233a5b62b93a1971'
Jul 28 10:42:45 revelation kernel: Loaded X.509 cert 'Rocky Enterprise Software Foundation: Rocky Linux Kpatch Signing Cert 101: b5ee07c737e57ecbeaed493a51379763b06312c5'
Jul 28 10:42:45 revelation kernel: zswap: loaded using pool lzo/zbud
Jul 28 10:42:45 revelation kernel: page_owner is disabled
Jul 28 10:42:45 revelation kernel: pstore: Using crash dump compression: deflate
Jul 28 10:42:45 revelation kernel: Key type big_key registered
Jul 28 10:42:45 revelation kernel: usb 1-2: new high-speed USB device number 2 using ehci-pci
Jul 28 10:42:45 revelation kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Jul 28 10:42:45 revelation kernel: usb 1-2: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= b.b3
Jul 28 10:42:45 revelation kernel: usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jul 28 10:42:45 revelation kernel: hub 1-2:1.0: USB hub found
Jul 28 10:42:45 revelation kernel: hub 1-2:1.0: 4 ports detected
Jul 28 10:42:45 revelation kernel: usb 2-1: New USB device found, idVendor=05e3, idProduct=0719, bcdDevice= 0.09
Jul 28 10:42:45 revelation kernel: usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=2
Jul 28 10:42:45 revelation kernel: usb 2-1: Product: USB Storage
Jul 28 10:42:45 revelation kernel: usb 2-1: SerialNumber: 000000000033
Jul 28 10:42:45 revelation kernel: Freeing initrd memory: 54396K
Jul 28 10:42:45 revelation kernel: Key type encrypted registered
Jul 28 10:42:45 revelation kernel: ima: No TPM chip found, activating TPM-bypass!
Jul 28 10:42:45 revelation kernel: Loading compiled-in module X.509 certificates
Jul 28 10:42:45 revelation kernel: Loaded X.509 cert 'Rocky kernel signing key: d64d6c663c66627385ebffd5cb5e33bb7f0b4a98'
Jul 28 10:42:45 revelation kernel: ima: Allocated hash algorithm: sha256
Jul 28 10:42:45 revelation kernel: ima: No architecture policies found
Jul 28 10:42:45 revelation kernel: evm: Initialising EVM extended attributes:
Jul 28 10:42:45 revelation kernel: evm: security.selinux
Jul 28 10:42:45 revelation kernel: evm: security.SMACK64 (disabled)
Jul 28 10:42:45 revelation kernel: evm: security.SMACK64EXEC (disabled)
Jul 28 10:42:45 revelation kernel: evm: security.SMACK64TRANSMUTE (disabled)
Jul 28 10:42:45 revelation kernel: evm: security.SMACK64MMAP (disabled)
Jul 28 10:42:45 revelation kernel: evm: security.apparmor (disabled)
Jul 28 10:42:45 revelation kernel: evm: security.ima
Jul 28 10:42:45 revelation kernel: evm: security.capability
Jul 28 10:42:45 revelation kernel: evm: HMAC attrs: 0x1
Jul 28 10:42:45 revelation kernel: usb 1-3: new high-speed USB device number 3 using ehci-pci
Jul 28 10:42:45 revelation kernel: usb 7-1: new low-speed USB device number 2 using uhci_hcd
Jul 28 10:42:45 revelation kernel: usb 1-3: New USB device found, idVendor=148f, idProduct=3070, bcdDevice= 1.01
Jul 28 10:42:45 revelation kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 10:42:45 revelation kernel: usb 1-3: Product: 802.11 n WLAN
Jul 28 10:42:45 revelation kernel: usb 1-3: Manufacturer: Ralink
Jul 28 10:42:45 revelation kernel: usb 1-3: SerialNumber: 1.0
Jul 28 10:42:45 revelation kernel: Freeing unused decrypted memory: 2036K
Jul 28 10:42:45 revelation kernel: Freeing unused kernel image (initmem) memory: 2792K
Jul 28 10:42:45 revelation kernel: Write protecting the kernel read-only data: 26624k
Jul 28 10:42:45 revelation kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
Jul 28 10:42:45 revelation kernel: Freeing unused kernel image (rodata/data gap) memory: 60K
Jul 28 10:42:45 revelation kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jul 28 10:42:45 revelation kernel: x86/mm: Checking user space page tables
Jul 28 10:42:45 revelation kernel: usb 1-2.2: new high-speed USB device number 4 using ehci-pci
Jul 28 10:42:45 revelation kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jul 28 10:42:45 revelation kernel: Run /init as init process
Jul 28 10:42:45 revelation kernel: usb 7-1: New USB device found, idVendor=046d, idProduct=c05a, bcdDevice=63.00
Jul 28 10:42:45 revelation kernel: usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jul 28 10:42:45 revelation kernel: usb 7-1: Product: USB Optical Mouse
Jul 28 10:42:45 revelation kernel: usb 7-1: Manufacturer: Logitech
Jul 28 10:42:45 revelation systemd[1]: systemd 252-14.el9_2.1 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jul 28 10:42:45 revelation kernel: usb 1-2.2: New USB device found, idVendor=03f0, idProduct=5a07, bcdDevice=11.00
Jul 28 10:42:45 revelation kernel: usb 1-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 10:42:45 revelation kernel: usb 1-2.2: Product: v220b
Jul 28 10:42:45 revelation kernel: usb 1-2.2: Manufacturer: HP
Jul 28 10:42:45 revelation kernel: usb 1-2.2: SerialNumber: 0323515010011859
Jul 28 10:42:45 revelation systemd[1]: Detected architecture x86-64.
Jul 28 10:42:45 revelation systemd[1]: Running in initrd.
Jul 28 10:42:45 revelation systemd[1]: Hostname set to <revelation>.
Jul 28 10:42:45 revelation kernel: input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/0003:046D:C05A.0001/input/input2
Jul 28 10:42:45 revelation kernel: hid-generic 0003:046D:C05A.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.1-1/input0
Jul 28 10:42:45 revelation kernel: tsc: Refined TSC clocksource calibration: 3458.389 MHz
Jul 28 10:42:45 revelation kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31d9c4802aa, max_idle_ns: 440795229719 ns
Jul 28 10:42:45 revelation kernel: clocksource: Switched to clocksource tsc
Jul 28 10:42:45 revelation systemd[1]: Queued start job for default target Initrd Default Target.
Jul 28 10:42:45 revelation systemd[1]: Created slice Slice /system/systemd-hibernate-resume.
Jul 28 10:42:45 revelation systemd[1]: Reached target Initrd /usr File System.
Jul 28 10:42:45 revelation systemd[1]: Reached target Slice Units.
Jul 28 10:42:45 revelation systemd[1]: Reached target Swaps.
Jul 28 10:42:45 revelation systemd[1]: Reached target Timer Units.
Jul 28 10:42:45 revelation systemd[1]: Listening on D-Bus System Message Bus Socket.
Jul 28 10:42:45 revelation systemd[1]: Listening on Journal Socket (/dev/log).
Jul 28 10:42:45 revelation systemd[1]: Listening on Journal Socket.
Jul 28 10:42:45 revelation systemd[1]: Listening on udev Control Socket.
Jul 28 10:42:45 revelation systemd[1]: Listening on udev Kernel Socket.
Jul 28 10:42:45 revelation systemd[1]: Reached target Socket Units.
Jul 28 10:42:45 revelation systemd[1]: Starting Create List of Static Device Nodes...
Jul 28 10:42:45 revelation systemd[1]: Starting Journal Service...
Jul 28 10:42:45 revelation systemd[1]: Starting Load Kernel Modules...
Jul 28 10:42:45 revelation systemd[1]: Starting Create System Users...
Jul 28 10:42:45 revelation systemd[1]: Starting Setup Virtual Console...
Jul 28 10:42:45 revelation systemd[1]: Finished Create List of Static Device Nodes.
Jul 28 10:42:45 revelation systemd[1]: Finished Create System Users.
Jul 28 10:42:45 revelation systemd[1]: Starting Create Static Device Nodes in /dev...
Jul 28 10:42:45 revelation kernel: fuse: init (API version 7.36)
Jul 28 10:42:45 revelation systemd[1]: Finished Load Kernel Modules.
Jul 28 10:42:45 revelation systemd[1]: Starting Apply Kernel Variables...
Jul 28 10:42:45 revelation systemd[1]: Finished Create Static Device Nodes in /dev.
Jul 28 10:42:45 revelation systemd[1]: Finished Apply Kernel Variables.
Jul 28 10:42:45 revelation systemd-journald[393]: Journal started
Jul 28 10:42:45 revelation systemd-journald[393]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 10:42:45 revelation systemd-sysusers[395]: Creating group 'nobody' with GID 65534.
Jul 28 10:42:45 revelation systemd-sysusers[395]: Creating group 'users' with GID 100.
Jul 28 10:42:45 revelation systemd-sysusers[395]: Creating group 'dbus' with GID 81.
Jul 28 10:42:45 revelation systemd-sysusers[395]: Creating user 'dbus' (System Message Bus) with UID 81 and GID 81.
Jul 28 10:42:45 revelation systemd-modules-load[394]: Inserted module 'fuse'
Jul 28 10:42:45 revelation systemd-modules-load[394]: Module 'msr' is built in
Jul 28 10:42:45 revelation systemd-sysctl[409]: Couldn't write '1' to 'net/netfilter/nf_conntrack_acct', ignoring: No such file or directory
Jul 28 10:42:45 revelation systemd[1]: Started Journal Service.
Jul 28 10:42:45 revelation systemd[1]: Starting Create Volatile Files and Directories...
Jul 28 10:42:45 revelation systemd[1]: Finished Create Volatile Files and Directories.
Jul 28 10:42:45 revelation systemd[1]: Finished Setup Virtual Console.
Jul 28 10:42:45 revelation systemd[1]: dracut ask for additional cmdline parameters was skipped because no trigger condition checks were met.
Jul 28 10:42:45 revelation systemd[1]: Starting dracut cmdline hook...
Jul 28 10:42:45 revelation dracut-cmdline[418]: dracut-9.2 (Blue Onyx) dracut-057-21.git20230214.el9
Jul 28 10:42:45 revelation dracut-cmdline[418]: Using kernel command line parameters:    BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 10:42:45 revelation systemd[1]: Finished dracut cmdline hook.
Jul 28 10:42:45 revelation systemd[1]: Starting dracut pre-udev hook...
Jul 28 10:42:45 revelation kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
Jul 28 10:42:45 revelation kernel: device-mapper: uevent: version 1.0.3
Jul 28 10:42:45 revelation kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
Jul 28 10:42:45 revelation kernel: usb 5-1: new full-speed USB device number 2 using uhci_hcd
Jul 28 10:42:45 revelation systemd[1]: Finished dracut pre-udev hook.
Jul 28 10:42:45 revelation systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jul 28 10:42:45 revelation systemd-udevd[533]: Using default interface naming scheme 'rhel-9.0'.
Jul 28 10:42:45 revelation systemd[1]: Started Rule-based Manager for Device Events and Files.
Jul 28 10:42:45 revelation systemd[1]: dracut pre-trigger hook was skipped because no trigger condition checks were met.
Jul 28 10:42:45 revelation systemd[1]: Starting Coldplug All udev Devices...
Jul 28 10:42:45 revelation kernel: usb 5-1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
Jul 28 10:42:45 revelation kernel: usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 10:42:45 revelation kernel: usb 5-1: Product: Virtual Keyboard and Mouse
Jul 28 10:42:45 revelation kernel: usb 5-1: Manufacturer: American Megatrends Inc.
Jul 28 10:42:45 revelation kernel: usb 5-1: SerialNumber: serial
Jul 28 10:42:45 revelation kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.0/0003:046B:FF10.0002/input/input3
Jul 28 10:42:45 revelation kernel: hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1/input0
Jul 28 10:42:45 revelation kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.1/0003:046B:FF10.0003/input/input4
Jul 28 10:42:45 revelation kernel: hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1/input1
Jul 28 10:42:45 revelation systemd[1]: sys-module-fuse.device: Failed to enqueue SYSTEMD_WANTS= job, ignoring: Unit sys-fs-fuse-connections.mount not found.
Jul 28 10:42:45 revelation systemd[1]: Finished Coldplug All udev Devices.
Jul 28 10:42:45 revelation systemd[1]: nm-initrd.service was skipped because of an unmet condition check (ConditionPathExists=/run/NetworkManager/initrd/neednet).
Jul 28 10:42:45 revelation systemd[1]: Reached target Network.
Jul 28 10:42:45 revelation systemd[1]: nm-wait-online-initrd.service was skipped because of an unmet condition check (ConditionPathExists=/run/NetworkManager/initrd/neednet).
Jul 28 10:42:45 revelation systemd[1]: Starting dracut initqueue hook...
Jul 28 10:42:45 revelation systemd[1]: Starting Show Plymouth Boot Screen...
Jul 28 10:42:45 revelation kernel: dca service started, version 1.12.1
Jul 28 10:42:45 revelation systemd[1]: Received SIGRTMIN+20 from PID 562 (plymouthd).
Jul 28 10:42:45 revelation kernel: megaraid_sas: loading out-of-tree module taints kernel.
Jul 28 10:42:45 revelation kernel: megaraid_sas: module verification failed: signature and/or required key missing - tainting kernel
Jul 28 10:42:45 revelation kernel: megasas: 07.719.03.00-rc1
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: FW now in Ready state
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: 63 bit DMA mask and 32 bit consistent mask
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: requested/available msix 1/1 poll_queue 0
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: current msix/online cpus#011: (1/24)
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: RDPQ mode#011: (disabled)
Jul 28 10:42:45 revelation systemd[1]: Started Show Plymouth Boot Screen.
Jul 28 10:42:45 revelation systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Jul 28 10:42:45 revelation systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Jul 28 10:42:45 revelation systemd[1]: Reached target Path Units.
Jul 28 10:42:45 revelation kernel: igb: Intel(R) Gigabit Ethernet Network Driver
Jul 28 10:42:45 revelation kernel: igb: Copyright (c) 2007-2014 Intel Corporation.
Jul 28 10:42:45 revelation kernel: usb 8-2: new low-speed USB device number 2 using uhci_hcd
Jul 28 10:42:45 revelation kernel: ACPI: bus type drm_connector registered
Jul 28 10:42:45 revelation kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: controller type#011: iMR(0MB)
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: Online Controller Reset(OCR)#011: Enabled
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: Secure JBOD support#011: No
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: NVMe passthru support#011: No
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: FW provided TM TaskAbort/Reset timeout#011: 0 secs/0 secs
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map support#011: No
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: PCI Lane Margining support#011: No
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: megasas_init_mfi: fw_support_ieee=67108864
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: INIT adapter done
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map is disabled megasas_setup_jbod_map 5839
Jul 28 10:42:45 revelation kernel: mgag200 0000:07:00.0: vgaarb: deactivate vga console
Jul 28 10:42:45 revelation kernel: Console: switching to colour dummy device 80x25
Jul 28 10:42:45 revelation kernel: [drm] Initialized mgag200 1.0.0 20110418 for 0000:07:00.0 on minor 0
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: pci id#011#011: (0x1000)/(0x0073)/(0x1000)/(0x9241)
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: unevenspan support#011: no
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: firmware crash dump#011: no
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map#011: disabled
Jul 28 10:42:45 revelation kernel: megaraid_sas 0000:02:00.0: Max firmware commands: 30 shared with default hw_queues = 1 poll_queues 0
Jul 28 10:42:45 revelation kernel: scsi host0: Avago SAS based MegaRAID driver
Jul 28 10:42:45 revelation kernel: scsi 0:2:0:0: Direct-Access     LSI      MR9240-4i        2.12 PQ: 0 ANSI: 5
Jul 28 10:42:45 revelation kernel: random: fast init done
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Now returning 11 at 0
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:42:45 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Now returning -2 at 2
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:42:45 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Now returning 3 at 12
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:42:45 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:42:45 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:42:45 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Now returning -2 at 2
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:42:45 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Now returning -2 at 2
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:42:45 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Now returning -2 at 2
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:42:45 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Now returning -2 at 2
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Now returning 11 at 0
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:42:45 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:42:45 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:42:45 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:42:45 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:42:45 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:42:45 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:42:45 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:42:45 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:42:45 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Now returning 3 at 12
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:42:45 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Now returning -2 at 2
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:42:45 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:42:45 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:42:45 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:42:45 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:42:45 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:42:45 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:42:45 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:42:45 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: fbcon: mgag200drmfb (fb0) is primary device
Jul 28 10:42:45 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:42:45 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:42:45 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:42:45 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:42:45 revelation kernel: scsi 0:2:0:0: Attached scsi generic sg0 type 0
Jul 28 10:42:45 revelation kernel: sd 0:2:0:0: [sda] 1169920000 512-byte logical blocks: (599 GB/558 GiB)
Jul 28 10:42:45 revelation kernel: sd 0:2:0:0: [sda] Write Protect is off
Jul 28 10:42:45 revelation kernel: sd 0:2:0:0: [sda] Write cache: disabled, read cache: disabled, supports DPO and FUA
Jul 28 10:42:45 revelation kernel: sda: sda1 sda2 sda3
Jul 28 10:42:45 revelation kernel: sd 0:2:0:0: [sda] Attached SCSI disk
Jul 28 10:42:46 revelation kernel: igb 0000:01:00.0: Intel(R) Gigabit Ethernet Network Connection
Jul 28 10:42:46 revelation kernel: igb 0000:01:00.0: eth0: (PCIe:2.5Gb/s:Width x4) 00:1e:67:08:e3:f8
Jul 28 10:42:46 revelation kernel: igb 0000:01:00.0: eth0: PBA No: Unknown
Jul 28 10:42:46 revelation kernel: igb 0000:01:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Jul 28 10:42:46 revelation kernel: scsi host1: ata_piix
Jul 28 10:42:46 revelation kernel: scsi host2: ata_piix
Jul 28 10:42:46 revelation kernel: ata1: SATA max UDMA/133 cmd 0x3138 ctl 0x314c bmdma 0x3110 irq 18
Jul 28 10:42:46 revelation kernel: ata2: SATA max UDMA/133 cmd 0x3130 ctl 0x3148 bmdma 0x3118 irq 18
Jul 28 10:42:46 revelation kernel: ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
Jul 28 10:42:46 revelation kernel: Console: switching to colour frame buffer device 160x50
Jul 28 10:42:46 revelation kernel: mgag200 0000:07:00.0: [drm] fb0: mgag200drmfb frame buffer device
Jul 28 10:42:46 revelation kernel: scsi host3: ata_piix
Jul 28 10:42:46 revelation kernel: scsi host4: ata_piix
Jul 28 10:42:46 revelation kernel: ata3: SATA max UDMA/133 cmd 0x3128 ctl 0x3144 bmdma 0x30f0 irq 21
Jul 28 10:42:46 revelation kernel: ata4: SATA max UDMA/133 cmd 0x3120 ctl 0x3140 bmdma 0x30f8 irq 21
Jul 28 10:42:46 revelation kernel: igb 0000:01:00.1: Intel(R) Gigabit Ethernet Network Connection
Jul 28 10:42:46 revelation kernel: igb 0000:01:00.1: eth1: (PCIe:2.5Gb/s:Width x4) 00:1e:67:08:e3:f9
Jul 28 10:42:46 revelation kernel: igb 0000:01:00.1: eth1: PBA No: Unknown
Jul 28 10:42:46 revelation kernel: igb 0000:01:00.1: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Jul 28 10:42:46 revelation systemd-udevd[602]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 10:42:46 revelation systemd-udevd[582]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 10:42:46 revelation kernel: usb 8-2: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00
Jul 28 10:42:46 revelation kernel: usb 8-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jul 28 10:42:46 revelation kernel: usb 8-2: Product: USB Keyboard
Jul 28 10:42:46 revelation kernel: usb 8-2: Manufacturer: Logitech
Jul 28 10:42:46 revelation kernel: input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/0003:046D:C31C.0004/input/input5
Jul 28 10:42:46 revelation kernel: usb-storage 2-1:1.0: USB Mass Storage device detected
Jul 28 10:42:46 revelation kernel: scsi host5: usb-storage 2-1:1.0
Jul 28 10:42:46 revelation kernel: usb-storage 1-2.2:1.0: USB Mass Storage device detected
Jul 28 10:42:46 revelation kernel: scsi host6: usb-storage 1-2.2:1.0
Jul 28 10:42:46 revelation kernel: usbcore: registered new interface driver usb-storage
Jul 28 10:42:46 revelation kernel: usbcore: registered new interface driver uas
Jul 28 10:42:46 revelation kernel: hid-generic 0003:046D:C31C.0004: input,hidraw3: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.2-2/input0
Jul 28 10:42:46 revelation kernel: input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input6
Jul 28 10:42:46 revelation kernel: input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input7
Jul 28 10:42:46 revelation kernel: hid-generic 0003:046D:C31C.0005: input,hidraw4: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.2-2/input1
Jul 28 10:42:46 revelation kernel: ata3: SATA link down (SStatus 4 SControl 300)
Jul 28 10:42:46 revelation kernel: ata4: SATA link down (SStatus 0 SControl 300)
Jul 28 10:42:46 revelation kernel: ata2.00: SATA link down (SStatus 0 SControl 300)
Jul 28 10:42:46 revelation kernel: ata2.01: SATA link down (SStatus 0 SControl 300)
Jul 28 10:42:46 revelation kernel: ata1.00: SATA link down (SStatus 0 SControl 300)
Jul 28 10:42:46 revelation kernel: ata1.01: SATA link down (SStatus 0 SControl 300)
Jul 28 10:42:47 revelation kernel: random: crng init done
Jul 28 10:42:47 revelation dracut-initqueue[697]: Scanning devices sda2  for LVM logical volumes vg_revelationr9/root
Jul 28 10:42:47 revelation dracut-initqueue[697]: vg_revelationr9/swap
Jul 28 10:42:47 revelation dracut-initqueue[697]:  vg_revelationr9/root linear
Jul 28 10:42:47 revelation dracut-initqueue[697]:  vg_revelationr9/swap linear
Jul 28 10:42:47 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-root.
Jul 28 10:42:47 revelation systemd[1]: Reached target Initrd Root Device.
Jul 28 10:42:47 revelation kernel: scsi 5:0:0:0: CD-ROM            TEAC     DV-28S-W         1.2A PQ: 0 ANSI: 0
Jul 28 10:42:47 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-swap.
Jul 28 10:42:47 revelation systemd[1]: Starting Resume from hibernation using device /dev/mapper/vg_revelationr9-swap...
Jul 28 10:42:47 revelation systemd-hibernate-resume[734]: Could not resume from '/dev/mapper/vg_revelationr9-swap' (253:1).
Jul 28 10:42:47 revelation systemd[1]: systemd-hibernate-resume@dev-mapper-vg_revelationr9\x2dswap.service: Deactivated successfully.
Jul 28 10:42:47 revelation systemd[1]: Finished Resume from hibernation using device /dev/mapper/vg_revelationr9-swap.
Jul 28 10:42:47 revelation systemd[1]: Reached target Preparation for Local File Systems.
Jul 28 10:42:47 revelation systemd[1]: Reached target Local File Systems.
Jul 28 10:42:47 revelation systemd[1]: Reached target System Initialization.
Jul 28 10:42:47 revelation systemd[1]: Reached target Basic System.
Jul 28 10:42:47 revelation systemd[1]: Finished dracut initqueue hook.
Jul 28 10:42:47 revelation systemd[1]: Reached target Preparation for Remote File Systems.
Jul 28 10:42:47 revelation systemd[1]: Reached target Remote File Systems.
Jul 28 10:42:47 revelation systemd[1]: dracut pre-mount hook was skipped because no trigger condition checks were met.
Jul 28 10:42:47 revelation systemd[1]: Starting File System Check on /dev/mapper/vg_revelationr9-root...
Jul 28 10:42:47 revelation systemd-fsck[745]: revr9root: clean, 618938/4587520 files, 5980145/18350080 blocks
Jul 28 10:42:47 revelation systemd[1]: Finished File System Check on /dev/mapper/vg_revelationr9-root.
Jul 28 10:42:47 revelation systemd[1]: Mounting /sysroot...
Jul 28 10:42:47 revelation kernel: scsi 6:0:0:0: Direct-Access     hp       v220b            1100 PQ: 0 ANSI: 4
Jul 28 10:42:47 revelation kernel: scsi 6:0:0:0: alua: supports implicit and explicit TPGS
Jul 28 10:42:47 revelation kernel: scsi 6:0:0:0: alua: No target port descriptors found
Jul 28 10:42:47 revelation kernel: sd 6:0:0:0: Attached scsi generic sg1 type 0
Jul 28 10:42:47 revelation kernel: scsi 5:0:0:0: Attached scsi generic sg2 type 5
Jul 28 10:42:47 revelation kernel: sd 6:0:0:0: [sdb] 31506432 512-byte logical blocks: (16.1 GB/15.0 GiB)
Jul 28 10:42:47 revelation kernel: sd 6:0:0:0: [sdb] Write Protect is off
Jul 28 10:42:47 revelation kernel: sd 6:0:0:0: [sdb] No Caching mode page found
Jul 28 10:42:47 revelation kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
Jul 28 10:42:47 revelation kernel: sdb: sdb1 sdb2 sdb3 sdb4
Jul 28 10:42:47 revelation kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Jul 28 10:42:47 revelation kernel: sr 5:0:0:0: [sr0] scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray
Jul 28 10:42:47 revelation kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jul 28 10:42:47 revelation kernel: EXT4-fs (dm-0): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 10:42:47 revelation systemd[1]: Mounted /sysroot.
Jul 28 10:42:47 revelation systemd[1]: Reached target Initrd Root File System.
Jul 28 10:42:47 revelation systemd[1]: Starting Mountpoints Configured in the Real Root...
Jul 28 10:42:47 revelation systemd[1]: initrd-parse-etc.service: Deactivated successfully.
Jul 28 10:42:47 revelation systemd[1]: Finished Mountpoints Configured in the Real Root.
Jul 28 10:42:47 revelation systemd[1]: Reached target Initrd File Systems.
Jul 28 10:42:47 revelation systemd[1]: Reached target Initrd Default Target.
Jul 28 10:42:47 revelation systemd[1]: dracut mount hook was skipped because no trigger condition checks were met.
Jul 28 10:42:47 revelation systemd[1]: Starting dracut pre-pivot and cleanup hook...
Jul 28 10:42:48 revelation systemd[1]: Finished dracut pre-pivot and cleanup hook.
Jul 28 10:42:48 revelation systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Jul 28 10:42:48 revelation systemd[1]: Stopped target Network.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Timer Units.
Jul 28 10:42:48 revelation systemd[1]: dbus.socket: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Closed D-Bus System Message Bus Socket.
Jul 28 10:42:48 revelation systemd[1]: dracut-pre-pivot.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped dracut pre-pivot and cleanup hook.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Initrd Default Target.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Basic System.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Initrd Root Device.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Initrd /usr File System.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Path Units.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Remote File Systems.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Preparation for Remote File Systems.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Slice Units.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Socket Units.
Jul 28 10:42:48 revelation systemd[1]: Stopped target System Initialization.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Local File Systems.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Preparation for Local File Systems.
Jul 28 10:42:48 revelation systemd[1]: Stopped target Swaps.
Jul 28 10:42:48 revelation systemd[1]: dracut-initqueue.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped dracut initqueue hook.
Jul 28 10:42:48 revelation systemd[1]: Starting Plymouth switch root service...
Jul 28 10:42:48 revelation systemd[1]: systemd-sysctl.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped Apply Kernel Variables.
Jul 28 10:42:48 revelation systemd[1]: systemd-modules-load.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped Load Kernel Modules.
Jul 28 10:42:48 revelation systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped Create Volatile Files and Directories.
Jul 28 10:42:48 revelation systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped Coldplug All udev Devices.
Jul 28 10:42:48 revelation systemd[1]: Stopping Rule-based Manager for Device Events and Files...
Jul 28 10:42:48 revelation systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup.service.mount: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: run-credentials-systemd\x2dsysctl.service.mount: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: initrd-cleanup.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
Jul 28 10:42:48 revelation systemd[1]: systemd-udevd.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped Rule-based Manager for Device Events and Files.
Jul 28 10:42:48 revelation systemd[1]: systemd-udevd.service: Consumed 1.686s CPU time.
Jul 28 10:42:48 revelation systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Closed udev Control Socket.
Jul 28 10:42:48 revelation systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Closed udev Kernel Socket.
Jul 28 10:42:48 revelation systemd[1]: dracut-pre-udev.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped dracut pre-udev hook.
Jul 28 10:42:48 revelation systemd[1]: dracut-cmdline.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped dracut cmdline hook.
Jul 28 10:42:48 revelation systemd[1]: Starting Cleanup udev Database...
Jul 28 10:42:48 revelation systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped Create Static Device Nodes in /dev.
Jul 28 10:42:48 revelation systemd[1]: kmod-static-nodes.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped Create List of Static Device Nodes.
Jul 28 10:42:48 revelation systemd[1]: systemd-sysusers.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Stopped Create System Users.
Jul 28 10:42:48 revelation systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev.service.mount: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: run-credentials-systemd\x2dsysusers.service.mount: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
Jul 28 10:42:48 revelation systemd[1]: Finished Cleanup udev Database.
Jul 28 10:42:48 revelation systemd[1]: Reached target Switch Root.
Jul 28 10:42:48 revelation systemd[1]: Finished Plymouth switch root service.
Jul 28 10:42:48 revelation systemd[1]: Starting Switch Root...
Jul 28 10:42:48 revelation systemd[1]: Switching root.
Jul 28 10:42:48 revelation systemd-journald[393]: Journal stopped
Jul 28 10:42:50 revelation systemd-journald[393]: Received SIGTERM from PID 1 (systemd).
Jul 28 10:42:50 revelation kernel: audit: type=1404 audit(1690537368.725:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
Jul 28 10:42:50 revelation kernel: SELinux:  policy capability network_peer_controls=1
Jul 28 10:42:50 revelation kernel: SELinux:  policy capability open_perms=1
Jul 28 10:42:50 revelation kernel: SELinux:  policy capability extended_socket_class=1
Jul 28 10:42:50 revelation kernel: SELinux:  policy capability always_check_network=0
Jul 28 10:42:50 revelation kernel: SELinux:  policy capability cgroup_seclabel=1
Jul 28 10:42:50 revelation kernel: SELinux:  policy capability nnp_nosuid_transition=1
Jul 28 10:42:50 revelation kernel: SELinux:  policy capability genfs_seclabel_symlinks=1
Jul 28 10:42:50 revelation kernel: audit: type=1403 audit(1690537368.865:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
Jul 28 10:42:50 revelation systemd[1]: Successfully loaded SELinux policy in 154.494ms.
Jul 28 10:42:50 revelation systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 61.609ms.
Jul 28 10:42:50 revelation systemd[1]: systemd 252-14.el9_2.1 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jul 28 10:42:50 revelation systemd[1]: Detected architecture x86-64.
Jul 28 10:42:50 revelation systemd-rc-local-generator[805]: /etc/rc.d/rc.local is not marked executable, skipping.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 10:42:50 revelation systemd[1]: initrd-switch-root.service: Deactivated successfully.
Jul 28 10:42:50 revelation systemd[1]: Stopped Switch Root.
Jul 28 10:42:50 revelation systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Jul 28 10:42:50 revelation systemd[1]: Created slice Slice /system/getty.
Jul 28 10:42:50 revelation systemd[1]: Created slice Slice /system/modprobe.
Jul 28 10:42:50 revelation systemd[1]: Created slice Slice /system/sshd-keygen.
Jul 28 10:42:50 revelation systemd[1]: Created slice Cryptsetup Units Slice.
Jul 28 10:42:50 revelation systemd[1]: Created slice Slice /system/systemd-fsck.
Jul 28 10:42:50 revelation systemd[1]: Created slice User and Session Slice.
Jul 28 10:42:50 revelation systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Jul 28 10:42:50 revelation systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jul 28 10:42:50 revelation systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jul 28 10:42:50 revelation systemd[1]: Reached target Login Prompts.
Jul 28 10:42:50 revelation systemd[1]: Stopped target Switch Root.
Jul 28 10:42:50 revelation systemd[1]: Stopped target Initrd File Systems.
Jul 28 10:42:50 revelation systemd[1]: Stopped target Initrd Root File System.
Jul 28 10:42:50 revelation systemd[1]: Reached target Local Integrity Protected Volumes.
Jul 28 10:42:50 revelation systemd[1]: Reached target Slice Units.
Jul 28 10:42:50 revelation systemd[1]: Reached target Local Verity Protected Volumes.
Jul 28 10:42:50 revelation systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jul 28 10:42:50 revelation systemd[1]: Listening on LVM2 poll daemon socket.
Jul 28 10:42:50 revelation systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
Jul 28 10:42:50 revelation systemd[1]: Listening on Process Core Dump Socket.
Jul 28 10:42:50 revelation systemd[1]: Listening on initctl Compatibility Named Pipe.
Jul 28 10:42:50 revelation systemd[1]: Listening on udev Control Socket.
Jul 28 10:42:50 revelation systemd[1]: Listening on udev Kernel Socket.
Jul 28 10:42:50 revelation systemd[1]: Mounting Huge Pages File System...
Jul 28 10:42:50 revelation systemd[1]: Mounting POSIX Message Queue File System...
Jul 28 10:42:50 revelation systemd[1]: Mounting Kernel Debug File System...
Jul 28 10:42:50 revelation systemd[1]: Mounting Kernel Trace File System...
Jul 28 10:42:50 revelation systemd[1]: Starting Create List of Static Device Nodes...
Jul 28 10:42:50 revelation systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jul 28 10:42:50 revelation systemd[1]: Starting Load Kernel Module configfs...
Jul 28 10:42:50 revelation systemd[1]: Starting Load Kernel Module drm...
Jul 28 10:42:50 revelation systemd[1]: Starting Load Kernel Module fuse...
Jul 28 10:42:50 revelation systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
Jul 28 10:42:50 revelation systemd[1]: plymouth-switch-root.service: Deactivated successfully.
Jul 28 10:42:50 revelation systemd[1]: Stopped Plymouth switch root service.
Jul 28 10:42:50 revelation systemd[1]: Stopped Journal Service.
Jul 28 10:42:50 revelation systemd[1]: Starting Journal Service...
Jul 28 10:42:50 revelation systemd[1]: Starting Load Kernel Modules...
Jul 28 10:42:50 revelation systemd[1]: Starting Generate network units from Kernel command line...
Jul 28 10:42:50 revelation systemd[1]: Starting Remount Root and Kernel File Systems...
Jul 28 10:42:50 revelation systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Jul 28 10:42:50 revelation systemd[1]: Starting Coldplug All udev Devices...
Jul 28 10:42:50 revelation systemd[1]: Mounted Huge Pages File System.
Jul 28 10:42:50 revelation systemd[1]: Mounted POSIX Message Queue File System.
Jul 28 10:42:50 revelation systemd[1]: Mounted Kernel Debug File System.
Jul 28 10:42:50 revelation systemd[1]: Mounted Kernel Trace File System.
Jul 28 10:42:50 revelation systemd[1]: Finished Create List of Static Device Nodes.
Jul 28 10:42:50 revelation systemd[1]: Finished Read and set NIS domainname from /etc/sysconfig/network.
Jul 28 10:42:50 revelation systemd[1]: Finished Generate network units from Kernel command line.
Jul 28 10:42:50 revelation kernel: EXT4-fs (dm-0): re-mounted. Quota mode: none.
Jul 28 10:42:50 revelation systemd[1]: Finished Remount Root and Kernel File Systems.
Jul 28 10:42:50 revelation systemd[1]: Special handling of early boot iSCSI sessions was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session).
Jul 28 10:42:50 revelation systemd[1]: OSTree Remount OS/ Bind Mounts was skipped because of an unmet condition check (ConditionKernelCommandLine=ostree).
Jul 28 10:42:50 revelation systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jul 28 10:42:50 revelation systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Jul 28 10:42:50 revelation systemd[1]: Starting Load/Save Random Seed...
Jul 28 10:42:50 revelation systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Jul 28 10:42:50 revelation systemd[1]: Starting Create Static Device Nodes in /dev...
Jul 28 10:42:50 revelation systemd[1]: modprobe@drm.service: Deactivated successfully.
Jul 28 10:42:50 revelation systemd[1]: Finished Load Kernel Module drm.
Jul 28 10:42:50 revelation systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jul 28 10:42:50 revelation systemd[1]: Finished Load Kernel Module fuse.
Jul 28 10:42:50 revelation systemd-journald[830]: Journal started
Jul 28 10:42:50 revelation systemd-journald[830]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 10:42:50 revelation systemd[1]: Queued start job for default target Graphical Interface.
Jul 28 10:42:50 revelation systemd[1]: systemd-journald.service: Deactivated successfully.
Jul 28 10:42:50 revelation systemd[1]: Mounting FUSE Control File System...
Jul 28 10:42:50 revelation systemd[1]: Started Journal Service.
Jul 28 10:42:50 revelation systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jul 28 10:42:50 revelation systemd[1]: Finished Load Kernel Module configfs.
Jul 28 10:42:50 revelation systemd[1]: Mounted FUSE Control File System.
Jul 28 10:42:50 revelation systemd[1]: Mounting Kernel Configuration File System...
Jul 28 10:42:50 revelation systemd[1]: Starting Flush Journal to Persistent Storage...
Jul 28 10:42:50 revelation systemd[1]: Mounted Kernel Configuration File System.
Jul 28 10:42:50 revelation systemd-modules-load[831]: Module 'msr' is built in
Jul 28 10:42:50 revelation systemd[1]: Finished Load Kernel Modules.
Jul 28 10:42:50 revelation systemd[1]: Starting Apply Kernel Variables...
Jul 28 10:42:50 revelation systemd-journald[830]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 10:42:50 revelation systemd-journald[830]: Received client request to flush runtime journal.
Jul 28 10:42:50 revelation systemd[1]: Finished Coldplug All udev Devices.
Jul 28 10:42:50 revelation systemd[1]: Starting Wait for udev To Complete Device Initialization...
Jul 28 10:42:50 revelation udevadm[847]: systemd-udev-settle.service is deprecated. Please fix multipathd.service not to pull it in.
Jul 28 10:42:50 revelation systemd[1]: Finished Flush Journal to Persistent Storage.
Jul 28 10:42:50 revelation systemd[1]: Finished Load/Save Random Seed.
Jul 28 10:42:50 revelation systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jul 28 10:42:50 revelation systemd[1]: Starting Cryptography Setup for swap...
Jul 28 10:42:50 revelation systemd-sysctl[844]: Couldn't write '1' to 'net/netfilter/nf_conntrack_acct', ignoring: No such file or directory
Jul 28 10:42:50 revelation systemd[1]: Finished Apply Kernel Variables.
Jul 28 10:42:51 revelation lvm[825]:  2 logical volume(s) in volume group "vg_revelationr9" monitored
Jul 28 10:42:51 revelation systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jul 28 10:42:51 revelation systemd-cryptsetup[848]: Set cipher aes, mode xts-essiv:sha256, key size 256 bits for device /dev/vg_revelationr9/swap.
Jul 28 10:42:51 revelation kernel: alg: No test for essiv(xts(aes),sha256) (essiv(xts-aes-aesni,sha256-ssse3))
Jul 28 10:42:51 revelation systemd[1]: Finished Create Static Device Nodes in /dev.
Jul 28 10:42:51 revelation systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jul 28 10:42:51 revelation systemd-udevd[859]: Using default interface naming scheme 'rhel-9.0'.
Jul 28 10:42:51 revelation systemd[1]: Started Rule-based Manager for Device Events and Files.
Jul 28 10:42:51 revelation systemd[1]: Starting Load Kernel Module configfs...
Jul 28 10:42:51 revelation systemd[1]: Starting Load Kernel Module fuse...
Jul 28 10:42:51 revelation systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jul 28 10:42:51 revelation systemd[1]: Finished Load Kernel Module configfs.
Jul 28 10:42:51 revelation systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jul 28 10:42:51 revelation systemd[1]: Finished Load Kernel Module fuse.
Jul 28 10:42:51 revelation kernel: IPMI message handler: version 39.2
Jul 28 10:42:51 revelation kernel: ipmi device interface
Jul 28 10:42:51 revelation kernel: ipmi_si: IPMI System Interface driver
Jul 28 10:42:51 revelation kernel: ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
Jul 28 10:42:51 revelation kernel: ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Jul 28 10:42:51 revelation kernel: ipmi_si: Adding SMBIOS-specified kcs state machine
Jul 28 10:42:51 revelation kernel: ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
Jul 28 10:42:51 revelation kernel: ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
Jul 28 10:42:51 revelation kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000428-0x000000000000042F (\GPE0) (20211217/utaddress-204)
Jul 28 10:42:51 revelation kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jul 28 10:42:51 revelation kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000052F (\_SI.SIOR) (20211217/utaddress-204)
Jul 28 10:42:51 revelation kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jul 28 10:42:51 revelation kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Jul 28 10:42:51 revelation kernel: ioatdma: Intel(R) QuickData Technology Driver 5.00
Jul 28 10:42:51 revelation kernel: ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
Jul 28 10:42:51 revelation kernel: ipmi_si: Adding ACPI-specified kcs state machine
Jul 28 10:42:51 revelation kernel: ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
Jul 28 10:42:51 revelation kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Jul 28 10:42:51 revelation kernel: EDAC MC1: Giving out device to module i7core_edac.c controller i7 core #1: DEV 0000:fe:03.0 (INTERRUPT)
Jul 28 10:42:51 revelation kernel: EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:fe:03.0 (POLLED)
Jul 28 10:42:51 revelation kernel: EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (INTERRUPT)
Jul 28 10:42:51 revelation kernel: EDAC PCI1: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jul 28 10:42:51 revelation kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
Jul 28 10:42:51 revelation kernel: EDAC i7core: Driver loaded, 2 memory controller(s) found.
Jul 28 10:42:51 revelation kernel: igb 0000:01:00.0: DCA enabled
Jul 28 10:42:51 revelation kernel: igb 0000:01:00.1: DCA enabled
Jul 28 10:42:51 revelation kernel: gpio_ich gpio_ich.2.auto: GPIO from 963 to 1023
Jul 28 10:42:52 revelation kernel: iTCO_vendor_support: vendor-support=0
Jul 28 10:42:52 revelation kernel: iTCO_wdt iTCO_wdt.1.auto: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
Jul 28 10:42:52 revelation mtp-probe[943]: checking bus 5, device 2: "/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1"
Jul 28 10:42:52 revelation mtp-probe[953]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-3"
Jul 28 10:42:52 revelation mtp-probe[947]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1"
Jul 28 10:42:52 revelation mtp-probe[944]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2.2"
Jul 28 10:42:52 revelation mtp-probe[941]: checking bus 7, device 2: "/sys/devices/pci0000:00/0000:00:1d.1/usb7/7-1"
Jul 28 10:42:52 revelation mtp-probe[942]: checking bus 8, device 2: "/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2"
Jul 28 10:42:52 revelation mtp-probe[947]: bus: 2, device: 2 was not an MTP device
Jul 28 10:42:52 revelation mtp-probe[953]: bus: 1, device: 3 was not an MTP device
Jul 28 10:42:52 revelation mtp-probe[943]: bus: 5, device: 2 was not an MTP device
Jul 28 10:42:52 revelation mtp-probe[944]: bus: 1, device: 4 was not an MTP device
Jul 28 10:42:52 revelation mtp-probe[941]: bus: 7, device: 2 was not an MTP device
Jul 28 10:42:52 revelation mtp-probe[942]: bus: 8, device: 2 was not an MTP device
Jul 28 10:42:52 revelation kernel: ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000157, prod_id: 0x003e, dev_id: 0x21)
Jul 28 10:42:52 revelation systemd-udevd[925]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 10:42:52 revelation systemd-udevd[909]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 10:42:52 revelation kernel: ipmi_si IPI0001:00: IPMI kcs interface initialized
Jul 28 10:42:52 revelation kernel: ipmi_ssif: IPMI SSIF Interface driver
Jul 28 10:42:52 revelation lvm[977]: PV /dev/sda2 online, VG vg_revelationr9 is complete.
Jul 28 10:42:52 revelation systemd[1]: Started /usr/sbin/lvm vgchange -aay --autoactivation event vg_revelationr9.
Jul 28 10:42:52 revelation systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jul 28 10:42:52 revelation systemd[1]: Condition check resulted in MR9240-4i boot being skipped.
Jul 28 10:42:52 revelation lvm[987]:  3 logical volume(s) in volume group "vg_revelationr9" now active
Jul 28 10:42:52 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-home.
Jul 28 10:42:52 revelation systemd-makefs[995]: Setting up swapspace version 1, size = 25 GiB (26843541504 bytes)
Jul 28 10:42:52 revelation systemd-makefs[995]: LABEL=swap, UUID=0d965b07-d55c-41fb-8891-f19bc7922215
Jul 28 10:42:52 revelation systemd-makefs[964]: /dev/mapper/swap successfully formatted as swap (label "swap", uuid 0d965b07-d55c-41fb-8891-f19bc7922215)
Jul 28 10:42:52 revelation systemd[1]: Finished Cryptography Setup for swap.
Jul 28 10:42:52 revelation systemd[1]: Reached target Block Device Preparation for /dev/mapper/swap.
Jul 28 10:42:52 revelation systemd[1]: Reached target Local Encrypted Volumes.
Jul 28 10:42:52 revelation systemd[1]: Found device /dev/mapper/swap.
Jul 28 10:42:52 revelation kernel: kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jul 28 10:42:52 revelation systemd[1]: Activating swap /dev/mapper/swap...
Jul 28 10:42:52 revelation kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jul 28 10:42:52 revelation kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jul 28 10:42:52 revelation systemd[1]: lvm-activate-vg_revelationr9.service: Deactivated successfully.
Jul 28 10:42:52 revelation kernel: Adding 26214396k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:26214396k FS
Jul 28 10:42:52 revelation systemd[1]: Activated swap /dev/mapper/swap.
Jul 28 10:42:52 revelation systemd[1]: Reached target Swaps.
Jul 28 10:42:52 revelation kernel: usb 1-3: reset high-speed USB device number 3 using ehci-pci
Jul 28 10:42:53 revelation kernel: ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3070, rev 0201 detected
Jul 28 10:42:53 revelation kernel: ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0005 detected
Jul 28 10:42:53 revelation kernel: usbcore: registered new interface driver rt2800usb
Jul 28 10:42:53 revelation systemd[1]: Starting Load/Save RF Kill Switch Status...
Jul 28 10:42:53 revelation systemd-udevd[865]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 10:42:53 revelation wireless[1057]: setting regulatory domain to GB based on timezone (Europe/London)
Jul 28 10:42:53 revelation systemd[1]: Finished Wait for udev To Complete Device Initialization.
Jul 28 10:42:53 revelation systemd[1]: Device-Mapper Multipath Device Controller was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
Jul 28 10:42:53 revelation systemd[1]: Reached target Preparation for Local File Systems.
Jul 28 10:42:53 revelation systemd[1]: Login and scanning of iSCSI devices was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
Jul 28 10:42:53 revelation systemd[1]: Reached target Preparation for Remote File Systems.
Jul 28 10:42:53 revelation systemd[1]: Reached target Remote File Systems.
Jul 28 10:42:53 revelation systemd[1]: Starting File System Check on /dev/disk/by-uuid/e46a2fbb-bf4f-48b9-bd78-23d813638af9...
Jul 28 10:42:53 revelation systemd[1]: Starting File System Check on /dev/mapper/vg_revelationr9-home...
Jul 28 10:42:53 revelation systemd[1]: Started Load/Save RF Kill Switch Status.
Jul 28 10:42:53 revelation systemd[1]: Finished File System Check on /dev/disk/by-uuid/e46a2fbb-bf4f-48b9-bd78-23d813638af9.
Jul 28 10:42:53 revelation systemd[1]: Mounting /boot...
Jul 28 10:42:53 revelation kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 10:42:53 revelation systemd[1]: Mounted /boot.
Jul 28 10:42:53 revelation systemd-fsck[1068]: revr9home: clean, 540094/30244864 files, 99991133/120950784 blocks
Jul 28 10:42:53 revelation systemd[1]: Finished File System Check on /dev/mapper/vg_revelationr9-home.
Jul 28 10:42:53 revelation systemd[1]: Mounting /home...
Jul 28 10:42:53 revelation kernel: EXT4-fs (dm-3): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 10:42:53 revelation systemd[1]: Mounted /home.
Jul 28 10:42:53 revelation systemd[1]: Reached target Local File Systems.
Jul 28 10:42:53 revelation systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Jul 28 10:42:53 revelation systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Jul 28 10:42:53 revelation systemd[1]: Mark the need to relabel after reboot was skipped because of an unmet condition check (ConditionSecurity=!selinux).
Jul 28 10:42:53 revelation systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Jul 28 10:42:53 revelation systemd[1]: Store a System Token in an EFI Variable was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/LoaderFeatures-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 10:42:53 revelation systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Jul 28 10:42:53 revelation systemd[1]: Starting Create Volatile Files and Directories...
Jul 28 10:42:53 revelation systemd[1]: Received SIGRTMIN+20 from PID 562 (plymouthd).
Jul 28 10:42:53 revelation systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Jul 28 10:42:53 revelation systemd[1]: Finished Create Volatile Files and Directories.
Jul 28 10:42:53 revelation systemd[1]: Starting Security Auditing Service...
Jul 28 10:42:53 revelation systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Jul 28 10:42:53 revelation systemd[1]: Starting Network Name Resolution...
Jul 28 10:42:53 revelation systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Jul 28 10:42:53 revelation auditd[1078]: audit dispatcher initialized with q_depth=1200 and 1 active plugins
Jul 28 10:42:53 revelation auditd[1078]: Init complete, auditd 3.0.7 listening for events (startup state enable)
Jul 28 10:42:53 revelation systemd-resolved[1077]: Positive Trust Anchors:
Jul 28 10:42:53 revelation systemd-resolved[1077]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Jul 28 10:42:53 revelation systemd-resolved[1077]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
Jul 28 10:42:53 revelation augenrules[1083]: /sbin/augenrules: No change
Jul 28 10:42:53 revelation augenrules[1093]: No rules
Jul 28 10:42:53 revelation augenrules[1093]: enabled 1
Jul 28 10:42:53 revelation augenrules[1093]: failure 1
Jul 28 10:42:53 revelation augenrules[1093]: pid 1078
Jul 28 10:42:53 revelation augenrules[1093]: rate_limit 0
Jul 28 10:42:53 revelation augenrules[1093]: backlog_limit 8192
Jul 28 10:42:53 revelation augenrules[1093]: lost 0
Jul 28 10:42:53 revelation augenrules[1093]: backlog 4
Jul 28 10:42:53 revelation augenrules[1093]: backlog_wait_time 60000
Jul 28 10:42:53 revelation augenrules[1093]: backlog_wait_time_actual 0
Jul 28 10:42:53 revelation augenrules[1093]: enabled 1
Jul 28 10:42:53 revelation augenrules[1093]: failure 1
Jul 28 10:42:53 revelation augenrules[1093]: pid 1078
Jul 28 10:42:53 revelation augenrules[1093]: rate_limit 0
Jul 28 10:42:53 revelation augenrules[1093]: backlog_limit 8192
Jul 28 10:42:53 revelation augenrules[1093]: lost 0
Jul 28 10:42:53 revelation augenrules[1093]: backlog 4
Jul 28 10:42:53 revelation augenrules[1093]: backlog_wait_time 60000
Jul 28 10:42:53 revelation augenrules[1093]: backlog_wait_time_actual 0
Jul 28 10:42:53 revelation augenrules[1093]: enabled 1
Jul 28 10:42:53 revelation augenrules[1093]: failure 1
Jul 28 10:42:53 revelation augenrules[1093]: pid 1078
Jul 28 10:42:53 revelation augenrules[1093]: rate_limit 0
Jul 28 10:42:53 revelation augenrules[1093]: backlog_limit 8192
Jul 28 10:42:53 revelation augenrules[1093]: lost 0
Jul 28 10:42:53 revelation augenrules[1093]: backlog 4
Jul 28 10:42:53 revelation augenrules[1093]: backlog_wait_time 60000
Jul 28 10:42:53 revelation augenrules[1093]: backlog_wait_time_actual 0
Jul 28 10:42:53 revelation systemd[1]: Started Security Auditing Service.
Jul 28 10:42:53 revelation systemd-resolved[1077]: Using system hostname 'revelation'.
Jul 28 10:42:53 revelation systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jul 28 10:42:53 revelation systemd[1]: Started Network Name Resolution.
Jul 28 10:42:53 revelation systemd[1]: Reached target Host and Network Name Lookups.
Jul 28 10:42:53 revelation systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jul 28 10:42:53 revelation systemd[1]: Reached target System Initialization.
Jul 28 10:42:53 revelation systemd[1]: Started CUPS Scheduler.
Jul 28 10:42:53 revelation systemd[1]: Started Daily rotation of log files.
Jul 28 10:42:53 revelation systemd[1]: Started Updates mlocate database every day.
Jul 28 10:42:53 revelation systemd[1]: Started Daily Cleanup of Temporary Directories.
Jul 28 10:42:53 revelation systemd[1]: Started daily update of the root trust anchor for DNSSEC.
Jul 28 10:42:53 revelation systemd[1]: Reached target Path Units.
Jul 28 10:42:53 revelation systemd[1]: Reached target Timer Units.
Jul 28 10:42:54 revelation systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Jul 28 10:42:54 revelation systemd[1]: Listening on CUPS Scheduler.
Jul 28 10:42:54 revelation systemd[1]: Listening on D-Bus System Message Bus Socket.
Jul 28 10:42:54 revelation systemd[1]: Listening on Open-iSCSI iscsid Socket.
Jul 28 10:42:54 revelation systemd[1]: Listening on Open-iSCSI iscsiuio Socket.
Jul 28 10:42:54 revelation systemd[1]: Listening on SSSD Kerberos Cache Manager responder socket.
Jul 28 10:42:54 revelation systemd[1]: Reached target Socket Units.
Jul 28 10:42:54 revelation systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 10:42:54 revelation systemd[1]: Reached target Basic System.
Jul 28 10:42:54 revelation systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Jul 28 10:42:54 revelation systemd[1]: Starting NTP client/server...
Jul 28 10:42:54 revelation systemd[1]: Starting Restore /run/initramfs on shutdown...
Jul 28 10:42:54 revelation systemd[1]: Starting IPv6 firewall with ip6tables...
Jul 28 10:42:54 revelation systemd[1]: Starting IPv4 firewall with iptables...
Jul 28 10:42:54 revelation systemd[1]: Started irqbalance daemon.
Jul 28 10:42:54 revelation systemd[1]: Starting Crash recovery kernel arming...
Jul 28 10:42:54 revelation systemd[1]: Started libstoragemgmt plug-in server daemon.
Jul 28 10:42:54 revelation systemd[1]: Starting Hardware Monitoring Sensors...
Jul 28 10:42:54 revelation systemd[1]: Low Memory Monitor was skipped because of an unmet condition check (ConditionPathExists=/proc/pressure).
Jul 28 10:42:54 revelation systemd[1]: Started Machine Check Exception Logging Daemon.
Jul 28 10:42:54 revelation systemd[1]: Software RAID monitoring and management was skipped because of an unmet condition check (ConditionPathExists=/etc/mdadm.conf).
Jul 28 10:42:54 revelation systemd[1]: Starting Load CPU microcode update...
Jul 28 10:42:54 revelation systemd[1]: Auto-connect to subsystems on FC-NVME devices found during boot was skipped because of an unmet condition check (ConditionPathExists=/sys/class/fc/fc_udev_device/nvme_discovery).
Jul 28 10:42:54 revelation systemd[1]: Read-Only Sysroot Migration was skipped because of an unmet condition check (ConditionPathIsReadWrite=/sysroot).
Jul 28 10:42:54 revelation systemd[1]: Starting Authorization Manager...
Jul 28 10:42:54 revelation systemd[1]: Starting Postfix Mail Transport Agent...
Jul 28 10:42:54 revelation systemd[1]: Starting Power Profiles daemon...
Jul 28 10:42:54 revelation lm_sensors-modprobe-wrapper[1109]: No sensors with loadable kernel modules configured.
Jul 28 10:42:54 revelation lm_sensors-modprobe-wrapper[1109]: Please, run 'sensors-detect' as root in order to search for available sensors.
Jul 28 10:42:54 revelation systemd[1]: Starting System Logging Service...
Jul 28 10:42:54 revelation systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Jul 28 10:42:54 revelation restorecon[1113]: /usr/sbin/restorecon: lstat(/var/spool/postfix/pid/master.pid) failed: No such file or directory
Jul 28 10:42:54 revelation systemd[1]: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Jul 28 10:42:54 revelation systemd[1]: OpenSSH ecdsa Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 10:42:54 revelation systemd[1]: OpenSSH ed25519 Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 10:42:54 revelation systemd[1]: OpenSSH rsa Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 10:42:54 revelation systemd[1]: Reached target sshd-keygen.target.
Jul 28 10:42:54 revelation systemd[1]: Starting OpenSSH server daemon...
Jul 28 10:42:54 revelation systemd[1]: System Security Services Daemon was skipped because no trigger condition checks were met.
Jul 28 10:42:54 revelation systemd[1]: Reached target User and Group Name Lookups.
Jul 28 10:42:54 revelation systemd[1]: Starting Accounts Service...
Jul 28 10:42:54 revelation systemd[1]: Starting CUPS Scheduler...
Jul 28 10:42:54 revelation systemd[1]: Starting Switcheroo Control Proxy service...
Jul 28 10:42:54 revelation systemd[1]: Starting User Login Management...
Jul 28 10:42:54 revelation systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 10:42:54 revelation systemd[1]: Starting Permit User Sessions...
Jul 28 10:42:54 revelation systemd[1]: Starting Disk Manager...
Jul 28 10:42:54 revelation systemd[1]: Starting Daemon for power management...
Jul 28 10:42:54 revelation systemd[1]: VGAuth Service for open-vm-tools was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Jul 28 10:42:54 revelation systemd[1]: Service for virtual machines hosted on VMware was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Jul 28 10:42:54 revelation systemd[1]: Finished Restore /run/initramfs on shutdown.
Jul 28 10:42:54 revelation avahi-daemon[1101]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70).
Jul 28 10:42:54 revelation avahi-daemon[1101]: Successfully dropped root privileges.
Jul 28 10:42:54 revelation systemd[1]: Starting D-Bus System Message Bus...
Jul 28 10:42:54 revelation avahi-daemon[1101]: avahi-daemon 0.8 starting up.
Jul 28 10:42:54 revelation systemd[1]: Finished Permit User Sessions.
Jul 28 10:42:54 revelation systemd[1]: Started Deferred execution scheduler.
Jul 28 10:42:54 revelation systemd[1]: Started Command Scheduler.
Jul 28 10:42:54 revelation systemd[1]: Starting GNOME Display Manager...
Jul 28 10:42:54 revelation systemd[1]: Starting Hold until boot process finishes up...
Jul 28 10:42:54 revelation systemd-logind[1137]: New seat seat0.
Jul 28 10:42:54 revelation systemd-logind[1137]: Watching system buttons on /dev/input/event1 (Power Button)
Jul 28 10:42:54 revelation systemd-logind[1137]: Watching system buttons on /dev/input/event0 (Sleep Button)
Jul 28 10:42:54 revelation systemd-logind[1137]: Watching system buttons on /dev/input/event5 (Logitech USB Keyboard)
Jul 28 10:42:54 revelation systemd-logind[1137]: Watching system buttons on /dev/input/event7 (Logitech USB Keyboard System Control)
Jul 28 10:42:54 revelation sshd[1119]: main: sshd: ssh-rsa algorithm is disabled
Jul 28 10:42:54 revelation systemd[1]: Finished Hardware Monitoring Sensors.
Jul 28 10:42:54 revelation systemd[1]: Started OpenSSH server daemon.
Jul 28 10:42:54 revelation journal[1139]: udisks daemon version 2.9.4 starting
Jul 28 10:42:54 revelation smartd[1117]: smartd 7.2 2020-12-30 r5155 [x86_64-linux-5.14.0-284.18.1.el9_2.x86_64] (local build)
Jul 28 10:42:54 revelation smartd[1117]: Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org
Jul 28 10:42:54 revelation smartd[1117]: Opened configuration file /etc/smartmontools/smartd.conf
Jul 28 10:42:54 revelation chronyd[1299]: chronyd version 4.3 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +NTS +SECHASH +IPV6 +DEBUG)
Jul 28 10:42:54 revelation smartd[1117]: Configuration file /etc/smartmontools/smartd.conf was parsed, found DEVICESCAN, scanning devices
Jul 28 10:42:54 revelation smartd[1117]: Device: /dev/bus/0 [megaraid_disk_15], opened
Jul 28 10:42:54 revelation smartd[1117]: Device: /dev/bus/0 [megaraid_disk_15], [SEAGATE  ST9600205SS      0004], lu id: 0x5000c5005fa39de7, S/N: 6XR49EGA0000M328HZ2Z, 600 GB
Jul 28 10:42:54 revelation rsyslogd[1115]: [origin software="rsyslogd" swVersion="8.2102.0-113.el9_2" x-pid="1115" x-info="https://www.rsyslog.com"] start
Jul 28 10:42:54 revelation systemd[1]: Started System Logging Service.
Jul 28 10:42:54 revelation cupsd[1135]: Listening to [v1.::1]:631 (IPv6)
Jul 28 10:42:54 revelation cupsd[1135]: Listening to 127.0.0.1:631 (IPv4)
Jul 28 10:42:54 revelation cupsd[1135]: Listening to /run/cups/cups.sock (Domain)
Jul 28 10:42:54 revelation cupsd[1135]: Remote access is disabled.
Jul 28 10:42:54 revelation cupsd[1135]: Loaded configuration file "/etc/cups/cupsd.conf"
Jul 28 10:42:54 revelation cupsd[1135]: Using default TempDir of /var/spool/cups/tmp...
Jul 28 10:42:54 revelation cupsd[1135]: Configured for up to 100 clients.
Jul 28 10:42:54 revelation cupsd[1135]: Allowing up to 100 client connections per host.
Jul 28 10:42:54 revelation cupsd[1135]: Using policy "default" as the default.
Jul 28 10:42:54 revelation cupsd[1135]: Full reload is required.
Jul 28 10:42:54 revelation chronyd[1299]: Frequency 30.765 +/- 0.397 ppm read from /var/lib/chrony/drift
Jul 28 10:42:54 revelation systemd[1]: microcode.service: Deactivated successfully.
Jul 28 10:42:54 revelation systemd[1]: Finished Load CPU microcode update.
Jul 28 10:42:55 revelation systemd[1]: Started D-Bus System Message Bus.
Jul 28 10:42:55 revelation journal[1147]: Ready
Jul 28 10:42:55 revelation avahi-daemon[1101]: Successfully called chroot().
Jul 28 10:42:55 revelation avahi-daemon[1101]: Successfully dropped remaining capabilities.
Jul 28 10:42:55 revelation avahi-daemon[1101]: No service file found in /etc/avahi/services.
Jul 28 10:42:55 revelation systemd[1]: Started Switcheroo Control Proxy service.
Jul 28 10:42:55 revelation systemd[1]: Started User Login Management.
Jul 28 10:42:55 revelation systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Jul 28 10:42:55 revelation systemd[1]: Started RealtimeKit Scheduling Policy Service.
Jul 28 10:42:55 revelation systemd[1]: Started GNOME Display Manager.
Jul 28 10:42:55 revelation kernel: Warning: Deprecated Driver is detected: nft_compat will not be maintained in a future major release and may be disabled
Jul 28 10:42:55 revelation avahi-daemon[1101]: *** WARNING: Detected another IPv4 mDNS stack running on this host. This makes mDNS unreliable and is thus not recommended. ***
Jul 28 10:42:55 revelation avahi-daemon[1101]: *** WARNING: Detected another IPv6 mDNS stack running on this host. This makes mDNS unreliable and is thus not recommended. ***
Jul 28 10:42:55 revelation avahi-daemon[1101]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Jul 28 10:42:55 revelation avahi-daemon[1101]: New relevant interface lo.IPv6 for mDNS.
Jul 28 10:42:55 revelation avahi-daemon[1101]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Jul 28 10:42:55 revelation avahi-daemon[1101]: New relevant interface lo.IPv4 for mDNS.
Jul 28 10:42:55 revelation avahi-daemon[1101]: Network interface enumeration completed.
Jul 28 10:42:55 revelation avahi-daemon[1101]: Registering new address record for ::1 on lo.*.
Jul 28 10:42:55 revelation avahi-daemon[1101]: Registering new address record for 127.0.0.1 on lo.IPv4.
Jul 28 10:42:55 revelation chronyd[1299]: Using right/UTC timezone to obtain leap second data
Jul 28 10:42:55 revelation chronyd[1299]: Loaded seccomp filter (level 2)
Jul 28 10:42:55 revelation smartd[1117]: Device: /dev/bus/0 [megaraid_disk_15], is SMART capable. Adding to "monitor" list.
Jul 28 10:42:55 revelation smartd[1117]: Device: /dev/bus/0 [megaraid_disk_16], opened
Jul 28 10:42:55 revelation smartd[1117]: Device: /dev/bus/0 [megaraid_disk_16], [SEAGATE  ST9600205SS      0004], lu id: 0x5000c5006851d64f, S/N: 6XR4KQV40000M345FLAP, 600 GB
Jul 28 10:42:55 revelation systemd[1]: Started NTP client/server.
Jul 28 10:42:55 revelation systemd[1]: Received SIGRTMIN+21 from PID 562 (plymouthd).
Jul 28 10:42:55 revelation polkitd[1112]: Started polkitd version 0.117
Jul 28 10:42:55 revelation systemd[1]: Created slice User Slice of UID 1000.
Jul 28 10:42:55 revelation systemd[1]: Starting User Runtime Directory /run/user/1000...
Jul 28 10:42:55 revelation systemd[1]: Started Daemon for power management.
Jul 28 10:42:55 revelation systemd[1]: Finished User Runtime Directory /run/user/1000.
Jul 28 10:42:55 revelation systemd[1]: Starting User Manager for UID 1000...
Jul 28 10:42:55 revelation cupsd[1135]: Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 40 types, 56 filters...
Jul 28 10:42:55 revelation ip6tables.init[1104]: ip6tables: Applying firewall rules: [  OK  ]
Jul 28 10:42:55 revelation systemd[1]: Finished IPv6 firewall with ip6tables.
Jul 28 10:42:55 revelation avahi-daemon[1101]: Server startup complete. Host name is revelation.local. Local service cookie is 1958140416.
Jul 28 10:42:55 revelation smartd[1117]: Device: /dev/bus/0 [megaraid_disk_16], is SMART capable. Adding to "monitor" list.
Jul 28 10:42:55 revelation smartd[1117]: Device: /dev/bus/0 [megaraid_disk_15], --capabilites is set, mail notification may not work.
Jul 28 10:42:55 revelation smartd[1117]: Device: /dev/bus/0 [megaraid_disk_16], --capabilites is set, mail notification may not work.
Jul 28 10:42:55 revelation smartd[1117]: Monitoring 0 ATA/SATA, 2 SCSI/SAS and 0 NVMe devices
Jul 28 10:42:56 revelation cupsd[1135]: Printer drivers are deprecated and will stop working in a future version of CUPS. See https://github.com/OpenPrinting/cups/issues/103
Jul 28 10:42:56 revelation cupsd[1135]: Loading job cache file "/var/cache/cups/job.cache"...
Jul 28 10:42:56 revelation systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Jul 28 10:42:56 revelation cupsd[1135]: Full reload complete.
Jul 28 10:42:56 revelation cupsd[1135]: Cleaning out old files in "/var/spool/cups/tmp".
Jul 28 10:42:56 revelation cupsd[1135]: Cleaning out old files in "/var/cache/cups".
Jul 28 10:42:56 revelation systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jul 28 10:42:56 revelation iptables.init[1105]: iptables: Applying firewall rules: [  OK  ]
Jul 28 10:42:56 revelation systemd[1]: Finished IPv4 firewall with iptables.
Jul 28 10:42:56 revelation systemd[1]: Reached target Preparation for Network.
Jul 28 10:42:57 revelation systemd[1]: Started Postfix Mail Transport Agent.
Jul 28 10:42:57 revelation systemd[1]: Started Manage, Install and Generate Color Profiles.
Jul 28 10:42:57 revelation cupsd[1135]: Registering ICC color profiles for "EPSON_ET-4500_Series".
Jul 28 10:42:57 revelation cupsd[1135]: Listening to [v1.::1]:631 on fd 7...
Jul 28 10:42:57 revelation cupsd[1135]: Listening to 127.0.0.1:631 on fd 8...
Jul 28 10:42:57 revelation cupsd[1135]: Listening to /run/cups/cups.sock on fd 3...
Jul 28 10:42:57 revelation cupsd[1135]: Resuming new connection processing...
Jul 28 10:42:57 revelation systemd[1]: Started CUPS Scheduler.
Jul 28 10:42:58 revelation systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jul 28 10:42:58 revelation systemd[1]: Started Authorization Manager.
Jul 28 10:42:58 revelation accounts-daemon[1134]: started daemon version 0.6.55
Jul 28 10:42:58 revelation systemd[1]: Starting Modem Manager...
Jul 28 10:42:58 revelation systemd[1]: Started Accounts Service.
Jul 28 10:42:58 revelation systemd[1]: Started Power Profiles daemon.
Jul 28 10:42:58 revelation kdumpctl[1131]: kdump: kexec: loaded kdump kernel
Jul 28 10:42:58 revelation kdumpctl[1131]: kdump: Starting kdump: [OK]
Jul 28 10:42:58 revelation systemd[1]: Finished Crash recovery kernel arming.
Jul 28 10:42:58 revelation systemd[1]: Started Disk Manager.
Jul 28 10:42:58 revelation systemd[1]: Created slice User Slice of UID 42.
Jul 28 10:42:58 revelation journal[1139]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jul 28 10:42:58 revelation systemd[1]: Starting User Runtime Directory /run/user/42...
Jul 28 10:42:58 revelation systemd-logind[1137]: New session c1 of user gdm.
Jul 28 10:42:58 revelation systemd[1]: Finished User Runtime Directory /run/user/42.
Jul 28 10:42:58 revelation systemd[1]: Starting User Manager for UID 42...
Jul 28 10:42:58 revelation systemd[1918]: Failed to open configuration file '/var/lib/gdm/.config/systemd/user.conf': Permission denied
Jul 28 10:42:58 revelation systemd-xdg-autostart-generator[1926]: Opening /var/lib/gdm/.config/autostart failed, ignoring: Permission denied
Jul 28 10:42:58 revelation systemd[1925]: quadlet-generator[1925]: Can't read "/var/lib/gdm/.config/containers/systemd": open /var/lib/gdm/.config/containers/systemd: permission denied
Jul 28 10:42:58 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 10:42:58 revelation systemd-xdg-autostart-generator[1926]: Exec binary '/usr/libexec/at-spi-bus-launcher' does not exist: Permission denied
Jul 28 10:42:58 revelation systemd-xdg-autostart-generator[1926]: /etc/xdg/autostart/at-spi-dbus-bus.desktop: not generating unit, error parsing Exec= line: Permission denied
Jul 28 10:42:58 revelation systemd-xdg-autostart-generator[1887]: Exec binary '/usr/libexec/gnome-tweak-tool-lid-inhibitor' does not exist: No such file or directory
Jul 28 10:42:58 revelation systemd-xdg-autostart-generator[1887]: /home/rfs/.config/autostart/ignore-lid-switch-tweak.desktop: not generating unit, error parsing Exec= line: No such file or directory
Jul 28 10:42:58 revelation ModemManager[1884]: <info>  ModemManager (version 1.20.2-1.el9) starting in system bus...
Jul 28 10:42:58 revelation systemd[1918]: Failed to resolve symlink /var/lib/gdm/.config/systemd/user.control, ignoring: Permission denied
Jul 28 10:42:58 revelation systemd[1918]: Failed to resolve symlink /var/lib/gdm/.config/systemd/user, ignoring: Permission denied
Jul 28 10:42:58 revelation systemd[1918]: Failed to resolve symlink /var/lib/gdm/.local/share/systemd/user, ignoring: Permission denied
Jul 28 10:42:58 revelation systemd[1918]: Failed to open "/var/lib/gdm/.config/systemd/user.control", ignoring: Permission denied
Jul 28 10:42:58 revelation systemd[1918]: Failed to open "/var/lib/gdm/.config/systemd/user", ignoring: Permission denied
Jul 28 10:42:58 revelation systemd[1918]: Failed to open "/var/lib/gdm/.local/share/systemd/user", ignoring: Permission denied
Jul 28 10:42:59 revelation systemd[1557]: Queued start job for default target Main User Target.
Jul 28 10:42:59 revelation systemd[1918]: Queued start job for default target Main User Target.
Jul 28 10:42:59 revelation systemd[1918]: Created slice User Application Slice.
Jul 28 10:42:59 revelation systemd[1557]: Created slice User Application Slice.
Jul 28 10:42:59 revelation systemd[1918]: Mark boot as successful after the user session has run 2 minutes was skipped because of an unmet condition check (ConditionUser=!@system).
Jul 28 10:42:59 revelation systemd[1918]: Started Daily Cleanup of User's Temporary Directories.
Jul 28 10:42:59 revelation systemd[1918]: Reached target Paths.
Jul 28 10:42:59 revelation systemd[1918]: Reached target Timers.
Jul 28 10:42:59 revelation systemd[1557]: Started Mark boot as successful after the user session has run 2 minutes.
Jul 28 10:42:59 revelation systemd[1557]: Started Daily Cleanup of User's Temporary Directories.
Jul 28 10:42:59 revelation systemd[1557]: Reached target Paths.
Jul 28 10:42:59 revelation systemd[1557]: Reached target Timers.
Jul 28 10:42:59 revelation systemd[1918]: Starting D-Bus User Message Bus Socket...
Jul 28 10:42:59 revelation systemd[1557]: Starting D-Bus User Message Bus Socket...
Jul 28 10:42:59 revelation rsyslogd[1115]: imjournal: journal files changed, reloading...  [v8.2102.0-113.el9_2 try https://www.rsyslog.com/e/0 ]
Jul 28 10:42:59 revelation systemd[1918]: Listening on PipeWire PulseAudio.
Jul 28 10:42:59 revelation systemd[1918]: Listening on PipeWire Multimedia System Socket.
Jul 28 10:42:59 revelation systemd[1557]: Listening on PipeWire PulseAudio.
Jul 28 10:42:59 revelation systemd[1557]: Listening on PipeWire Multimedia System Socket.
Jul 28 10:42:59 revelation systemd[1918]: Starting Create User's Volatile Files and Directories...
Jul 28 10:42:59 revelation systemd[1557]: Starting Create User's Volatile Files and Directories...
Jul 28 10:42:59 revelation systemd[1938]: systemd-tmpfiles-setup.service: Failed to locate executable systemd-tmpfiles: No such file or directory
Jul 28 10:42:59 revelation systemd[1938]: systemd-tmpfiles-setup.service: Failed at step EXEC spawning systemd-tmpfiles: No such file or directory
Jul 28 10:42:59 revelation systemd[1918]: systemd-tmpfiles-setup.service: Main process exited, code=exited, status=203/EXEC
Jul 28 10:42:59 revelation systemd[1918]: systemd-tmpfiles-setup.service: Failed with result 'exit-code'.
Jul 28 10:42:59 revelation systemd[1918]: Failed to start Create User's Volatile Files and Directories.
Jul 28 10:42:59 revelation systemd[1918]: Listening on D-Bus User Message Bus Socket.
Jul 28 10:42:59 revelation systemd[1918]: Reached target Sockets.
Jul 28 10:42:59 revelation systemd[1918]: Reached target Basic System.
Jul 28 10:42:59 revelation systemd[1557]: Listening on D-Bus User Message Bus Socket.
Jul 28 10:42:59 revelation systemd[1557]: Reached target Sockets.
Jul 28 10:42:59 revelation systemd[1918]: Reached target Main User Target.
Jul 28 10:42:59 revelation systemd[1918]: Startup finished in 582ms.
Jul 28 10:42:59 revelation systemd[1]: Started User Manager for UID 42.
Jul 28 10:42:59 revelation systemd[1]: Started Session c1 of User gdm.
Jul 28 10:42:59 revelation systemd[1557]: Finished Create User's Volatile Files and Directories.
Jul 28 10:42:59 revelation systemd[1557]: Reached target Basic System.
Jul 28 10:42:59 revelation systemd[1557]: Reached target Main User Target.
Jul 28 10:42:59 revelation systemd[1557]: Startup finished in 2.357s.
Jul 28 10:42:59 revelation systemd[1]: Started User Manager for UID 1000.
Jul 28 10:42:59 revelation systemd[1918]: Starting D-Bus User Message Bus...
Jul 28 10:42:59 revelation kernel: NET: Registered PF_QIPCRTR protocol family
Jul 28 10:42:59 revelation systemd[1]: Started Modem Manager.
Jul 28 10:42:59 revelation dbus-broker-launch[1942]: Service file '/usr/share//dbus-1/services/sealert.service' is not named after the D-Bus name 'org.fedoraproject.Setroubleshootd'.
Jul 28 10:42:59 revelation dbus-broker-launch[1942]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jul 28 10:42:59 revelation dbus-broker-launch[1942]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jul 28 10:42:59 revelation systemd[1918]: Started D-Bus User Message Bus.
Jul 28 10:42:59 revelation journal[1942]: Ready
Jul 28 10:42:59 revelation systemd[1918]: selinux: avc:  denied  { status } for auid=42 uid=42 gid=42 cmdline="/usr/bin/dbus-broker-launch --scope user" function="method_subscribe" scontext=user_u:user_r:user_dbusd_t:s0-s0:c0.c1023 tcontext=user_u:user_r:user_t:s0-s0:c0.c1023 tclass=system permissive=0
Jul 28 10:43:00 revelation journal[1956]: Adding device '/dev/dri/card0' (mgag200) using atomic mode setting.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:00 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:00 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:00 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:00 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:00 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:00 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:00 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:00 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:00 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:00 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:00 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:00 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:00 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:00 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:00 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:00 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:00 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:00 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:00 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Now returning 11 at 0
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:43:00 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Now returning -2 at 2
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:43:00 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Now returning 3 at 12
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:43:00 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Now returning -2 at 2
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:43:00 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Now returning -2 at 2
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:43:00 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Now returning -2 at 2
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:43:00 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Now returning -2 at 2
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Now returning 11 at 0
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:43:00 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Now returning 3 at 12
Jul 28 10:43:00 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:00 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:43:00 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:00 revelation kernel: Now returning -2 at 2
Jul 28 10:43:00 revelation org.gnome.Shell.desktop[1956]: pci id for fd 13: 102b:0522, driver (null)
Jul 28 10:43:00 revelation org.gnome.Shell.desktop[1956]: MESA-LOADER: failed to open mgag200: /usr/lib64/dri/mgag200_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib64/dri, suffix _dri)
Jul 28 10:43:00 revelation org.gnome.Shell.desktop[1956]: failed to load driver: mgag200
Jul 28 10:43:01 revelation org.gnome.Shell.desktop[1956]: pci id for fd 15: 102b:0522, driver (null)
Jul 28 10:43:01 revelation org.gnome.Shell.desktop[1956]: kmsro: driver missing
Jul 28 10:43:01 revelation ModemManager[1884]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0': not supported by any plugin
Jul 28 10:43:01 revelation ModemManager[1884]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.1': not supported by any plugin
Jul 28 10:43:01 revelation ModemManager[1884]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-3': not supported by any plugin
Jul 28 10:43:01 revelation journal[1956]: Failed to initialize accelerated iGPU/dGPU framebuffer sharing: Do not want to use software renderer (llvmpipe (LLVM 15.0.7, 128 bits)), falling back to CPU copy path
Jul 28 10:43:01 revelation journal[1956]: Created gbm renderer for '/dev/dri/card0'
Jul 28 10:43:01 revelation journal[1956]: Boot VGA GPU /dev/dri/card0 selected as primary
Jul 28 10:43:02 revelation journal[1956]: Disabling DMA buffer screen sharing for driver 'mgag200'.
Jul 28 10:43:02 revelation journal[1956]: Using public X11 display :1024, (using :1025 for managed services)
Jul 28 10:43:02 revelation journal[1956]: Using Wayland display name 'wayland-0'
Jul 28 10:43:02 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activating service name='org.a11y.Bus' requested by ':1.4' (uid=42 pid=1956 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:02 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Successfully activated service 'org.a11y.Bus'
Jul 28 10:43:03 revelation journal[1956]: Skipping parental controls support as it’s disabled
Jul 28 10:43:04 revelation journal[1956]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jul 28 10:43:04 revelation journal[1956]: Will monitor session c1
Jul 28 10:43:04 revelation systemd[1]: Starting Locale Service...
Jul 28 10:43:04 revelation systemd[1]: Started Locale Service.
Jul 28 10:43:04 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activating service name='org.freedesktop.portal.IBus' requested by ':1.6' (uid=42 pid=2032 comm="ibus-daemon --panel disable " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:04 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Successfully activated service 'org.freedesktop.portal.IBus'
Jul 28 10:43:04 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.3' (uid=42 pid=1956 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:04 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jul 28 10:43:04 revelation systemd[1918]: Created slice User Core Session Slice.
Jul 28 10:43:04 revelation systemd[1918]: Started PipeWire Multimedia Service.
Jul 28 10:43:04 revelation systemd[1918]: Started Multimedia Service Session Manager.
Jul 28 10:43:04 revelation systemd[1918]: Started PipeWire PulseAudio.
Jul 28 10:43:04 revelation dbus-broker-launch[1147]: Activation request for 'org.freedesktop.GeoClue2' failed: The systemd unit 'geoclue.service' is masked.
Jul 28 10:43:04 revelation rtkit-daemon[1116]: Successfully made thread 2053 of process 2053 (/usr/bin/pipewire-pulse) owned by '42' high priority at nice level -11.
Jul 28 10:43:04 revelation rtkit-daemon[1116]: Successfully made thread 2051 of process 2051 (/usr/bin/pipewire) owned by '42' high priority at nice level -11.
Jul 28 10:43:04 revelation dbus-broker-launch[1147]: Activation request for 'org.freedesktop.PackageKit' failed: The systemd unit 'packagekit.service' is masked.
Jul 28 10:43:04 revelation rtkit-daemon[1116]: Successfully made thread 2052 of process 2052 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 10:43:05 revelation rtkit-daemon[1116]: Successfully made thread 2069 of process 2052 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 10:43:05 revelation rtkit-daemon[1116]: Successfully made thread 2073 of process 2053 (/usr/bin/pipewire-pulse) owned by '42' RT at priority 20.
Jul 28 10:43:05 revelation pipewire-pulse[2072]: Failed to load cookie file from cookie: Permission denied
Jul 28 10:43:05 revelation rtkit-daemon[1116]: Successfully made thread 2078 of process 2051 (/usr/bin/pipewire) owned by '42' RT at priority 20.
Jul 28 10:43:05 revelation pipewire-pulse[2072]: 536870912
Jul 28 10:43:05 revelation journal[2052]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:05 revelation journal[2052]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:05 revelation journal[2052]: Failed to set scheduler settings: Operation not permitted
Jul 28 10:43:05 revelation wireplumber[2052]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 10:43:05 revelation journal[2052]: disconnected from pipewire
Jul 28 10:43:05 revelation systemd[1918]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 10:43:05 revelation systemd[1918]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 10:43:05 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activating service name='org.gnome.Shell.Notifications' requested by ':1.3' (uid=42 pid=1956 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:05 revelation /usr/libexec/gdm-wayland-session[2020]: dbus-daemon[2020]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=42 pid=1956 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:05 revelation /usr/libexec/gdm-wayland-session[2020]: dbus-daemon[2020]: Successfully activated service 'org.a11y.atspi.Registry'
Jul 28 10:43:05 revelation /usr/libexec/gdm-wayland-session[2089]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul 28 10:43:05 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Successfully activated service 'org.gnome.Shell.Notifications'
Jul 28 10:43:05 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 10:43:05 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activating service name='org.freedesktop.systemd1' requested by ':1.19' (uid=42 pid=2101 comm="/usr/libexec/gsd-sharing " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:05 revelation journal[1956]: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 10:43:05 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Jul 28 10:43:05 revelation journal[2101]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 10:43:05 revelation journal[2101]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 10:43:05 revelation journal[2101]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 10:43:05 revelation systemd[1918]: wireplumber.service: Scheduled restart job, restart counter is at 1.
Jul 28 10:43:05 revelation systemd[1918]: Stopped Multimedia Service Session Manager.
Jul 28 10:43:05 revelation systemd[1918]: Started Multimedia Service Session Manager.
Jul 28 10:43:05 revelation systemd[1]: Starting Hostname Service...
Jul 28 10:43:05 revelation journal[1956]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jul 28 10:43:05 revelation rtkit-daemon[1116]: Successfully made thread 2177 of process 2177 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 10:43:05 revelation rtkit-daemon[1116]: Successfully made thread 2184 of process 2177 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 10:43:05 revelation journal[2177]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:05 revelation journal[2177]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:05 revelation journal[2177]: Failed to set scheduler settings: Operation not permitted
Jul 28 10:43:05 revelation wireplumber[2177]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 10:43:05 revelation journal[2177]: disconnected from pipewire
Jul 28 10:43:05 revelation systemd[1918]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 10:43:05 revelation systemd[1918]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 10:43:05 revelation systemd[1]: Started Hostname Service.
Jul 28 10:43:05 revelation org.gnome.Shell.desktop[2030]: Failed to initialize glamor, falling back to sw
Jul 28 10:43:05 revelation cupsd[1135]: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Scheduled restart job, restart counter is at 2.
Jul 28 10:43:06 revelation systemd[1918]: Stopped Multimedia Service Session Manager.
Jul 28 10:43:06 revelation systemd[1918]: Started Multimedia Service Session Manager.
Jul 28 10:43:06 revelation rtkit-daemon[1116]: Successfully made thread 2209 of process 2209 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 10:43:06 revelation rtkit-daemon[1116]: Successfully made thread 2212 of process 2209 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 10:43:06 revelation journal[2209]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:06 revelation journal[2209]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:06 revelation journal[2209]: Failed to set scheduler settings: Operation not permitted
Jul 28 10:43:06 revelation wireplumber[2209]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 10:43:06 revelation journal[2209]: disconnected from pipewire
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 10:43:06 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 10:43:06 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 10:43:06 revelation systemd[1]: Starting Realm and Domain Configuration...
Jul 28 10:43:06 revelation systemd[1]: Started Realm and Domain Configuration.
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Scheduled restart job, restart counter is at 3.
Jul 28 10:43:06 revelation systemd[1918]: Stopped Multimedia Service Session Manager.
Jul 28 10:43:06 revelation systemd[1918]: Started Multimedia Service Session Manager.
Jul 28 10:43:06 revelation rtkit-daemon[1116]: Successfully made thread 2234 of process 2234 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 10:43:06 revelation rtkit-daemon[1116]: Successfully made thread 2237 of process 2234 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 10:43:06 revelation journal[2234]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:06 revelation journal[2234]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:06 revelation journal[2234]: Failed to set scheduler settings: Operation not permitted
Jul 28 10:43:06 revelation wireplumber[2234]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 10:43:06 revelation journal[2234]: disconnected from pipewire
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 10:43:06 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activating service name='org.gnome.Shell.Screencast' requested by ':1.26' (uid=42 pid=2112 comm="/usr/libexec/gsd-media-keys " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Scheduled restart job, restart counter is at 4.
Jul 28 10:43:06 revelation systemd[1918]: Stopped Multimedia Service Session Manager.
Jul 28 10:43:06 revelation systemd[1918]: Started Multimedia Service Session Manager.
Jul 28 10:43:06 revelation rtkit-daemon[1116]: Successfully made thread 2267 of process 2267 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 10:43:06 revelation rtkit-daemon[1116]: Successfully made thread 2270 of process 2267 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 10:43:06 revelation journal[2267]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:06 revelation gnome-session-binary[1948]: Entering running state
Jul 28 10:43:06 revelation journal[2267]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 10:43:06 revelation journal[2267]: Failed to set scheduler settings: Operation not permitted
Jul 28 10:43:06 revelation wireplumber[2267]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 10:43:06 revelation journal[2267]: disconnected from pipewire
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 10:43:06 revelation systemd[1918]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 10:43:06 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 10:43:07 revelation systemd[1918]: wireplumber.service: Scheduled restart job, restart counter is at 5.
Jul 28 10:43:07 revelation systemd[1918]: Stopped Multimedia Service Session Manager.
Jul 28 10:43:07 revelation systemd[1918]: wireplumber.service: Start request repeated too quickly.
Jul 28 10:43:07 revelation systemd[1918]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 10:43:07 revelation systemd[1918]: Failed to start Multimedia Service Session Manager.
Jul 28 10:43:07 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activating service name='org.gnome.ScreenSaver' requested by ':1.23' (uid=42 pid=2117 comm="/usr/libexec/gsd-power " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:07 revelation journal[2112]: Failed to grab accelerator for keybinding settings:playback-repeat
Jul 28 10:43:07 revelation journal[2112]: Failed to grab accelerator for keybinding settings:hibernate
Jul 28 10:43:07 revelation journal[1956]: ATK Bridge is disabled but a11y has already been enabled.
Jul 28 10:43:07 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Successfully activated service 'org.gnome.ScreenSaver'
Jul 28 10:43:07 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Activating service name='org.freedesktop.portal.IBus' requested by ':1.34' (uid=42 pid=2295 comm="ibus-daemon --panel disable -r --xim " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 10:43:07 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Successfully activated service 'org.freedesktop.portal.IBus'
Jul 28 10:43:07 revelation org.gnome.Shell.desktop[2318]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jul 28 10:43:07 revelation org.gnome.Shell.desktop[2318]: > Warning:          Unsupported maximum keycode 708, clipping.
Jul 28 10:43:07 revelation org.gnome.Shell.desktop[2318]: >                   X11 cannot support keycodes above 255.
Jul 28 10:43:07 revelation org.gnome.Shell.desktop[2318]: Errors from xkbcomp are not fatal to the X server
Jul 28 10:43:07 revelation journal[1956]: Registering session with GDM
Jul 28 10:43:07 revelation systemd[1]: Received SIGRTMIN+21 from PID 562 (plymouthd).
Jul 28 10:43:07 revelation systemd[1]: Finished Hold until boot process finishes up.
Jul 28 10:43:07 revelation systemd[1]: Reached target Multi-User System.
Jul 28 10:43:07 revelation systemd[1]: Reached target Graphical Interface.
Jul 28 10:43:07 revelation systemd[1]: Starting Record Runlevel Change in UTMP...
Jul 28 10:43:07 revelation systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
Jul 28 10:43:07 revelation systemd[1]: Finished Record Runlevel Change in UTMP.
Jul 28 10:43:07 revelation systemd[1]: Startup finished in 1.422s (kernel) + 3.443s (initrd) + 19.227s (userspace) = 24.094s.
Jul 28 10:43:07 revelation /usr/libexec/gdm-wayland-session[1947]: dbus-daemon[1947]: [session uid=42 pid=1947] Successfully activated service 'org.gnome.Shell.Screencast'
Jul 28 10:43:13 revelation systemd-logind[1137]: New session 3 of user rfs.
Jul 28 10:43:13 revelation systemd[1]: Started Session 3 of User rfs.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (--) Log file renamed from "/home/rfs/.local/share/xorg/Xorg.pid-2374.log" to "/home/rfs/.local/share/xorg/Xorg.0.log"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: X.Org X Server 1.20.11
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: X Protocol Version 11, Revision 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: Build Operating System:  5.4.188-104.359.amzn2.x86_64
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: Current Operating System: Linux revelation 5.14.0-284.18.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 22 17:36:46 UTC 2023 x86_64
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: Kernel command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: Build Date: 21 February 2023  12:00:00AM
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: Build ID: xorg-x11-server 1.20.11-17.el9
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: Current version of pixman: 0.40.0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011Before reporting problems, check http://wiki.x.org
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011to make sure that you have the latest version.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: Markers: (--) probed, (**) from config file, (==) default setting,
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011(++) from command line, (!!) notice, (II) informational,
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Log file: "/home/rfs/.local/share/xorg/Xorg.0.log", Time: Fri Jul 28 10:43:13 2023
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Using config directory: "/etc/X11/xorg.conf.d"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) ServerLayout "Builtin Default Layout"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) |-->Screen "Builtin Default mga Screen 0" (0)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) |   |-->Monitor "My monitor"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Automatically adding devices
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Automatically enabling devices
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Automatically adding GPU devices
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Automatically binding GPU devices
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) FontPath set to:
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011catalogue:/etc/X11/fontpath.d,
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011built-ins
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) ModulePath set to "/usr/lib64/xorg/modules"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) The server relies on udev to provide the list of input devices.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011If no devices become available, reconfigure udev or disable AutoAddDevices.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Loader magic: 0x559a0e60fd40
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Module ABI versions:
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011X.Org ANSI C Emulation: 0.4
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011X.Org Video Driver: 24.1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011X.Org XInput driver : 24.1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011X.Org Server Extension : 10.0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (++) using VT number 2
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 12 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (--) PCI:*(7@0:0:0) 102b:0522:8086:0101 rev 2, Mem @ 0xb0000000/16777216, 0xb1800000/16384, 0xb1000000/8388608, BIOS @ 0x????????/65536
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) LoadModule: "glx"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Module glx: vendor="X.Org Foundation"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011compiled for 1.20.11, module version = 1.0.0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011ABI class: X.Org Server Extension, version 10.0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Matched mga as autoconfigured driver 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Matched modesetting as autoconfigured driver 1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Matched fbdev as autoconfigured driver 2
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Matched vesa as autoconfigured driver 3
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) Assigned the driver to the xf86ConfigLayout
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) LoadModule: "mga"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (WW) Warning, couldn't open module mga
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (EE) Failed to load module "mga" (module does not exist, 0)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) LoadModule: "modesetting"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Module modesetting: vendor="X.Org Foundation"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011compiled for 1.20.11, module version = 1.20.11
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011Module class: X.Org Video Driver
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011ABI class: X.Org Video Driver, version 24.1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) LoadModule: "fbdev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Loading /usr/lib64/xorg/modules/drivers/fbdev_drv.so
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Module fbdev: vendor="X.Org Foundation"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011compiled for 1.20.11, module version = 0.5.0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011Module class: X.Org Video Driver
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011ABI class: X.Org Video Driver, version 24.1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) LoadModule: "vesa"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (WW) Warning, couldn't open module vesa
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) FBDEV: driver for framebuffer: fbdev
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): using drv /dev/dri/card0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) modeset(0): RGB weight 888
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) modeset(0): Default visual is TrueColor
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Loading sub module "glamoregl"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) LoadModule: "glamoregl"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Loading /usr/lib64/xorg/modules/libglamoregl.so
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Module glamoregl: vendor="X.Org Foundation"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011compiled for 1.20.11, module version = 1.0.1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011ABI class: X.Org ANSI C Emulation, version 0.4
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: pci id for fd 12: 102b:0522, driver (null)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: MESA-LOADER: failed to open mgag200: /usr/lib64/dri/mgag200_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib64/dri, suffix _dri)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: failed to load driver: mgag200
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: pci id for fd 13: 102b:0522, driver (null)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: kmsro: driver missing
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Refusing to try glamor on llvmpipe
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (EE) modeset(0): glamor initialization failed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): ShadowFB: preferred NO, enabled NO
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Output VGA-1 using monitor section My monitor
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:13 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:13 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:13 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:13 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:13 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:13 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:13 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:13 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:13 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:13 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:13 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:13 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:13 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:13 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:13 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:13 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:13 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:13 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Now returning 11 at 0
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:43:13 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:43:13 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning 3 at 12
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:43:13 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:43:13 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:43:13 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:43:13 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Now returning 11 at 0
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:43:13 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning 3 at 12
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:43:13 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID for output VGA-1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Manufacturer: GSM  Model: 597c  Serial#: 293078
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Year: 2013  Week: 1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID Version: 1.3
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Sync:  Separate  Composite
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Max Image Size [cm]: horiz.: 48  vert.: 27
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Gamma: 2.20
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): First detailed timing is preferred mode
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): redX: 0.637 redY: 0.331   greenX: 0.309 greenY: 0.620
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): blueX: 0.152 blueY: 0.069   whiteX: 0.313 whiteY: 0.329
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Supported established timings:
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 720x400@70Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 640x480@60Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 640x480@75Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 800x600@56Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 800x600@60Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 800x600@75Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 832x624@75Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 1024x768@60Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 1024x768@75Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 1280x1024@75Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): 1152x864@75Hz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Manufacturer's mask: 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Supported standard timings:
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #1: hsize: 1280  vsize 720  refresh: 60  vid: 49281
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #2: hsize: 1280  vsize 800  refresh: 60  vid: 129
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #4: hsize: 1440  vsize 900  refresh: 60  vid: 149
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:13 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:13 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:13 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:13 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:13 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:13 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:13 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:13 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:13 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:13 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:13 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:13 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:13 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:13 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:13 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:13 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:13 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:13 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Now returning 11 at 0
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:43:13 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:43:13 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning 3 at 12
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:43:13 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:43:13 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:43:13 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:43:13 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Now returning 11 at 0
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:43:13 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning 3 at 12
Jul 28 10:43:13 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:43:13 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: Now returning -2 at 2
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #5: hsize: 1400  vsize 1050  refresh: 60  vid: 16528
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #6: hsize: 1600  vsize 900  refresh: 60  vid: 49321
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #7: hsize: 1680  vsize 1050  refresh: 60  vid: 179
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Supported detailed timing:
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): clock: 148.5 MHz   Image Size:  480 x 270 mm
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Monitor name: 22EN33
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Serial No: 301NDSK8M078
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID (in hex):
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #01100ffffffffffff001e6d7c59d6780400
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #011011701036c301b78ea3335a3544f9e27
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #011115054a76b80714f81c0810081809500
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #0119040a9c0b300023a801871382d40582c
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #0114500e00e1100001e000000fd00384b1e
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #011530f000a202020202020000000fc0032
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #01132454e33330a202020202020000000ff
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): #011003330314e44534b384d3037380a00b3
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Printing probed modes for output VGA-1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz UP)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x720"x60.0   74.44  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.7 kHz)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Output VGA-1 connected
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using user preference for initial modes
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Output VGA-1 using initial mode 1440x900 +0+0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) modeset(0): DPI set to (96, 96)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Loading sub module "fb"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) LoadModule: "fb"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Module "fb" already built-in
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) UnloadModule: "fbdev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Unloading fbdev
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) modeset(0): Backing store enabled
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) modeset(0): Silken mouse enabled
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (==) modeset(0): DPMS enabled
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension Generic Event Extension
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension SHAPE
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension MIT-SHM
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XInputExtension
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XTEST
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension BIG-REQUESTS
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension SYNC
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XKEYBOARD
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XC-MISC
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension SECURITY
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XFIXES
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension RENDER
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension RANDR
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension COMPOSITE
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension DAMAGE
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension MIT-SCREEN-SAVER
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension DOUBLE-BUFFER
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension RECORD
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension DPMS
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension Present
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension DRI3
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension X-Resource
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XVideo
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XVideo-MotionCompensation
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension SELinux
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) SELinux: Disabled by boolean
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension GLX
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) AIGLX: Screen 0 is not DRI2 capable
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) IGLX: Loaded and initialized swrast
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) GLX: Initialized DRISWRAST GL provider for screen 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XFree86-VidModeExtension
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension XFree86-DGA
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Initializing extension DRI2
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Damage tracking initialized
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Setting screen physical size to 381 x 238
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device Power Button (/dev/input/event1)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Power Button: Applying InputClass "system-keyboard"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) LoadModule: "libinput"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Loading /usr/lib64/xorg/modules/input/libinput_drv.so
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Module libinput: vendor="X.Org Foundation"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011compiled for 1.20.11, module version = 1.0.1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011Module class: X.Org XInput Driver
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: #011ABI class: X.Org XInput driver, version 24.1
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Using input driver 'libinput' for 'Power Button'
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 20 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Power Button: always reports core events
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "Device" "/dev/input/event1"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "_source" "server/udev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event1  - Power Button: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event1  - Power Button: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event1  - Power Button: device removed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "xkb_layout" "gb"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event1  - Power Button: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event1  - Power Button: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Sleep Button: Applying InputClass "system-keyboard"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Using input driver 'libinput' for 'Sleep Button'
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 23 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Sleep Button: always reports core events
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "Device" "/dev/input/event0"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "_source" "server/udev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event0  - Sleep Button: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event0  - Sleep Button: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event0  - Sleep Button: device removed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 7)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "xkb_layout" "gb"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event0  - Sleep Button: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event0  - Sleep Button: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/event3)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "evdev keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "libinput keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "system-keyboard"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Using input driver 'libinput' for 'American Megatrends Inc. Virtual Keyboard and Mouse'
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 24 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: always reports core events
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "Device" "/dev/input/event3"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "_source" "server/udev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device removed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.0/0003:046B:FF10.0002/input/input3/event3"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) XINPUT: Adding extended input device "American Megatrends Inc. Virtual Keyboard and Mouse" (type: KEYBOARD, id 8)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "xkb_layout" "gb"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/event4)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "evdev pointer catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "libinput pointer catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Using input driver 'libinput' for 'American Megatrends Inc. Virtual Keyboard and Mouse'
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 25 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: always reports core events
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "Device" "/dev/input/event4"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "_source" "server/udev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Mouse
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a pointer
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device removed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.1/0003:046B:FF10.0003/input/input4/event4"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) XINPUT: Adding extended input device "American Megatrends Inc. Virtual Keyboard and Mouse" (type: MOUSE, id 9)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "AccelerationScheme" "none"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) selected scheme none/0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) acceleration factor: 2.000
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) acceleration threshold: 4
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Mouse
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a pointer
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/mouse1)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) No input driver specified, ignoring this device.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) This device may have been added with another device file.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event2)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Optical Mouse: Applying InputClass "libinput pointer catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Using input driver 'libinput' for 'Logitech USB Optical Mouse'
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 26 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Optical Mouse: always reports core events
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "Device" "/dev/input/event2"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "_source" "server/udev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event2  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event2  - Logitech USB Optical Mouse: device set to 1000 DPI
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event2  - Logitech USB Optical Mouse: device is a pointer
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event2  - Logitech USB Optical Mouse: device removed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/0003:046D:C05A.0001/input/input2/event2"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 10)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "AccelerationScheme" "none"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Optical Mouse: (accel) selected scheme none/0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event2  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event2  - Logitech USB Optical Mouse: device set to 1000 DPI
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event2  - Logitech USB Optical Mouse: device is a pointer
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) No input driver specified, ignoring this device.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) This device may have been added with another device file.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device Logitech USB Keyboard (/dev/input/event5)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard: Applying InputClass "evdev keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard: Applying InputClass "libinput keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard: Applying InputClass "system-keyboard"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard'
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 27 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard: always reports core events
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "Device" "/dev/input/event5"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "_source" "server/udev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event5  - Logitech USB Keyboard: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event5  - Logitech USB Keyboard: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event5  - Logitech USB Keyboard: device removed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/0003:046D:C31C.0004/input/input5/event5"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard" (type: KEYBOARD, id 11)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "xkb_layout" "gb"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event5  - Logitech USB Keyboard: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event5  - Logitech USB Keyboard: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device Logitech USB Keyboard Consumer Control (/dev/input/event6)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "evdev keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard Consumer Control'
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 28 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard Consumer Control: always reports core events
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "Device" "/dev/input/event6"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "_source" "server/udev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event6  - Logitech USB Keyboard Consumer Control: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event6  - Logitech USB Keyboard Consumer Control: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event6  - Logitech USB Keyboard Consumer Control: device removed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input6/event6"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard Consumer Control" (type: KEYBOARD, id 12)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "xkb_layout" "gb"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event6  - Logitech USB Keyboard Consumer Control: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event6  - Logitech USB Keyboard Consumer Control: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device Logitech USB Keyboard System Control (/dev/input/event7)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard System Control: Applying InputClass "evdev keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard System Control: Applying InputClass "libinput keyboard catchall"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard System Control: Applying InputClass "system-keyboard"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard System Control'
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 29 paused 0
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Logitech USB Keyboard System Control: always reports core events
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "Device" "/dev/input/event7"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "_source" "server/udev"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event7  - Logitech USB Keyboard System Control: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event7  - Logitech USB Keyboard System Control: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event7  - Logitech USB Keyboard System Control: device removed
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input7/event7"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard System Control" (type: KEYBOARD, id 13)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (**) Option "xkb_layout" "gb"
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event7  - Logitech USB Keyboard System Control: is tagged by udev as: Keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) event7  - Logitech USB Keyboard System Control: device is a keyboard
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) No input driver specified, ignoring this device.
Jul 28 10:43:13 revelation /usr/libexec/gdm-x-session[2374]: (II) This device may have been added with another device file.
Jul 28 10:43:13 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:13 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:43:13 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:13 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:13 revelation systemd[1557]: Starting D-Bus User Message Bus...
Jul 28 10:43:13 revelation dbus-broker-launch[2473]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jul 28 10:43:13 revelation dbus-broker-launch[2473]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jul 28 10:43:13 revelation dbus-broker-launch[2473]: Service file '/usr/share//dbus-1/services/sealert.service' is not named after the D-Bus name 'org.fedoraproject.Setroubleshootd'.
Jul 28 10:43:13 revelation systemd[1557]: Started D-Bus User Message Bus.
Jul 28 10:43:13 revelation journal[2473]: Ready
Jul 28 10:43:14 revelation systemd[1557]: Starting Accessibility services bus...
Jul 28 10:43:14 revelation systemd[1557]: Started Accessibility services bus.
Jul 28 10:43:14 revelation at-spi-bus-launcher[2582]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
Jul 28 10:43:14 revelation at-spi-bus-launcher[2582]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
Jul 28 10:43:14 revelation journal[2582]: Ready
Jul 28 10:43:14 revelation gnome-session[2576]: gnome-session-check-accelerated: GL Helper exited with code 512
Jul 28 10:43:14 revelation gnome-session[2634]: libEGL warning: DRI2: failed to authenticate
Jul 28 10:43:14 revelation gnome-session[2576]: gnome-session-check-accelerated: GLES Helper exited with code 512
Jul 28 10:43:14 revelation systemd[1557]: Created slice Slice /app/gnome-session-manager.
Jul 28 10:43:14 revelation systemd[1557]: Created slice User Core Session Slice.
Jul 28 10:43:14 revelation systemd[1557]: Reached target GNOME X11 Session.
Jul 28 10:43:14 revelation systemd[1557]: Reached target GNOME Shell.
Jul 28 10:43:14 revelation systemd[1557]: GNOME Initial Setup Copy Worker was skipped because of an unmet condition check (ConditionPathExists=!/home/rfs/.config/gnome-initial-setup-done).
Jul 28 10:43:14 revelation systemd[1557]: Reached target Session services which should run early before the graphical session is brought up.
Jul 28 10:43:14 revelation systemd[1557]: Starting Monitor Session leader for GNOME Session...
Jul 28 10:43:14 revelation systemd[1557]: Started Monitor Session leader for GNOME Session.
Jul 28 10:43:14 revelation systemd[1557]: Reached target Tasks to be run before GNOME Session starts.
Jul 28 10:43:14 revelation systemd[1557]: Starting GNOME Session Manager (session: gnome)...
Jul 28 10:43:14 revelation gnome-session[2689]: gnome-session-binary[2689]: WARNING: Could not parse desktop file ignore-lid-switch-tweak.desktop or it references a not found TryExec binary
Jul 28 10:43:14 revelation gnome-session-binary[2689]: WARNING: Could not parse desktop file ignore-lid-switch-tweak.desktop or it references a not found TryExec binary
Jul 28 10:43:14 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:14 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:14 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:14 revelation gnome-keyring-ssh.desktop[2700]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Jul 28 10:43:14 revelation systemd[1557]: Started GNOME Session Manager (session: gnome).
Jul 28 10:43:14 revelation systemd[1557]: Reached target GNOME Session Manager is ready.
Jul 28 10:43:14 revelation systemd[1557]: Starting GNOME Shell on Wayland...
Jul 28 10:43:14 revelation systemd[1557]: Starting GNOME Shell on X11...
Jul 28 10:43:14 revelation systemd[1557]: org.gnome.Shell@wayland.service: Skipped due to 'exec-condition'.
Jul 28 10:43:14 revelation systemd[1557]: Condition check resulted in GNOME Shell on Wayland being skipped.
Jul 28 10:43:14 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:15 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:15 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:15 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:15 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:15 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:15 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:15 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:15 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:15 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:15 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:15 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:15 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:15 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:15 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:15 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:15 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:15 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:15 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Now returning 11 at 0
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:43:15 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:43:15 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning 3 at 12
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:43:15 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:43:15 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:43:15 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:43:15 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Now returning 11 at 0
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:43:15 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning 3 at 12
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:43:15 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using EDID range info for horizontal sync
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using EDID range info for vertical refresh
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:43:15 revelation systemd[1557]: Starting Virtual filesystem service...
Jul 28 10:43:15 revelation systemd[1557]: Started Virtual filesystem service.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:15 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:43:15 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:15 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:43:15 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:15 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:43:15 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:15 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:43:15 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:15 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:43:15 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:15 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:43:15 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:15 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:43:15 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:15 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:43:15 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:15 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:43:15 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:43:15 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Now returning 11 at 0
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:43:15 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:43:15 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning 3 at 12
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:43:15 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:43:15 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:43:15 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:43:15 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Now returning 11 at 0
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:43:15 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning 3 at 12
Jul 28 10:43:15 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:43:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:43:15 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:43:15 revelation kernel: Now returning -2 at 2
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using hsync ranges from config file
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using vrefresh ranges from config file
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 10:43:15 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:43:15 revelation journal[2706]: ATK Bridge is disabled but a11y has already been enabled.
Jul 28 10:43:15 revelation journal[2706]: Skipping parental controls support as it’s disabled
Jul 28 10:43:15 revelation journal[2706]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jul 28 10:43:15 revelation journal[2706]: Will monitor session 3
Jul 28 10:43:15 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.freedesktop.portal.IBus.
Jul 28 10:43:15 revelation systemd[1557]: Started dbus-:1.2-org.freedesktop.portal.IBus@0.service.
Jul 28 10:43:15 revelation systemd[1557]: Created slice Slice /app/dbus-:1.6-org.a11y.atspi.Registry.
Jul 28 10:43:15 revelation systemd[1557]: Started dbus-:1.6-org.a11y.atspi.Registry@0.service.
Jul 28 10:43:15 revelation at-spi2-registryd[2806]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul 28 10:43:15 revelation systemd[1557]: Starting sandboxed app permission store...
Jul 28 10:43:15 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.CalendarServer.
Jul 28 10:43:15 revelation systemd[1557]: Started dbus-:1.2-org.gnome.Shell.CalendarServer@0.service.
Jul 28 10:43:15 revelation systemd[1557]: Started sandboxed app permission store.
Jul 28 10:43:16 revelation systemd[1557]: Started PipeWire Multimedia Service.
Jul 28 10:43:16 revelation systemd[1557]: Started Multimedia Service Session Manager.
Jul 28 10:43:16 revelation systemd[1557]: Started PipeWire PulseAudio.
Jul 28 10:43:16 revelation journal[2706]: g_strsplit: assertion 'string != NULL' failed
Jul 28 10:43:16 revelation rtkit-daemon[1116]: Successfully made thread 2815 of process 2815 (/usr/bin/pipewire) owned by '1000' high priority at nice level -11.
Jul 28 10:43:16 revelation rtkit-daemon[1116]: Successfully made thread 2816 of process 2816 (/usr/bin/wireplumber) owned by '1000' high priority at nice level -11.
Jul 28 10:43:16 revelation rtkit-daemon[1116]: Successfully made thread 2817 of process 2817 (/usr/bin/pipewire-pulse) owned by '1000' high priority at nice level -11.
Jul 28 10:43:16 revelation rtkit-daemon[1116]: Successfully made thread 2828 of process 2816 (/usr/bin/wireplumber) owned by '1000' RT at priority 20.
Jul 28 10:43:16 revelation journal[2706]: Telepathy is not available, chat integration will be disabled.
Jul 28 10:43:16 revelation systemd[1557]: Starting Evolution source registry...
Jul 28 10:43:16 revelation rtkit-daemon[1116]: Successfully made thread 2829 of process 2815 (/usr/bin/pipewire) owned by '1000' RT at priority 20.
Jul 28 10:43:16 revelation journal[2816]: Failed to set scheduler settings: Operation not permitted
Jul 28 10:43:16 revelation rtkit-daemon[1116]: Successfully made thread 2833 of process 2817 (/usr/bin/pipewire-pulse) owned by '1000' RT at priority 20.
Jul 28 10:43:16 revelation systemd[1557]: Starting Virtual filesystem service - disk device monitor...
Jul 28 10:43:16 revelation systemd[1557]: Started Virtual filesystem service - disk device monitor.
Jul 28 10:43:16 revelation systemd[1557]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jul 28 10:43:16 revelation systemd[1557]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jul 28 10:43:16 revelation systemd[1557]: Starting Virtual filesystem service - digital camera monitor...
Jul 28 10:43:16 revelation systemd[1557]: Started Virtual filesystem service - digital camera monitor.
Jul 28 10:43:16 revelation systemd[1557]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jul 28 10:43:16 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.OnlineAccounts.
Jul 28 10:43:16 revelation systemd[1557]: Started dbus-:1.2-org.gnome.OnlineAccounts@0.service.
Jul 28 10:43:16 revelation pipewire-pulse[2832]: 536870912
Jul 28 10:43:16 revelation systemd[1557]: Started Evolution source registry.
Jul 28 10:43:16 revelation systemd[1557]: Starting Evolution calendar service...
Jul 28 10:43:16 revelation systemd[1557]: Started Evolution calendar service.
Jul 28 10:43:16 revelation systemd[1557]: Starting User preferences database...
Jul 28 10:43:16 revelation systemd[1557]: Starting Evolution address book service...
Jul 28 10:43:17 revelation systemd[1557]: Started User preferences database.
Jul 28 10:43:17 revelation systemd[1557]: Started Evolution address book service.
Jul 28 10:43:17 revelation journal[2874]: goa-daemon version 3.40.0 starting
Jul 28 10:43:17 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.Identity.
Jul 28 10:43:17 revelation systemd[1557]: Started dbus-:1.2-org.gnome.Identity@0.service.
Jul 28 10:43:17 revelation systemd[1557]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jul 28 10:43:17 revelation systemd[1]: Starting SSSD Kerberos Cache Manager...
Jul 28 10:43:17 revelation systemd[1]: Started SSSD Kerberos Cache Manager.
Jul 28 10:43:17 revelation sssd_kcm[2929]: Starting up
Jul 28 10:43:17 revelation journal[2913]: GoaKerberosIdentityManager: Using polling for change notification for credential cache type 'KCM'
Jul 28 10:43:17 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.Notifications.
Jul 28 10:43:17 revelation systemd[1557]: Started dbus-:1.2-org.gnome.Shell.Notifications@0.service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME Shell on X11.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME Session is initialized.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME session X11 services.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME Session (session: gnome).
Jul 28 10:43:18 revelation systemd[1557]: Starting Signal initialization done to GNOME Session Manager...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME accessibility service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME color management service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME date & time service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME maintenance of expirable data service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME keyboard configuration service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME keyboard shortcuts service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME power management service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME printer notifications service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME RFKill support service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME FreeDesktop screensaver service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME file sharing service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME smartcard service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME sound sample caching service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME USB protection service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME Wacom tablet support service...
Jul 28 10:43:18 revelation systemd[1557]: Starting GNOME XSettings service...
Jul 28 10:43:18 revelation gnome-session-binary[2689]: Entering running state
Jul 28 10:43:18 revelation systemd[1557]: Finished Signal initialization done to GNOME Session Manager.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME accessibility service.
Jul 28 10:43:18 revelation gnome-session[2689]: gnome-session-binary[2689]: GnomeDesktop-WARNING: Could not create transient scope for PID 2961: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2961 does not exist.
Jul 28 10:43:18 revelation gnome-session-binary[2689]: GnomeDesktop-WARNING: Could not create transient scope for PID 2961: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2961 does not exist.
Jul 28 10:43:18 revelation gnome-session[2689]: gnome-session-binary[2689]: GnomeDesktop-WARNING: Could not create transient scope for PID 2986: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2986 does not exist.
Jul 28 10:43:18 revelation gnome-session-binary[2689]: GnomeDesktop-WARNING: Could not create transient scope for PID 2986: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2986 does not exist.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME FreeDesktop screensaver service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME file sharing service.
Jul 28 10:43:18 revelation vmware-user.desktop[3024]: vmware-user: could not open /proc/fs/vmblock/dev
Jul 28 10:43:18 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME maintenance of expirable data service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME RFKill support service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME sound sample caching service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME date & time service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME USB protection service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME color management service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME keyboard configuration service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME power management service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME keyboard shortcuts service.
Jul 28 10:43:18 revelation journal[2706]: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME Wacom tablet support service.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME smartcard service.
Jul 28 10:43:18 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:18 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:18 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:18 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:18 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:18 revelation systemd[1557]: Started Application launched by gnome-session-binary.
Jul 28 10:43:18 revelation systemd[1557]: app-gnome-vmware\x2duser-3000.scope: Couldn't move process 3000 to requested cgroup '/user.slice/user-1000.slice/user@1000.service/app.slice/app-gnome-vmware\x2duser-3000.scope': No such process
Jul 28 10:43:18 revelation systemd[1557]: app-gnome-vmware\x2duser-3000.scope: Failed to add PIDs to scope's control group: No such process
Jul 28 10:43:18 revelation systemd[1557]: app-gnome-vmware\x2duser-3000.scope: Failed with result 'resources'.
Jul 28 10:43:18 revelation systemd[1557]: Failed to start Application launched by gnome-session-binary.
Jul 28 10:43:18 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.ScreenSaver.
Jul 28 10:43:18 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.Screencast.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME accessibility target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME color management target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME date & time target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME maintenance of expirable data target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME keyboard configuration target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME keyboard shortcuts target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME power management target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME RFKill support target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME FreeDesktop screensaver target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME file sharing target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME smartcard target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME sound sample caching target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME USB protection target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME Wacom tablet support target.
Jul 28 10:43:18 revelation systemd[1557]: Started dbus-:1.2-org.gnome.ScreenSaver@0.service.
Jul 28 10:43:18 revelation systemd[1557]: Started dbus-:1.2-org.gnome.Shell.Screencast@0.service.
Jul 28 10:43:18 revelation libcanberra-login-sound.desktop[2976]: Failed to play sound: File or data not found
Jul 28 10:43:18 revelation journal[2706]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jul 28 10:43:18 revelation journal[2988]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable
Jul 28 10:43:18 revelation journal[2965]: Failed to grab accelerator for keybinding settings:hibernate
Jul 28 10:43:18 revelation journal[2965]: Failed to grab accelerator for keybinding settings:playback-random
Jul 28 10:43:18 revelation journal[2965]: Failed to grab accelerator for keybinding settings:playback-repeat
Jul 28 10:43:18 revelation journal[2965]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jul 28 10:43:18 revelation gjs[3069]: libEGL warning: DRI2: failed to authenticate
Jul 28 10:43:18 revelation journal[2952]: failed to set screen _ICC_PROFILE: Failed to open file “/var/lib/gdm/.local/share/icc/edid-66b5c77ef7d21f8dc680fbd7761de738.icc”: Permission denied
Jul 28 10:43:18 revelation cupsd[1135]: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME printer notifications service.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME printer notifications target.
Jul 28 10:43:18 revelation systemd[1557]: Started GNOME XSettings service.
Jul 28 10:43:18 revelation systemd[1557]: GNOME session X11 services is inactive.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME XSettings target.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME Session.
Jul 28 10:43:18 revelation systemd[1557]: Reached target GNOME X11 Session (session: gnome).
Jul 28 10:43:18 revelation systemd[1557]: Reached target Current graphical user session.
Jul 28 10:43:18 revelation systemd[1557]: GNOME Initial Setup was skipped because of an unmet condition check (ConditionPathExists=!/home/rfs/.config/gnome-initial-setup-done).
Jul 28 10:43:19 revelation systemd[1]: Starting Firmware update daemon...
Jul 28 10:43:19 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.freedesktop.FileManager1.
Jul 28 10:43:19 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.Nautilus.
Jul 28 10:43:19 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.NautilusPreviewer.
Jul 28 10:43:19 revelation systemd[1557]: Started dbus-:1.2-org.freedesktop.FileManager1@0.service.
Jul 28 10:43:19 revelation systemd[1557]: Started dbus-:1.2-org.gnome.Nautilus@0.service.
Jul 28 10:43:19 revelation systemd[1557]: Started dbus-:1.2-org.gnome.NautilusPreviewer@0.service.
Jul 28 10:43:19 revelation journal[2706]: GNOME Shell started at Fri Jul 28 2023 10:43:17 GMT+0100 (British Summer Time)
Jul 28 10:43:19 revelation journal[2706]: Registering session with GDM
Jul 28 10:43:19 revelation journal[1956]: Connection to xwayland lost
Jul 28 10:43:19 revelation gdm-wayland-session[1940]: GLib: Source ID 2 was not found when attempting to remove it
Jul 28 10:43:19 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 10:43:19 revelation cupsd[1135]: REQUEST localhost - - "POST / HTTP/1.1" 200 151 Cancel-Subscription successful-ok
Jul 28 10:43:19 revelation gdm-launch-environment][1885]: GLib-GObject: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
Jul 28 10:43:19 revelation systemd-logind[1137]: Session c1 logged out. Waiting for processes to exit.
Jul 28 10:43:19 revelation journal[2952]: failed to connect to device: Failed to connect to missing device /org/freedesktop/ColorManager/devices/xrandr_LG_Electronics_22EN33_301NDSK8M078_gdm_42
Jul 28 10:43:19 revelation systemd[1]: session-c1.scope: Deactivated successfully.
Jul 28 10:43:19 revelation systemd[1]: session-c1.scope: Consumed 5.668s CPU time.
Jul 28 10:43:19 revelation systemd-logind[1137]: Removed session c1.
Jul 28 10:43:19 revelation gdm[1154]: Gdm: Child process -1940 was already dead.
Jul 28 10:43:20 revelation nautilus[3218]: Failed to register: Unable to acquire bus name 'org.gnome.Nautilus'
Jul 28 10:43:20 revelation systemd[1557]: dbus-:1.2-org.freedesktop.FileManager1@0.service: Main process exited, code=exited, status=1/FAILURE
Jul 28 10:43:20 revelation systemd[1557]: dbus-:1.2-org.freedesktop.FileManager1@0.service: Failed with result 'exit-code'.
Jul 28 10:43:20 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 10:43:20 revelation journal[3220]: JS ERROR: ReferenceError: WebKit2 is not defined#012vfunc_startup@resource:///org/gnome/NautilusPreviewer/js/ui/application.js:89:9#012main@resource:///org/gnome/NautilusPreviewer/js/ui/main.js:57:24#012run@resource:///org/gnome/gjs/modules/script/package.js:206:19#012@/usr/libexec/org.gnome.NautilusPreviewer:9:17
Jul 28 10:43:20 revelation fwupd[3209]: 09:43:20.634 FuEngine             failed to add device /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host5/target5:0:0/5:0:0:0/block/sr0: failed to open /dev/sr0: No medium found
Jul 28 10:43:20 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 10:43:21 revelation systemd[1]: Started Firmware update daemon.
Jul 28 10:43:21 revelation journal[2973]: plugin fwupd took 2.1 seconds to do setup
Jul 28 10:43:21 revelation journal[2973]: enabled plugins: appstream, fwupd, os-release, packagekit-refresh, flatpak, hardcoded-blocklist, hardcoded-popular, modalias, packagekit, rewrite-resource, provenance, systemd-updates, generic-updates, packagekit-refine-repos, provenance-license, icons
Jul 28 10:43:21 revelation journal[2973]: disabled plugins: dummy, fedora-langpacks, fedora-pkgdb-collections, repos
Jul 28 10:43:21 revelation systemd[1557]: Started Application launched by gsd-media-keys.
Jul 28 10:43:21 revelation systemd[1557]: Created slice Slice /app/org.gnome.Terminal.
Jul 28 10:43:21 revelation systemd[1557]: Starting GNOME Terminal Server...
Jul 28 10:43:21 revelation journal[2973]: failed to set proxy: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 10:43:21 revelation journal[2973]: failed to set proxies: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 10:43:21 revelation journal[2973]: Only 0 apps for recent list, hiding
Jul 28 10:43:21 revelation journal[2973]: failed to get featured apps: no apps to show
Jul 28 10:43:22 revelation systemd[1557]: Started GNOME Terminal Server.
Jul 28 10:43:22 revelation journal[2973]: Only 0 apps for popular list, hiding
Jul 28 10:43:22 revelation systemd[1557]: Started VTE child process 3362 launched by gnome-terminal-server process 3338.
Jul 28 10:43:22 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 10:43:26 revelation systemd[1557]: Started VTE child process 3503 launched by gnome-terminal-server process 3338.
Jul 28 10:43:26 revelation systemd[1557]: Started VTE child process 3528 launched by gnome-terminal-server process 3338.
Jul 28 10:43:29 revelation systemd[1]: Stopping User Manager for UID 42...
Jul 28 10:43:29 revelation systemd[1918]: Activating special unit Exit the Session...
Jul 28 10:43:29 revelation systemd[1918]: Stopped target Main User Target.
Jul 28 10:43:29 revelation systemd[1918]: Stopping PipeWire PulseAudio...
Jul 28 10:43:29 revelation systemd[1918]: Stopped PipeWire PulseAudio.
Jul 28 10:43:29 revelation systemd[1918]: Stopping PipeWire Multimedia Service...
Jul 28 10:43:29 revelation systemd[1918]: Stopped PipeWire Multimedia Service.
Jul 28 10:43:29 revelation systemd[1918]: Removed slice User Core Session Slice.
Jul 28 10:43:29 revelation systemd[1918]: Stopped target Basic System.
Jul 28 10:43:29 revelation systemd[1918]: Stopped target Paths.
Jul 28 10:43:29 revelation systemd[1918]: Stopped target Sockets.
Jul 28 10:43:29 revelation systemd[1918]: Stopped target Timers.
Jul 28 10:43:29 revelation systemd[1918]: Stopped Daily Cleanup of User's Temporary Directories.
Jul 28 10:43:29 revelation systemd[1918]: Closed PipeWire PulseAudio.
Jul 28 10:43:29 revelation systemd[1918]: Closed PipeWire Multimedia System Socket.
Jul 28 10:43:29 revelation dbus-broker[1944]: Dispatched 38 messages @ 26(±36)μs / message.
Jul 28 10:43:29 revelation systemd[1918]: Stopping D-Bus User Message Bus...
Jul 28 10:43:29 revelation systemd[1918]: Stopped D-Bus User Message Bus.
Jul 28 10:43:29 revelation systemd[1918]: Closed D-Bus User Message Bus Socket.
Jul 28 10:43:29 revelation systemd[1918]: Removed slice User Application Slice.
Jul 28 10:43:29 revelation systemd[1918]: Reached target Shutdown.
Jul 28 10:43:29 revelation systemd[1918]: Finished Exit the Session.
Jul 28 10:43:29 revelation systemd[1918]: Reached target Exit the Session.
Jul 28 10:43:29 revelation systemd[1]: user@42.service: Deactivated successfully.
Jul 28 10:43:29 revelation systemd[1]: Stopped User Manager for UID 42.
Jul 28 10:43:29 revelation systemd[1]: Stopping User Runtime Directory /run/user/42...
Jul 28 10:43:29 revelation systemd[1]: run-user-42.mount: Deactivated successfully.
Jul 28 10:43:29 revelation systemd[1]: user-runtime-dir@42.service: Deactivated successfully.
Jul 28 10:43:29 revelation systemd[1]: Stopped User Runtime Directory /run/user/42.
Jul 28 10:43:29 revelation systemd[1]: Removed slice User Slice of UID 42.
Jul 28 10:43:29 revelation systemd[1]: user-42.slice: Consumed 6.111s CPU time.
Jul 28 10:43:31 revelation gnome-shell[2706]: Window manager warning: WM_TRANSIENT_FOR window 0x2400243 for 0x2400263 window override-redirect is an override-redirect window and this is not correct according to the standard, so we'll fallback to the first non-override-redirect window 0x2400006.
Jul 28 10:43:31 revelation gnome-shell[2706]: Window manager warning: WM_TRANSIENT_FOR window 0x2400243 for 0x2400263 window override-redirect is an override-redirect window and this is not correct according to the standard, so we'll fallback to the first non-override-redirect window 0x2400006.
Jul 28 10:43:31 revelation gnome-shell[2706]: Window manager warning: WM_TRANSIENT_FOR window 0x2400243 for 0x2400263 window override-redirect is an override-redirect window and this is not correct according to the standard, so we'll fallback to the first non-override-redirect window 0x2400006.
Jul 28 10:43:31 revelation systemd[1557]: Started VTE child process 3687 launched by gnome-terminal-server process 3338.
Jul 28 10:43:32 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 10:43:36 revelation cupsd[1135]: Saving subscriptions.conf...
Jul 28 10:43:36 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 10:43:36 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 10:43:37 revelation su[3717]: (to root) rfs on pts/3
Jul 28 10:43:48 revelation systemd[1]: systemd-localed.service: Deactivated successfully.
Jul 28 10:43:48 revelation systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jul 28 10:44:06 revelation systemd[1]: realmd.service: Deactivated successfully.
Jul 28 10:44:17 revelation systemd[1557]: Starting Virtual filesystem metadata service...
Jul 28 10:44:17 revelation systemd[1557]: Started Virtual filesystem metadata service.
Jul 28 10:45:08 revelation systemd[1557]: Starting Mark boot as successful...
Jul 28 10:45:08 revelation grub2-set-bootflag[3865]: Error reading from /boot/grub2/grubenv: Invalid argument
Jul 28 10:45:08 revelation systemd[1557]: grub-boot-success.service: Main process exited, code=exited, status=1/FAILURE
Jul 28 10:45:08 revelation systemd[1557]: grub-boot-success.service: Failed with result 'exit-code'.
Jul 28 10:45:08 revelation systemd[1557]: Failed to start Mark boot as successful.
Jul 28 10:48:08 revelation systemd[1557]: Created slice User Background Tasks Slice.
Jul 28 10:48:08 revelation systemd[1557]: Starting Cleanup of User's Temporary Files and Directories...
Jul 28 10:48:08 revelation systemd[1557]: Finished Cleanup of User's Temporary Files and Directories.
Jul 28 10:48:26 revelation chronyd[1299]: chronyd exiting
Jul 28 10:48:26 revelation systemd[1]: Stopping NTP client/server...
Jul 28 10:48:26 revelation systemd[1]: chronyd.service: Deactivated successfully.
Jul 28 10:48:26 revelation systemd[1]: Stopped NTP client/server.
Jul 28 10:48:26 revelation systemd[1]: Starting NTP client/server...
Jul 28 10:48:26 revelation chronyd[3910]: chronyd version 4.3 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +NTS +SECHASH +IPV6 +DEBUG)
Jul 28 10:48:26 revelation chronyd[3910]: Frequency 30.765 +/- 0.397 ppm read from /var/lib/chrony/drift
Jul 28 10:48:26 revelation chronyd[3910]: Using right/UTC timezone to obtain leap second data
Jul 28 10:48:26 revelation chronyd[3910]: Loaded seccomp filter (level 2)
Jul 28 10:48:26 revelation systemd[1]: Started NTP client/server.
Jul 28 10:53:57 revelation systemd[1557]: Started Application launched by gnome-shell.
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using hsync ranges from config file
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:53:58 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:53:58 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:53:58 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:53:58 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:53:58 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:53:58 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:53:58 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:53:58 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:53:58 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:53:58 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:53:58 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:53:58 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:53:58 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:53:58 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:53:58 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:53:58 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:53:58 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:53:58 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:53:58 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Now returning 11 at 0
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:53:58 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Now returning -2 at 2
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:53:58 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Now returning 3 at 12
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:53:58 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Now returning -2 at 2
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:53:58 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Now returning -2 at 2
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:53:58 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Now returning -2 at 2
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:53:58 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Now returning -2 at 2
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Now returning 11 at 0
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:53:58 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Now returning 3 at 12
Jul 28 10:53:58 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:53:58 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:53:58 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:53:58 revelation kernel: Now returning -2 at 2
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using vrefresh ranges from config file
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 10:53:58 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Allocate new frame buffer 1280x720 stride
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74440 ...
Jul 28 10:54:10 revelation kernel: Returning 21588214 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f48263370' has no handler with id '20141'
Jul 28 10:54:10 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f48263700' has no handler with id '20689'
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using hsync ranges from config file
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using vrefresh ranges from config file
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:54:10 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:54:10 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:54:10 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:54:10 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:54:10 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:54:10 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:54:10 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:54:10 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:54:10 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:54:10 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:54:10 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:54:10 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:54:10 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:54:10 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:54:10 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:54:10 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:54:10 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:54:10 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Now returning 11 at 0
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:54:10 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:54:10 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning 3 at 12
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:54:10 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:54:10 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:54:10 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:54:10 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Now returning 11 at 0
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:54:10 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning 3 at 12
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:54:10 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using hsync ranges from config file
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using vrefresh ranges from config file
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 10:54:10 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:54:10 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:54:10 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:54:10 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:54:10 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:54:10 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:54:10 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:54:10 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:54:10 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:54:10 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:54:10 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:54:10 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:54:10 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:54:10 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:54:10 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:54:10 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:54:10 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:54:10 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:10 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:54:10 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Now returning 11 at 0
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:54:10 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:54:10 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning 3 at 12
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:54:10 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:54:10 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:54:10 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:54:10 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Now returning 11 at 0
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:54:10 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning 3 at 12
Jul 28 10:54:10 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:10 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:54:10 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:10 revelation kernel: Now returning -2 at 2
Jul 28 10:54:10 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f47e09410/panel which isn't a descendent of the stage!
Jul 28 10:54:10 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f47e09410/panel which isn't a descendent of the stage!
Jul 28 10:54:10 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f47e09410/panel which isn't a descendent of the stage!
Jul 28 10:54:10 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f46c6ae10/panel which isn't a descendent of the stage!
Jul 28 10:54:10 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f46c6ae10/panel which isn't a descendent of the stage!
Jul 28 10:54:10 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f46c6ae10/panel which isn't a descendent of the stage!
Jul 28 10:54:11 revelation journal[2706]: Can't update stage views actor MetaWindowGroup is on because it needs an allocation.
Jul 28 10:54:11 revelation journal[2706]: Can't update stage views actor MetaWindowActorX11 is on because it needs an allocation.
Jul 28 10:54:11 revelation journal[2706]: Can't update stage views actor MetaSurfaceActorX11 is on because it needs an allocation.
Jul 28 10:54:11 revelation journal[2706]: Can't update stage views actor MetaWindowActorX11 is on because it needs an allocation.
Jul 28 10:54:11 revelation journal[2706]: Can't update stage views actor MetaSurfaceActorX11 is on because it needs an allocation.
Jul 28 10:54:11 revelation journal[2706]: Can't update stage views actor MetaWindowActorX11 is on because it needs an allocation.
Jul 28 10:54:11 revelation journal[2706]: Can't update stage views actor MetaSurfaceActorX11 is on because it needs an allocation.
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f470d1480' has no handler with id '22579'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f470d1480' has no handler with id '19339'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f470d1480' has no handler with id '18505'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f470d1480' has no handler with id '18960'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f470d1480' has no handler with id '17927'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f470d1480' has no handler with id '12311'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f470d1480' has no handler with id '21825'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f470d1480' has no handler with id '26487'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x7f47b80fb9c0' has no handler with id '28772'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x7f47b80fb9c0' has no handler with id '29034'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x7f47b80fb9c0' has no handler with id '29298'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x7f47b80fb9c0' has no handler with id '29562'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x7f47b80fb9c0' has no handler with id '29826'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x7f47b80fb9c0' has no handler with id '30090'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x7f47b80fb9c0' has no handler with id '30354'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x7f47b80fb9c0' has no handler with id '30618'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08970' has no handler with id '32640'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08970' has no handler with id '32902'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08970' has no handler with id '33166'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08970' has no handler with id '33430'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08970' has no handler with id '33694'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08970' has no handler with id '33958'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08970' has no handler with id '34222'
Jul 28 10:54:15 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08970' has no handler with id '34486'
Jul 28 10:54:53 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Allocate new frame buffer 1440x900 stride
Jul 28 10:54:53 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:54:53 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:53 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using hsync ranges from config file
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using vrefresh ranges from config file
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:54:54 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:54:54 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:54:54 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:54:54 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:54:54 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:54:54 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:54:54 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:54:54 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:54:54 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:54:54 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:54:54 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:54:54 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:54:54 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:54:54 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:54:54 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:54:54 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:54:54 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:54:54 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Now returning 11 at 0
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:54:54 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:54:54 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning 3 at 12
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:54:54 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:54:54 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:54:54 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:54:54 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Now returning 11 at 0
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:54:54 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning 3 at 12
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:54:54 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:54 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f4abd3bd0/panel which isn't a descendent of the stage!
Jul 28 10:54:54 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f4abd3bd0/panel which isn't a descendent of the stage!
Jul 28 10:54:54 revelation journal[2706]: Spurious clutter_actor_allocate called for actor 0x556f4abd3bd0/panel which isn't a descendent of the stage!
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using hsync ranges from config file
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Using vrefresh ranges from config file
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 10:54:54 revelation /usr/libexec/gdm-x-session[2374]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:54:54 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 10:54:54 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:54:54 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 10:54:54 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:54:54 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 10:54:54 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:54:54 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 10:54:54 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:54:54 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 10:54:54 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:54:54 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 10:54:54 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:54:54 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 10:54:54 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:54:54 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 10:54:54 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:54:54 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Returning MODE_OK from mga_vga_mode_valid.
Jul 28 10:54:54 revelation kernel: Entering simple_display_pipe_mode_valid and calling bandwidth calc...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 10:54:54 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: ...and returning MODE_OK, i.e. 0.
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Now returning 11 at 0
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 10:54:54 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 10:54:54 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning 3 at 12
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 10:54:54 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 10:54:54 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 10:54:54 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 10:54:54 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Now returning 11 at 0
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 10:54:54 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning 3 at 12
Jul 28 10:54:54 revelation kernel: Entering mga_vga_mode_valid()...
Jul 28 10:54:54 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 10:54:54 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 10:54:54 revelation kernel: Now returning -2 at 2
Jul 28 10:54:54 revelation journal[2706]: Can't update stage views actor MetaWindowGroup is on because it needs an allocation.
Jul 28 10:54:54 revelation journal[2706]: Can't update stage views actor MetaWindowActorX11 is on because it needs an allocation.
Jul 28 10:54:54 revelation journal[2706]: Can't update stage views actor MetaSurfaceActorX11 is on because it needs an allocation.
Jul 28 10:54:54 revelation journal[2706]: Can't update stage views actor MetaWindowGroup is on because it needs an allocation.
Jul 28 10:54:54 revelation journal[2706]: Can't update stage views actor MetaWindowActorX11 is on because it needs an allocation.
Jul 28 10:54:54 revelation journal[2706]: Can't update stage views actor MetaSurfaceActorX11 is on because it needs an allocation.
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f481bf830' has no handler with id '37297'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f481bf830' has no handler with id '37561'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f481bf830' has no handler with id '37825'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f481bf830' has no handler with id '38089'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f481bf830' has no handler with id '36507'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f481bf830' has no handler with id '36769'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f481bf830' has no handler with id '37033'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f481bf830' has no handler with id '38353'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f4abeb0d0' has no handler with id '42114'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f4abeb0d0' has no handler with id '42376'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f4abeb0d0' has no handler with id '42640'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f4abeb0d0' has no handler with id '42904'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f4abeb0d0' has no handler with id '43168'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f4abeb0d0' has no handler with id '43432'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f4abeb0d0' has no handler with id '43696'
Jul 28 10:54:55 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f4abeb0d0' has no handler with id '43960'
Jul 28 10:54:59 revelation systemd[1557]: app-gnome-gnome\x2dcontrol\x2dcenter-4000.scope: Consumed 1.567s CPU time.
Jul 28 10:58:08 revelation systemd[1]: Starting Cleanup of Temporary Directories...
Jul 28 10:58:08 revelation systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
Jul 28 10:58:08 revelation systemd[1]: Finished Cleanup of Temporary Directories.
Jul 28 10:58:08 revelation systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dclean.service.mount: Deactivated successfully.
Jul 28 10:58:19 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:08:32 revelation systemd[1]: Starting Network Manager...
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.6389] NetworkManager (version 1.42.2-3.el9_2) is starting... (boot:164d809a-0fb3-4047-83d8-06e9b0178b6b)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.6392] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 00-server.conf) (run: 15-carrier-timeout.conf)
Jul 28 11:08:32 revelation systemd[1]: Started Network Manager.
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.6436] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jul 28 11:08:32 revelation systemd[1]: Reached target Network.
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.6599] manager[0x55a481f79080]: monitoring kernel firmware directory '/lib/firmware'.
Jul 28 11:08:32 revelation systemd[1]: Starting Hostname Service...
Jul 28 11:08:32 revelation systemd[1]: Started Hostname Service.
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7297] hostname: hostname: using hostnamed
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7297] hostname: static hostname changed from (none) to "revelation"
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7307] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink (auto)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7323] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1a.7/usb1/1-3/1-3:1.0/ieee80211/phy0/rfkill0) (driver rt2800usb)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7325] manager[0x55a481f79080]: rfkill: Wi-Fi hardware radio set enabled
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7325] manager[0x55a481f79080]: rfkill: WWAN hardware radio set enabled
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7565] Loaded device plugin: NMAtmManager (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-adsl.so)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7681] Loaded device plugin: NMBluezManager (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-bluetooth.so)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7833] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-team.so)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.7908] Loaded device plugin: NMWwanFactory (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-wwan.so)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8034] Loaded device plugin: NMWifiFactory (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-wifi.so)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8036] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8043] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8044] manager: Networking is enabled by state file
Jul 28 11:08:32 revelation dbus-broker-launch[1147]: Activation request for 'org.freedesktop.nm_dispatcher' failed: The systemd unit 'dbus-org.freedesktop.nm-dispatcher.service' could not be found.
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8103] settings: Loaded settings plugin: keyfile (internal)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8208] settings: Loaded settings plugin: ifcfg-rh ("/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-settings-plugin-ifcfg-rh.so")
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8378] dhcp: init: Using DHCP client 'internal'
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8380] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8393] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8398] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8406] device (lo): Activation: starting connection 'lo' (3d4f260d-f0b9-4392-a7cc-32952997365f)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8415] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jul 28 11:08:32 revelation NetworkManager[4270]: <info>  [1690538912.8418] device (eth0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul 28 11:08:33 revelation NetworkManager[4270]: <info>  [1690538913.0411] manager: (eth1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Jul 28 11:08:33 revelation NetworkManager[4270]: <info>  [1690538913.0414] device (eth1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul 28 11:08:33 revelation NetworkManager[4270]: <info>  [1690538913.2353] device (wlan0): driver supports Access Point (AP) mode
Jul 28 11:08:33 revelation NetworkManager[4270]: <info>  [1690538913.2360] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/4)
Jul 28 11:08:33 revelation NetworkManager[4270]: <info>  [1690538913.2363] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul 28 11:08:33 revelation kernel: ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin'
Jul 28 11:08:33 revelation kernel: ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.36
Jul 28 11:08:33 revelation NetworkManager[4270]: <info>  [1690538913.9859] device (wlan0): set-hw-addr: set MAC address to FA:9A:D2:E8:9B:02 (scanning)
Jul 28 11:08:34 revelation systemd[1]: Starting WPA supplicant...
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3016] modem-manager: ModemManager available
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3017] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3019] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3021] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3024] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3028] device (eth0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3031] device (eth1): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3034] policy: auto-activating connection 'eth0' (5aec2558-4872-4b18-b3cf-25a9ea3341de)
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3038] device (eth0): Activation: starting connection 'eth0' (5aec2558-4872-4b18-b3cf-25a9ea3341de)
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3039] device (eth0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3041] manager: NetworkManager state is now CONNECTING
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3042] device (eth0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3052] device (eth0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3055] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Jul 28 11:08:34 revelation systemd-resolved[1077]: eth0: Bus client set default route setting: no
Jul 28 11:08:34 revelation avahi-daemon[1101]: Joining mDNS multicast group on interface eth0.IPv4 with address 10.0.0.1.
Jul 28 11:08:34 revelation avahi-daemon[1101]: New relevant interface eth0.IPv4 for mDNS.
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3820] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Jul 28 11:08:34 revelation avahi-daemon[1101]: Registering new address record for 10.0.0.1 on eth0.IPv4.
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3826] device (lo): Activation: successful, device activated.
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.3833] agent-manager: agent[447378f706e6f64d,:1.63/org.gnome.Shell.NetworkAgent/1000]: agent registered
Jul 28 11:08:34 revelation avahi-daemon[1101]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::21e:67ff:fe08:e3f8.
Jul 28 11:08:34 revelation avahi-daemon[1101]: New relevant interface eth0.IPv6 for mDNS.
Jul 28 11:08:34 revelation avahi-daemon[1101]: Registering new address record for fe80::21e:67ff:fe08:e3f8 on eth0.*.
Jul 28 11:08:34 revelation systemd[1]: Started WPA supplicant.
Jul 28 11:08:34 revelation wpa_supplicant[4289]: Successfully initialized wpa_supplicant
Jul 28 11:08:34 revelation wpa_supplicant[4289]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.4633] device (wlan0): supplicant interface state: internal-starting -> disconnected
Jul 28 11:08:34 revelation NetworkManager[4270]: <info>  [1690538914.4634] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jul 28 11:08:35 revelation NetworkManager[4270]: <info>  [1690538915.5723] policy: auto-activating connection 'VodafoneConnect54654996_EXT' (d54e4b0c-612b-4a5e-a528-a4000a0b4ed3)
Jul 28 11:08:35 revelation NetworkManager[4270]: <info>  [1690538915.5727] device (wlan0): Activation: starting connection 'VodafoneConnect54654996_EXT' (d54e4b0c-612b-4a5e-a528-a4000a0b4ed3)
Jul 28 11:08:35 revelation NetworkManager[4270]: <info>  [1690538915.5728] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.0740] device (wlan0): set-hw-addr: reset MAC address to B0:48:7A:94:9A:1D (preserve)
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3784] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3786] device (wlan0): Activation: (wifi) access point 'VodafoneConnect54654996_EXT' has security, but secrets are required.
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3787] device (wlan0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3790] device (wlan0): supplicant interface state: disconnected -> interface_disabled
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3797] device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3799] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3801] device (wlan0): Activation: (wifi) connection 'VodafoneConnect54654996_EXT' has security, and secrets exist.  No new secrets needed.
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3802] Config: added 'ssid' value 'VodafoneConnect54654996_EXT'
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3802] Config: added 'scan_ssid' value '1'
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3802] Config: added 'bgscan' value 'simple:30:-70:86400'
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3802] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 SAE'
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3802] Config: added 'psk' value '<hidden>'
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3829] device (eth0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3847] device (eth0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3849] device (eth0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3854] device (eth0): Activation: successful, device activated.
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.3860] device (wlan0): supplicant interface state: interface_disabled -> inactive
Jul 28 11:08:36 revelation wpa_supplicant[4289]: wlan0: SME: Trying to authenticate with c0:c9:e3:d8:e3:e2 (SSID='VodafoneConnect54654996_EXT' freq=2427 MHz)
Jul 28 11:08:36 revelation kernel: wlan0: authenticate with c0:c9:e3:d8:e3:e2
Jul 28 11:08:36 revelation kernel: wlan0: 80 MHz not supported, disabling VHT
Jul 28 11:08:36 revelation NetworkManager[4270]: <info>  [1690538916.4754] device (wlan0): supplicant interface state: inactive -> authenticating
Jul 28 11:08:36 revelation kernel: wlan0: send auth to c0:c9:e3:d8:e3:e2 (try 1/3)
Jul 28 11:08:37 revelation kernel: wlan0: send auth to c0:c9:e3:d8:e3:e2 (try 2/3)
Jul 28 11:08:37 revelation wpa_supplicant[4289]: wlan0: Trying to associate with c0:c9:e3:d8:e3:e2 (SSID='VodafoneConnect54654996_EXT' freq=2427 MHz)
Jul 28 11:08:37 revelation kernel: wlan0: authenticated
Jul 28 11:08:37 revelation kernel: wlan0: associate with c0:c9:e3:d8:e3:e2 (try 1/3)
Jul 28 11:08:37 revelation NetworkManager[4270]: <info>  [1690538917.6290] device (wlan0): supplicant interface state: authenticating -> associating
Jul 28 11:08:37 revelation kernel: wlan0: RX AssocResp from c0:c9:e3:d8:e3:e2 (capab=0x1411 status=0 aid=2)
Jul 28 11:08:37 revelation wpa_supplicant[4289]: RRM: Ignoring radio measurement request: Not associated
Jul 28 11:08:37 revelation wpa_supplicant[4289]: wlan0: Associated with c0:c9:e3:d8:e3:e2
Jul 28 11:08:37 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jul 28 11:08:37 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=COUNTRY_IE type=COUNTRY alpha2=DE
Jul 28 11:08:37 revelation kernel: wlan0: associated
Jul 28 11:08:37 revelation NetworkManager[4270]: <info>  [1690538917.6540] device (wlan0): supplicant interface state: associating -> associated
Jul 28 11:08:37 revelation systemd[1]: Reached target Network is Online.
Jul 28 11:08:37 revelation systemd[1]: Starting DHCPv4 Server Daemon...
Jul 28 11:08:37 revelation NetworkManager[4270]: <info>  [1690538917.6954] device (wlan0): supplicant interface state: associated -> 4way_handshake
Jul 28 11:08:37 revelation dhcpd[4376]: Internet Systems Consortium DHCP Server 4.4.2b1
Jul 28 11:08:37 revelation dhcpd[4376]: Copyright 2004-2019 Internet Systems Consortium.
Jul 28 11:08:37 revelation dhcpd[4376]: All rights reserved.
Jul 28 11:08:37 revelation dhcpd[4376]: For info, please visit https://www.isc.org/software/dhcp/
Jul 28 11:08:37 revelation dhcpd[4376]: ldap_gssapi_principal is not set,GSSAPI Authentication for LDAP will not be used
Jul 28 11:08:37 revelation dhcpd[4376]: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
Jul 28 11:08:37 revelation dhcpd[4376]: Config file: /etc/dhcp/dhcpd.conf
Jul 28 11:08:37 revelation dhcpd[4376]: Database file: /var/lib/dhcpd/dhcpd.leases
Jul 28 11:08:37 revelation dhcpd[4376]: PID file: /var/run/dhcpd.pid
Jul 28 11:08:37 revelation dhcpd[4376]: Source compiled to use binary-leases
Jul 28 11:08:37 revelation dhcpd[4376]: Wrote 0 deleted host decls to leases file.
Jul 28 11:08:37 revelation dhcpd[4376]: Wrote 0 new dynamic host decls to leases file.
Jul 28 11:08:37 revelation dhcpd[4376]: Wrote 1 leases to leases file.
Jul 28 11:08:37 revelation wpa_supplicant[4289]: wlan0: WPA: Key negotiation completed with c0:c9:e3:d8:e3:e2 [PTK=CCMP GTK=TKIP]
Jul 28 11:08:37 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-CONNECTED - Connection to c0:c9:e3:d8:e3:e2 completed [id=0 id_str=]
Jul 28 11:08:37 revelation kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Jul 28 11:08:37 revelation NetworkManager[4270]: <info>  [1690538917.7354] device (wlan0): supplicant interface state: 4way_handshake -> completed
Jul 28 11:08:37 revelation NetworkManager[4270]: <info>  [1690538917.7355] device (wlan0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "VodafoneConnect54654996_EXT"
Jul 28 11:08:37 revelation NetworkManager[4270]: <info>  [1690538917.7356] device (wlan0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:37 revelation NetworkManager[4270]: <info>  [1690538917.7360] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Jul 28 11:08:37 revelation avahi-daemon[1101]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::8cb8:bd87:f456:1cae.
Jul 28 11:08:37 revelation avahi-daemon[1101]: New relevant interface wlan0.IPv6 for mDNS.
Jul 28 11:08:37 revelation avahi-daemon[1101]: Registering new address record for fe80::8cb8:bd87:f456:1cae on wlan0.*.
Jul 28 11:08:37 revelation dhcpd[4376]: 
Jul 28 11:08:37 revelation dhcpd[4376]: No subnet declaration for wlan0 (no IPv4 addresses).
Jul 28 11:08:37 revelation dhcpd[4376]: ** Ignoring requests on wlan0.  If this is not what
Jul 28 11:08:37 revelation dhcpd[4376]:   you want, please write a subnet declaration
Jul 28 11:08:37 revelation dhcpd[4376]:   in your dhcpd.conf file for the network segment
Jul 28 11:08:37 revelation dhcpd[4376]:   to which interface wlan0 is attached. **
Jul 28 11:08:37 revelation dhcpd[4376]: 
Jul 28 11:08:37 revelation dhcpd[4376]: 
Jul 28 11:08:37 revelation dhcpd[4376]: No subnet declaration for eth1 (no IPv4 addresses).
Jul 28 11:08:37 revelation dhcpd[4376]: ** Ignoring requests on eth1.  If this is not what
Jul 28 11:08:37 revelation dhcpd[4376]:   you want, please write a subnet declaration
Jul 28 11:08:37 revelation dhcpd[4376]:   in your dhcpd.conf file for the network segment
Jul 28 11:08:37 revelation dhcpd[4376]:   to which interface eth1 is attached. **
Jul 28 11:08:37 revelation dhcpd[4376]: 
Jul 28 11:08:37 revelation dhcpd[4376]: Listening on LPF/eth0/00:1e:67:08:e3:f8/10.0.0.0/24
Jul 28 11:08:37 revelation dhcpd[4376]: Sending on   LPF/eth0/00:1e:67:08:e3:f8/10.0.0.0/24
Jul 28 11:08:37 revelation dhcpd[4376]: Sending on   Socket/fallback/fallback-net
Jul 28 11:08:37 revelation dhcpd[4376]: Server starting service.
Jul 28 11:08:37 revelation systemd[1]: Started DHCPv4 Server Daemon.
Jul 28 11:08:38 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-59 noise=9999 txrate=6500
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.8790] dhcp4 (wlan0): state changed new lease, address=192.168.1.12
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.8795] policy: set 'VodafoneConnect54654996_EXT' (wlan0) as default for IPv4 routing and DNS
Jul 28 11:08:41 revelation systemd-resolved[1077]: wlan0: Bus client set search domain list to: broadband
Jul 28 11:08:41 revelation systemd-resolved[1077]: wlan0: Bus client set default route setting: yes
Jul 28 11:08:41 revelation systemd-resolved[1077]: wlan0: Bus client set DNS server list to: 192.168.1.254
Jul 28 11:08:41 revelation avahi-daemon[1101]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.12.
Jul 28 11:08:41 revelation avahi-daemon[1101]: New relevant interface wlan0.IPv4 for mDNS.
Jul 28 11:08:41 revelation avahi-daemon[1101]: Registering new address record for 192.168.1.12 on wlan0.IPv4.
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.9819] device (wlan0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.9834] device (wlan0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.9835] device (wlan0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.9838] manager: NetworkManager state is now CONNECTED_SITE
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.9843] device (wlan0): Activation: successful, device activated.
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.9846] manager: NetworkManager state is now CONNECTED_GLOBAL
Jul 28 11:08:41 revelation NetworkManager[4270]: <info>  [1690538921.9849] manager: startup complete
Jul 28 11:08:43 revelation systemd-resolved[1077]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.1.254.
Jul 28 11:08:43 revelation systemd-resolved[1077]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.1.254.
Jul 28 11:08:43 revelation NetworkManager[4270]: <info>  [1690538923.7370] dhcp6 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Jul 28 11:08:43 revelation systemd-resolved[1077]: wlan0: Bus client set DNS server list to: 192.168.1.254, fd52:a81c:df85:1:aaf5:acff:fed8:47ad
Jul 28 11:08:43 revelation avahi-daemon[1101]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::8cb8:bd87:f456:1cae.
Jul 28 11:08:43 revelation NetworkManager[4270]: <info>  [1690538923.7735] dhcp6 (wlan0): state changed new lease
Jul 28 11:08:43 revelation avahi-daemon[1101]: Joining mDNS multicast group on interface wlan0.IPv6 with address fd52:a81c:df85:1:eccc:c86e:1392:4d9a.
Jul 28 11:08:43 revelation avahi-daemon[1101]: Registering new address record for fd52:a81c:df85:1:eccc:c86e:1392:4d9a on wlan0.*.
Jul 28 11:08:43 revelation avahi-daemon[1101]: Withdrawing address record for fe80::8cb8:bd87:f456:1cae on wlan0.
Jul 28 11:09:02 revelation systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jul 28 11:09:40 revelation kernel: loop: module loaded
Jul 28 11:09:40 revelation kernel: loop0: detected capacity change from 0 to 160882981
Jul 28 11:09:40 revelation systemd[1]: Starting Hostname Service...
Jul 28 11:09:41 revelation systemd[1]: Started Hostname Service.
Jul 28 11:09:41 revelation kernel: EXT4-fs (dm-4): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 11:09:41 revelation systemd[1557]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.HotplugSniffer.
Jul 28 11:09:41 revelation systemd[1557]: Started dbus-:1.2-org.gnome.Shell.HotplugSniffer@0.service.
Jul 28 11:09:45 revelation systemd-resolved[1077]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.1.254.
Jul 28 11:09:52 revelation systemd[1]: Stopping Network Manager...
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2514] caught SIGTERM, shutting down normally.
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2530] device (wlan0): state change: activated -> deactivating (reason 'unmanaged', sys-iface-state: 'managed')
Jul 28 11:09:52 revelation journal[2706]: Removing a network device that was not added
Jul 28 11:09:52 revelation NetworkManager[4270]: <warn>  [1690538992.2548] dispatcher: (13) failed (after 0.002 sec): Could not activate remote peer.
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2549] manager: NetworkManager state is now CONNECTED_LOCAL
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2551] device (wlan0): state change: deactivating -> unmanaged (reason 'removed', sys-iface-state: 'managed')
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2699] dhcp4 (wlan0): canceled DHCP transaction
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2699] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2699] dhcp4 (wlan0): state changed no lease
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2701] dhcp6 (wlan0): canceled DHCP transaction
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2701] dhcp6 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.2701] dhcp6 (wlan0): state changed no lease
Jul 28 11:09:52 revelation kernel: wlan0: deauthenticating from c0:c9:e3:d8:e3:e2 by local choice (Reason: 3=DEAUTH_LEAVING)
Jul 28 11:09:52 revelation journal[2706]: An active wireless connection, in infrastructure mode, involves no access point?
Jul 28 11:09:52 revelation systemd-resolved[1077]: wlan0: Bus client reset search domain list.
Jul 28 11:09:52 revelation systemd-resolved[1077]: wlan0: Bus client set default route setting: no
Jul 28 11:09:52 revelation systemd-resolved[1077]: wlan0: Bus client reset DNS server list.
Jul 28 11:09:52 revelation avahi-daemon[1101]: Withdrawing address record for 192.168.1.12 on wlan0.
Jul 28 11:09:52 revelation avahi-daemon[1101]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.12.
Jul 28 11:09:52 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-DISCONNECTED bssid=c0:c9:e3:d8:e3:e2 reason=3 locally_generated=1
Jul 28 11:09:52 revelation avahi-daemon[1101]: Interface wlan0.IPv4 no longer relevant for mDNS.
Jul 28 11:09:52 revelation avahi-daemon[1101]: Withdrawing address record for fd52:a81c:df85:1:eccc:c86e:1392:4d9a on wlan0.
Jul 28 11:09:52 revelation avahi-daemon[1101]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fd52:a81c:df85:1:eccc:c86e:1392:4d9a.
Jul 28 11:09:52 revelation avahi-daemon[1101]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::8cb8:bd87:f456:1cae.
Jul 28 11:09:52 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 28 11:09:52 revelation avahi-daemon[1101]: Registering new address record for fe80::8cb8:bd87:f456:1cae on wlan0.*.
Jul 28 11:09:52 revelation avahi-daemon[1101]: Withdrawing address record for fe80::8cb8:bd87:f456:1cae on wlan0.
Jul 28 11:09:52 revelation avahi-daemon[1101]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::8cb8:bd87:f456:1cae.
Jul 28 11:09:52 revelation avahi-daemon[1101]: Interface wlan0.IPv6 no longer relevant for mDNS.
Jul 28 11:09:52 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
Jul 28 11:09:52 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=GB
Jul 28 11:09:52 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 28 11:09:52 revelation wpa_supplicant[4289]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 28 11:09:52 revelation wpa_supplicant[4289]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Jul 28 11:09:52 revelation NetworkManager[4270]: <info>  [1690538992.9186] exiting (success)
Jul 28 11:09:52 revelation systemd[1]: NetworkManager.service: Deactivated successfully.
Jul 28 11:09:52 revelation systemd[1]: Stopped Network Manager.
Jul 28 11:09:57 revelation systemd[1557]: Started Application launched by gsd-media-keys.
Jul 28 11:09:57 revelation systemd[1557]: Started VTE child process 4534 launched by gnome-terminal-server process 3338.
Jul 28 11:10:11 revelation systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jul 28 11:12:56 revelation dbus-broker-launch[1330]: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 11:13:06 revelation dbus-broker-launch[2475]: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 11:13:22 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 11:13:23 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 11:13:23 revelation systemd[1]: Created slice Slice /system/dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged.
Jul 28 11:13:23 revelation systemd[1]: Started dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@0.service.
Jul 28 11:13:25 revelation setroubleshoot[6310]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 11:13:25 revelation setroubleshoot[6310]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 11:13:33 revelation systemd[1]: dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@0.service: Deactivated successfully.
Jul 28 11:13:33 revelation systemd[1]: dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@0.service: Consumed 1.083s CPU time.
Jul 28 11:13:35 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 11:14:20 revelation dracut[7579]: dracut-057-21.git20230214.el9
Jul 28 11:14:21 revelation dracut[7581]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 11:14:21 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 11:14:21 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 11:14:21 revelation systemd[1]: Started dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@1.service.
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 11:14:22 revelation dracut[7581]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 11:14:22 revelation setroubleshoot[7694]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 11:14:22 revelation setroubleshoot[7694]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 11:14:22 revelation setroubleshoot[7694]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 11:14:22 revelation setroubleshoot[7694]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 11:14:22 revelation dracut[7581]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: memstrack is not available
Jul 28 11:14:23 revelation dracut[7581]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 11:14:23 revelation dracut[7581]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 11:14:23 revelation dracut[7581]: memstrack is not available
Jul 28 11:14:23 revelation dracut[7581]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 11:14:23 revelation dracut[7581]: *** Including module: bash ***
Jul 28 11:14:23 revelation dracut[7581]: *** Including module: systemd ***
Jul 28 11:14:24 revelation dracut[7581]: *** Including module: systemd-initrd ***
Jul 28 11:14:24 revelation dracut[7581]: *** Including module: systemd-sysusers ***
Jul 28 11:14:24 revelation dracut[7581]: *** Including module: nss-softokn ***
Jul 28 11:14:24 revelation dracut[7581]: *** Including module: dbus-broker ***
Jul 28 11:14:24 revelation dracut[7581]: *** Including module: dbus ***
Jul 28 11:14:24 revelation dracut[7581]: *** Including module: i18n ***
Jul 28 11:14:24 revelation dracut[7581]: *** Including module: network-manager ***
Jul 28 11:14:24 revelation dracut[7581]: *** Including module: network ***
Jul 28 11:14:25 revelation dracut[7581]: *** Including module: ifcfg ***
Jul 28 11:14:25 revelation dracut[7581]: *** Including module: drm ***
Jul 28 11:14:25 revelation dracut[7581]: *** Including module: plymouth ***
Jul 28 11:14:26 revelation setroubleshoot[7694]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 11:14:26 revelation setroubleshoot[7694]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 11:14:27 revelation dracut[7581]: *** Including module: prefixdevname ***
Jul 28 11:14:27 revelation dracut[7581]: *** Including module: dm ***
Jul 28 11:14:27 revelation dracut[7581]: Skipping udev rule: 64-device-mapper.rules
Jul 28 11:14:27 revelation dracut[7581]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 11:14:27 revelation dracut[7581]: Skipping udev rule: 55-dm.rules
Jul 28 11:14:27 revelation dracut[7581]: *** Including module: kernel-modules ***
Jul 28 11:14:28 revelation setroubleshoot[7694]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 11:14:28 revelation setroubleshoot[7694]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: kernel-modules-extra ***
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: kernel-network-modules ***
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: lvm ***
Jul 28 11:14:29 revelation dracut[7581]: Skipping udev rule: 64-device-mapper.rules
Jul 28 11:14:29 revelation dracut[7581]: Skipping udev rule: 56-lvm.rules
Jul 28 11:14:29 revelation dracut[7581]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: resume ***
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: rootfs-block ***
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: terminfo ***
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: udev-rules ***
Jul 28 11:14:29 revelation dracut[7581]: Skipping udev rule: 91-permissions.rules
Jul 28 11:14:29 revelation dracut[7581]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 11:14:29 revelation dracut[7581]: Skipping udev rule: 70-persistent-net.rules
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: dracut-systemd ***
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: usrmount ***
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: base ***
Jul 28 11:14:29 revelation dracut[7581]: *** Including module: fs-lib ***
Jul 28 11:14:30 revelation dracut[7581]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 11:14:30 revelation dracut[7581]:  microcode_ctl module: mangling fw_dir
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 11:14:30 revelation dracut[7581]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 11:14:30 revelation dracut[7581]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 11:14:30 revelation dracut[7581]: *** Including module: shutdown ***
Jul 28 11:14:30 revelation dracut[7581]: *** Including modules done ***
Jul 28 11:14:30 revelation dracut[7581]: *** Installing kernel module dependencies ***
Jul 28 11:14:31 revelation dracut[7581]: *** Installing kernel module dependencies done ***
Jul 28 11:14:31 revelation dracut[7581]: *** Resolving executable dependencies ***
Jul 28 11:14:32 revelation dracut[7581]: *** Resolving executable dependencies done ***
Jul 28 11:14:32 revelation dracut[7581]: *** Hardlinking files ***
Jul 28 11:14:32 revelation dracut[7581]: Mode:           real
Jul 28 11:14:32 revelation dracut[7581]: Files:          1508
Jul 28 11:14:32 revelation dracut[7581]: Linked:         8 files
Jul 28 11:14:32 revelation dracut[7581]: Compared:       0 xattrs
Jul 28 11:14:32 revelation dracut[7581]: Compared:       410 files
Jul 28 11:14:32 revelation dracut[7581]: Saved:          378.03 KiB
Jul 28 11:14:32 revelation dracut[7581]: Duration:       0.021846 seconds
Jul 28 11:14:32 revelation dracut[7581]: *** Hardlinking files done ***
Jul 28 11:14:32 revelation dracut[7581]: *** Generating early-microcode cpio image ***
Jul 28 11:14:32 revelation dracut[7581]: *** Constructing GenuineIntel.bin ***
Jul 28 11:14:32 revelation dracut[7581]: *** Constructing GenuineIntel.bin ***
Jul 28 11:14:32 revelation dracut[7581]: *** Constructing GenuineIntel.bin ***
Jul 28 11:14:32 revelation dracut[7581]: *** Store current command line parameters ***
Jul 28 11:14:32 revelation dracut[7581]: *** Stripping files ***
Jul 28 11:14:33 revelation dracut[7581]: *** Stripping files done ***
Jul 28 11:14:33 revelation dracut[7581]: *** Creating image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' ***
Jul 28 11:14:33 revelation dracut[7581]: dracut: using auto-determined compression method 'pigz'
Jul 28 11:14:38 revelation systemd[1]: dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@1.service: Deactivated successfully.
Jul 28 11:14:38 revelation systemd[1]: dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@1.service: Consumed 1.012s CPU time.
Jul 28 11:14:39 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 11:14:42 revelation dracut[7581]: *** Creating initramfs image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' done ***
Jul 28 11:14:48 revelation dracut[17970]: dracut-057-21.git20230214.el9
Jul 28 11:14:48 revelation dracut[17972]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 11:14:48 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 11:14:48 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 11:14:48 revelation dracut[17972]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 11:14:48 revelation systemd[1]: Started dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@2.service.
Jul 28 11:14:49 revelation dracut[17972]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: memstrack is not available
Jul 28 11:14:49 revelation dracut[17972]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 11:14:49 revelation dracut[17972]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 11:14:49 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 11:14:49 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 11:14:50 revelation dracut[17972]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 11:14:50 revelation dracut[17972]: memstrack is not available
Jul 28 11:14:50 revelation dracut[17972]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: bash ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: systemd ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: systemd-initrd ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: systemd-sysusers ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: nss-softokn ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: dbus-broker ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: dbus ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: i18n ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: network-manager ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: network ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: ifcfg ***
Jul 28 11:14:50 revelation dracut[17972]: *** Including module: drm ***
Jul 28 11:14:51 revelation dracut[17972]: *** Including module: plymouth ***
Jul 28 11:14:51 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 11:14:51 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 11:14:53 revelation dracut[17972]: *** Including module: prefixdevname ***
Jul 28 11:14:53 revelation dracut[17972]: *** Including module: dm ***
Jul 28 11:14:53 revelation dracut[17972]: Skipping udev rule: 64-device-mapper.rules
Jul 28 11:14:53 revelation dracut[17972]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 11:14:53 revelation dracut[17972]: Skipping udev rule: 55-dm.rules
Jul 28 11:14:53 revelation dracut[17972]: *** Including module: kernel-modules ***
Jul 28 11:14:53 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 11:14:53 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 11:14:54 revelation dracut[17972]: *** Including module: kernel-modules-extra ***
Jul 28 11:14:54 revelation dracut[17972]: *** Including module: kernel-network-modules ***
Jul 28 11:14:54 revelation dracut[17972]: *** Including module: lvm ***
Jul 28 11:14:54 revelation dracut[17972]: Skipping udev rule: 64-device-mapper.rules
Jul 28 11:14:54 revelation dracut[17972]: Skipping udev rule: 56-lvm.rules
Jul 28 11:14:54 revelation dracut[17972]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 11:14:54 revelation dracut[17972]: *** Including module: resume ***
Jul 28 11:14:54 revelation dracut[17972]: *** Including module: rootfs-block ***
Jul 28 11:14:54 revelation dracut[17972]: *** Including module: terminfo ***
Jul 28 11:14:54 revelation dracut[17972]: *** Including module: udev-rules ***
Jul 28 11:14:54 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 11:14:54 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 11:14:55 revelation dracut[17972]: Skipping udev rule: 91-permissions.rules
Jul 28 11:14:55 revelation dracut[17972]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 11:14:55 revelation dracut[17972]: Skipping udev rule: 70-persistent-net.rules
Jul 28 11:14:55 revelation dracut[17972]: *** Including module: dracut-systemd ***
Jul 28 11:14:55 revelation dracut[17972]: *** Including module: usrmount ***
Jul 28 11:14:55 revelation dracut[17972]: *** Including module: base ***
Jul 28 11:14:55 revelation dracut[17972]: *** Including module: fs-lib ***
Jul 28 11:14:55 revelation dracut[17972]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 11:14:55 revelation dracut[17972]:  microcode_ctl module: mangling fw_dir
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 11:14:55 revelation dracut[17972]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 11:14:55 revelation dracut[17972]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 11:14:55 revelation dracut[17972]: *** Including module: shutdown ***
Jul 28 11:14:55 revelation dracut[17972]: *** Including modules done ***
Jul 28 11:14:55 revelation dracut[17972]: *** Installing kernel module dependencies ***
Jul 28 11:14:56 revelation dracut[17972]: *** Installing kernel module dependencies done ***
Jul 28 11:14:56 revelation dracut[17972]: *** Resolving executable dependencies ***
Jul 28 11:14:56 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 11:14:56 revelation setroubleshoot[18084]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 11:14:57 revelation dracut[17972]: *** Resolving executable dependencies done ***
Jul 28 11:14:57 revelation dracut[17972]: *** Hardlinking files ***
Jul 28 11:14:57 revelation dracut[17972]: Mode:           real
Jul 28 11:14:57 revelation dracut[17972]: Files:          1508
Jul 28 11:14:57 revelation dracut[17972]: Linked:         8 files
Jul 28 11:14:57 revelation dracut[17972]: Compared:       0 xattrs
Jul 28 11:14:57 revelation dracut[17972]: Compared:       410 files
Jul 28 11:14:57 revelation dracut[17972]: Saved:          378.03 KiB
Jul 28 11:14:57 revelation dracut[17972]: Duration:       0.021856 seconds
Jul 28 11:14:57 revelation dracut[17972]: *** Hardlinking files done ***
Jul 28 11:14:57 revelation dracut[17972]: *** Generating early-microcode cpio image ***
Jul 28 11:14:57 revelation dracut[17972]: *** Constructing GenuineIntel.bin ***
Jul 28 11:14:57 revelation dracut[17972]: *** Constructing GenuineIntel.bin ***
Jul 28 11:14:57 revelation dracut[17972]: *** Constructing GenuineIntel.bin ***
Jul 28 11:14:58 revelation dracut[17972]: *** Store current command line parameters ***
Jul 28 11:14:58 revelation dracut[17972]: *** Stripping files ***
Jul 28 11:14:58 revelation dracut[17972]: *** Stripping files done ***
Jul 28 11:14:58 revelation dracut[17972]: *** Creating image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' ***
Jul 28 11:14:58 revelation dracut[17972]: dracut: using auto-determined compression method 'pigz'
Jul 28 11:15:06 revelation systemd[1]: dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@2.service: Deactivated successfully.
Jul 28 11:15:06 revelation systemd[1]: dbus-:1.11-org.fedoraproject.SetroubleshootPrivileged@2.service: Consumed 1.049s CPU time.
Jul 28 11:15:06 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 11:15:07 revelation dracut[17972]: *** Creating initramfs image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' done ***
Jul 28 11:15:22 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46f66440' has no handler with id '47567'
Jul 28 11:15:26 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08a10' has no handler with id '47564'
Jul 28 11:15:26 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08a10' has no handler with id '46508'
Jul 28 11:15:26 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08a10' has no handler with id '46772'
Jul 28 11:15:26 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08a10' has no handler with id '47036'
Jul 28 11:15:26 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08a10' has no handler with id '47300'
Jul 28 11:15:26 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08a10' has no handler with id '59296'
Jul 28 11:15:26 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08a10' has no handler with id '45982'
Jul 28 11:15:26 revelation journal[2706]: ../gobject/gsignal.c:2732: instance '0x556f46d08a10' has no handler with id '46244'
Jul 28 11:41:38 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:41:38 revelation cupsd[1135]: Subscription 2750 has expired...
Jul 28 11:41:38 revelation cupsd[1135]: REQUEST localhost - - "POST / HTTP/1.1" 200 182 Renew-Subscription successful-ok
Jul 28 11:41:39 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:42:09 revelation cupsd[1135]: Saving subscriptions.conf...
Jul 28 11:42:09 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:43:35 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 11:43:35 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 11:43:37 revelation systemd[1557]: selinux: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 11:43:37 revelation systemd[1557]: Started dbus-:1.2-org.freedesktop.FileManager1@1.service.
Jul 28 11:43:37 revelation systemd[1557]: Started dbus-:1.2-org.gnome.Nautilus@1.service.
Jul 28 11:43:37 revelation systemd[1557]: Started dbus-:1.2-org.gnome.NautilusPreviewer@1.service.
Jul 28 11:43:37 revelation systemd[1]: Starting Hostname Service...
Jul 28 11:43:37 revelation nautilus[28665]: Failed to register: Unable to acquire bus name 'org.gnome.Nautilus'
Jul 28 11:43:37 revelation systemd[1557]: dbus-:1.2-org.gnome.Nautilus@1.service: Main process exited, code=exited, status=1/FAILURE
Jul 28 11:43:37 revelation systemd[1557]: dbus-:1.2-org.gnome.Nautilus@1.service: Failed with result 'exit-code'.
Jul 28 11:43:37 revelation at-spi-bus-launcher[2583]: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 11:43:37 revelation systemd[1]: Started Hostname Service.
Jul 28 11:43:37 revelation journal[28666]: JS ERROR: ReferenceError: WebKit2 is not defined#012vfunc_startup@resource:///org/gnome/NautilusPreviewer/js/ui/application.js:89:9#012main@resource:///org/gnome/NautilusPreviewer/js/ui/main.js:57:24#012run@resource:///org/gnome/gjs/modules/script/package.js:206:19#012@/usr/libexec/org.gnome.NautilusPreviewer:9:17
Jul 28 11:44:05 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 11:44:07 revelation systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jul 28 11:44:16 revelation systemd[1557]: vte-spawn-a1c67034-92b2-428c-bc74-7e4d507e7ca8.scope: Consumed 22.303s CPU time.
Jul 28 11:44:23 revelation systemd[1557]: vte-spawn-d0a77957-0a46-48aa-b9fc-5921b4bb1167.scope: Consumed 17.330s CPU time.
Jul 28 11:45:01 revelation systemd[1557]: vte-spawn-a53bdb4f-b6dd-4df8-9ad4-28e9cf9e0d7c.scope: Consumed 10.656s CPU time.
Jul 28 11:46:53 revelation kernel: Linux version 5.14.0-284.18.1.el9_2.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.3.1 20221121 (Red Hat 11.3.1-4), GNU ld version 2.35.2-37.el9) #1 SMP PREEMPT_DYNAMIC Thu Jun 22 17:36:46 UTC 2023
Jul 28 11:46:53 revelation kernel: The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.
Jul 28 11:46:53 revelation kernel: Command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 11:46:53 revelation kernel: x86/fpu: x87 FPU will use FXSAVE
Jul 28 11:46:53 revelation kernel: signal: max sigframe size: 1440
Jul 28 11:46:53 revelation kernel: BIOS-provided physical RAM map:
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009afff] usable
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000000009b000-0x000000000009ffff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008a474fff] usable
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008a475000-0x000000008c484fff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008c485000-0x000000008c566fff] ACPI NVS
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008c567000-0x000000008c648fff] ACPI data
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008c649000-0x000000008da48fff] ACPI NVS
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008da49000-0x000000008f601fff] ACPI data
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008f602000-0x000000008f64efff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008f64f000-0x000000008f6e4fff] ACPI data
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008f6e5000-0x000000008f6eefff] ACPI NVS
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008f6ef000-0x000000008f6f0fff] ACPI data
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008f6f1000-0x000000008f7cefff] ACPI NVS
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008f7cf000-0x000000008f7fffff] ACPI data
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x000000008f800000-0x000000008fffffff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x00000000a0000000-0x00000000afffffff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x00000000fc000000-0x00000000fcffffff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Jul 28 11:46:53 revelation kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000c6fffffff] usable
Jul 28 11:46:53 revelation kernel: NX (Execute Disable) protection: active
Jul 28 11:46:53 revelation kernel: SMBIOS 2.5 present.
Jul 28 11:46:53 revelation kernel: DMI: Intel Corporation S5520UR/S5520UR, BIOS S5500.86B.01.00.0064.050520141428 05/05/2014
Jul 28 11:46:53 revelation kernel: tsc: Fast TSC calibration using PIT
Jul 28 11:46:53 revelation kernel: tsc: Detected 3458.233 MHz processor
Jul 28 11:46:53 revelation kernel: last_pfn = 0xc70000 max_arch_pfn = 0x400000000
Jul 28 11:46:53 revelation kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jul 28 11:46:53 revelation kernel: last_pfn = 0x8a475 max_arch_pfn = 0x400000000
Jul 28 11:46:53 revelation kernel: found SMP MP-table at [mem 0x000fdad0-0x000fdadf]
Jul 28 11:46:53 revelation kernel: Using GB pages for direct mapping
Jul 28 11:46:53 revelation kernel: RAMDISK: [mem 0x315b2000-0x34ad0fff]
Jul 28 11:46:53 revelation kernel: ACPI: Early table checksum verification disabled
Jul 28 11:46:53 revelation kernel: ACPI: RSDP 0x00000000000F0410 000024 (v02 INTEL )
Jul 28 11:46:53 revelation kernel: ACPI: XSDT 0x000000008F7FD120 000094 (v01 INTEL  S5520UR  00000000      01000013)
Jul 28 11:46:53 revelation kernel: ACPI: FACP 0x000000008F7FB000 0000F4 (v04 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: DSDT 0x000000008F7F4000 0065A1 (v02 INTEL  S5520UR  00000003 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: FACS 0x000000008F6F1000 000040
Jul 28 11:46:53 revelation kernel: ACPI: FACS 0x000000008F6F1000 000040
Jul 28 11:46:53 revelation kernel: ACPI: APIC 0x000000008F7F3000 0001A8 (v02 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: MCFG 0x000000008F7F2000 00003C (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: HPET 0x000000008F7F1000 000038 (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: SLIT 0x000000008F7F0000 000030 (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: SRAT 0x000000008F7EF000 000430 (v02 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: SPCR 0x000000008F7EE000 000050 (v01 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: WDDT 0x000000008F7ED000 000040 (v01 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 11:46:53 revelation kernel: ACPI: SSDT 0x000000008F7D2000 01AFC4 (v02 INTEL  SSDT  PM 00004000 INTL 20061109)
Jul 28 11:46:53 revelation kernel: ACPI: SSDT 0x000000008F7D1000 0001D8 (v02 INTEL  IPMI     00004000 INTL 20061109)
Jul 28 11:46:53 revelation kernel: ACPI: HEST 0x000000008F7D0000 0000A8 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 11:46:53 revelation kernel: ACPI: BERT 0x000000008F7CF000 000030 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 11:46:53 revelation kernel: ACPI: ERST 0x000000008F6F0000 000230 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 11:46:53 revelation kernel: ACPI: EINJ 0x000000008F6EF000 000130 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 11:46:53 revelation kernel: ACPI: Reserving FACP table memory at [mem 0x8f7fb000-0x8f7fb0f3]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving DSDT table memory at [mem 0x8f7f4000-0x8f7fa5a0]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving FACS table memory at [mem 0x8f6f1000-0x8f6f103f]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving FACS table memory at [mem 0x8f6f1000-0x8f6f103f]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving APIC table memory at [mem 0x8f7f3000-0x8f7f31a7]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving MCFG table memory at [mem 0x8f7f2000-0x8f7f203b]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving HPET table memory at [mem 0x8f7f1000-0x8f7f1037]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving SLIT table memory at [mem 0x8f7f0000-0x8f7f002f]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving SRAT table memory at [mem 0x8f7ef000-0x8f7ef42f]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving SPCR table memory at [mem 0x8f7ee000-0x8f7ee04f]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving WDDT table memory at [mem 0x8f7ed000-0x8f7ed03f]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving SSDT table memory at [mem 0x8f7d2000-0x8f7ecfc3]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving SSDT table memory at [mem 0x8f7d1000-0x8f7d11d7]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving HEST table memory at [mem 0x8f7d0000-0x8f7d00a7]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving BERT table memory at [mem 0x8f7cf000-0x8f7cf02f]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving ERST table memory at [mem 0x8f6f0000-0x8f6f022f]
Jul 28 11:46:53 revelation kernel: ACPI: Reserving EINJ table memory at [mem 0x8f6ef000-0x8f6ef12f]
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x20 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x02 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x22 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x04 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x24 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x10 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x30 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x12 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x32 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x14 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x34 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x21 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x03 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x23 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x05 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x25 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x11 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x31 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x13 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x33 -> Node 1
Jul 28 11:46:53 revelation kernel: SRAT: PXM 0 -> APIC 0x15 -> Node 0
Jul 28 11:46:53 revelation kernel: SRAT: PXM 1 -> APIC 0x35 -> Node 1
Jul 28 11:46:53 revelation kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x8fffffff]
Jul 28 11:46:53 revelation kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x66fffffff]
Jul 28 11:46:53 revelation kernel: ACPI: SRAT: Node 1 PXM 1 [mem 0x670000000-0xc6fffffff]
Jul 28 11:46:53 revelation kernel: NUMA: Node 0 [mem 0x00000000-0x8fffffff] + [mem 0x100000000-0x66fffffff] -> [mem 0x00000000-0x66fffffff]
Jul 28 11:46:53 revelation kernel: NODE_DATA(0) allocated [mem 0x66ffd5000-0x66fffffff]
Jul 28 11:46:53 revelation kernel: NODE_DATA(1) allocated [mem 0xc6ffd4000-0xc6fffefff]
Jul 28 11:46:53 revelation kernel: Reserving 256MB of memory at 1952MB for crashkernel (System RAM: 49060MB)
Jul 28 11:46:53 revelation kernel: Zone ranges:
Jul 28 11:46:53 revelation kernel:  DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jul 28 11:46:53 revelation kernel:  DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jul 28 11:46:53 revelation kernel:  Normal   [mem 0x0000000100000000-0x0000000c6fffffff]
Jul 28 11:46:53 revelation kernel:  Device   empty
Jul 28 11:46:53 revelation kernel: Movable zone start for each node
Jul 28 11:46:53 revelation kernel: Early memory node ranges
Jul 28 11:46:53 revelation kernel:  node   0: [mem 0x0000000000001000-0x000000000009afff]
Jul 28 11:46:53 revelation kernel:  node   0: [mem 0x0000000000100000-0x000000008a474fff]
Jul 28 11:46:53 revelation kernel:  node   0: [mem 0x0000000100000000-0x000000066fffffff]
Jul 28 11:46:53 revelation kernel:  node   1: [mem 0x0000000670000000-0x0000000c6fffffff]
Jul 28 11:46:53 revelation kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000066fffffff]
Jul 28 11:46:53 revelation kernel: Initmem setup node 1 [mem 0x0000000670000000-0x0000000c6fffffff]
Jul 28 11:46:53 revelation kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jul 28 11:46:53 revelation kernel: On node 0, zone DMA: 101 pages in unavailable ranges
Jul 28 11:46:53 revelation kernel: On node 0, zone Normal: 23435 pages in unavailable ranges
Jul 28 11:46:53 revelation kernel: ACPI: PM-Timer IO Port: 0x408
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high level lint[0x1])
Jul 28 11:46:53 revelation kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jul 28 11:46:53 revelation kernel: IOAPIC[1]: apic_id 9, version 32, address 0xfec90000, GSI 24-47
Jul 28 11:46:53 revelation kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jul 28 11:46:53 revelation kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jul 28 11:46:53 revelation kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jul 28 11:46:53 revelation kernel: ACPI: HPET id: 0x8086a401 base: 0xfed00000
Jul 28 11:46:53 revelation kernel: ACPI: SPCR: SPCR table version 1
Jul 28 11:46:53 revelation kernel: ACPI: SPCR: console: uart,io,0x3f8,115200
Jul 28 11:46:53 revelation kernel: smpboot: Allowing 24 CPUs, 0 hotplug CPUs
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x0009b000-0x0009ffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8a475000-0x8c484fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c485000-0x8c566fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c567000-0x8c648fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c649000-0x8da48fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8da49000-0x8f601fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f602000-0x8f64efff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f64f000-0x8f6e4fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6e5000-0x8f6eefff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6ef000-0x8f6f0fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6f1000-0x8f7cefff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f7cf000-0x8f7fffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f800000-0x8fffffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x90000000-0x9fffffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xa0000000-0xafffffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xb0000000-0xfbffffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfcffffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xfed1bfff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed44fff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xff7fffff]
Jul 28 11:46:53 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xff800000-0xffffffff]
Jul 28 11:46:53 revelation kernel: [mem 0xb0000000-0xfbffffff] available for PCI devices
Jul 28 11:46:53 revelation kernel: Booting paravirtualized kernel on bare hardware
Jul 28 11:46:53 revelation kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Jul 28 11:46:53 revelation kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:2
Jul 28 11:46:53 revelation kernel: percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
Jul 28 11:46:53 revelation kernel: Fallback order for Node 0: 0 1 
Jul 28 11:46:53 revelation kernel: Fallback order for Node 1: 1 0 
Jul 28 11:46:53 revelation kernel: Built 2 zonelists, mobility grouping on.  Total pages: 12362979
Jul 28 11:46:53 revelation kernel: Policy zone: Normal
Jul 28 11:46:53 revelation kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 11:46:53 revelation kernel: Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 biosdevname=0 LANG=en_GB.UTF-8", will be passed to user space.
Jul 28 11:46:53 revelation kernel: mem auto-init: stack:off, heap alloc:off, heap free:off
Jul 28 11:46:53 revelation kernel: software IO TLB: area num 32.
Jul 28 11:46:53 revelation kernel: Memory: 2144340K/50237500K available (14342K kernel code, 5536K rwdata, 10180K rodata, 2792K init, 7524K bss, 1224840K reserved, 0K cma-reserved)
Jul 28 11:46:53 revelation kernel: random: get_random_u64 called from kmem_cache_open+0x1e/0x210 with crng_init=0
Jul 28 11:46:53 revelation kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=2
Jul 28 11:46:53 revelation kernel: Kernel/User page tables isolation: enabled
Jul 28 11:46:53 revelation kernel: ftrace: allocating 44807 entries in 176 pages
Jul 28 11:46:53 revelation kernel: ftrace: allocated 176 pages with 3 groups
Jul 28 11:46:53 revelation kernel: Dynamic Preempt: voluntary
Jul 28 11:46:53 revelation kernel: rcu: Preemptible hierarchical RCU implementation.
Jul 28 11:46:53 revelation kernel: rcu: #011RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=24.
Jul 28 11:46:53 revelation kernel: #011Trampoline variant of Tasks RCU enabled.
Jul 28 11:46:53 revelation kernel: #011Rude variant of Tasks RCU enabled.
Jul 28 11:46:53 revelation kernel: #011Tracing variant of Tasks RCU enabled.
Jul 28 11:46:53 revelation kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Jul 28 11:46:53 revelation kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24
Jul 28 11:46:53 revelation kernel: NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
Jul 28 11:46:53 revelation kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jul 28 11:46:53 revelation kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Jul 28 11:46:53 revelation kernel: Console: colour VGA+ 80x25
Jul 28 11:46:53 revelation kernel: printk: console [tty0] enabled
Jul 28 11:46:53 revelation kernel: mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
Jul 28 11:46:53 revelation kernel: ACPI: Core revision 20211217
Jul 28 11:46:53 revelation kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Jul 28 11:46:53 revelation kernel: APIC: Switch to symmetric I/O mode setup
Jul 28 11:46:53 revelation kernel: Switched APIC routing to physical flat.
Jul 28 11:46:53 revelation kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jul 28 11:46:53 revelation kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31d93113996, max_idle_ns: 440795246273 ns
Jul 28 11:46:53 revelation kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6916.46 BogoMIPS (lpj=3458233)
Jul 28 11:46:53 revelation kernel: pid_max: default: 32768 minimum: 301
Jul 28 11:46:53 revelation kernel: LSM: Security Framework initializing
Jul 28 11:46:53 revelation kernel: Yama: becoming mindful.
Jul 28 11:46:53 revelation kernel: SELinux:  Initializing.
Jul 28 11:46:53 revelation kernel: LSM support for eBPF active
Jul 28 11:46:53 revelation kernel: Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
Jul 28 11:46:53 revelation kernel: Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, vmalloc hugepage)
Jul 28 11:46:53 revelation kernel: Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: CPU0: Thermal monitoring enabled (TM1)
Jul 28 11:46:53 revelation kernel: process: using mwait in idle threads
Jul 28 11:46:53 revelation kernel: Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jul 28 11:46:53 revelation kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jul 28 11:46:53 revelation kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jul 28 11:46:53 revelation kernel: Spectre V2 : Mitigation: Retpolines
Jul 28 11:46:53 revelation kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jul 28 11:46:53 revelation kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Jul 28 11:46:53 revelation kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Jul 28 11:46:53 revelation kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jul 28 11:46:53 revelation kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
Jul 28 11:46:53 revelation kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Jul 28 11:46:53 revelation kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
Jul 28 11:46:53 revelation kernel: MMIO Stale Data: Unknown: No mitigations
Jul 28 11:46:53 revelation kernel: Freeing SMP alternatives memory: 36K
Jul 28 11:46:53 revelation kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1063
Jul 28 11:46:53 revelation kernel: smpboot: CPU0: Intel(R) Xeon(R) CPU           X5690  @ 3.47GHz (family: 0x6, model: 0x2c, stepping: 0x2)
Jul 28 11:46:53 revelation kernel: cblist_init_generic: Setting adjustable number of callback queues.
Jul 28 11:46:53 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 11:46:53 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 11:46:53 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 11:46:53 revelation kernel: Performance Events: PEBS fmt1+, Westmere events, 16-deep LBR, Intel PMU driver.
Jul 28 11:46:53 revelation kernel: core: CPUID marked event: 'bus cycles' unavailable
Jul 28 11:46:53 revelation kernel: ... version:                3
Jul 28 11:46:53 revelation kernel: ... bit width:              48
Jul 28 11:46:53 revelation kernel: ... generic registers:      4
Jul 28 11:46:53 revelation kernel: ... value mask:             0000ffffffffffff
Jul 28 11:46:53 revelation kernel: ... max period:             000000007fffffff
Jul 28 11:46:53 revelation kernel: ... fixed-purpose events:   3
Jul 28 11:46:53 revelation kernel: ... event mask:             000000070000000f
Jul 28 11:46:53 revelation kernel: rcu: Hierarchical SRCU implementation.
Jul 28 11:46:53 revelation kernel: rcu: #011Max phase no-delay instances is 400.
Jul 28 11:46:53 revelation kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jul 28 11:46:53 revelation kernel: smp: Bringing up secondary CPUs ...
Jul 28 11:46:53 revelation kernel: x86: Booting SMP configuration:
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:        #1
Jul 28 11:46:53 revelation kernel: smpboot: CPU 1 Converting physical 0 to logical die 1
Jul 28 11:46:53 revelation kernel: 
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:    #2
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:    #3
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:    #4
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:    #5
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:    #6
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:    #7
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:    #8
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:    #9
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:   #10
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:   #11
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:   #12
Jul 28 11:46:53 revelation kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
Jul 28 11:46:53 revelation kernel: 
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:   #13
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:   #14
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:   #15
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:   #16
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:   #17
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:   #18
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:   #19
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:   #20
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:   #21
Jul 28 11:46:53 revelation kernel: .... node  #0, CPUs:   #22
Jul 28 11:46:53 revelation kernel: .... node  #1, CPUs:   #23
Jul 28 11:46:53 revelation kernel: smp: Brought up 2 nodes, 24 CPUs
Jul 28 11:46:53 revelation kernel: smpboot: Max logical packages: 2
Jul 28 11:46:53 revelation kernel: smpboot: Total of 24 processors activated (165996.09 BogoMIPS)
Jul 28 11:46:53 revelation kernel: node 0 deferred pages initialised in 38ms
Jul 28 11:46:53 revelation kernel: node 1 deferred pages initialised in 41ms
Jul 28 11:46:53 revelation kernel: devtmpfs: initialized
Jul 28 11:46:53 revelation kernel: x86/mm: Memory block size: 128MB
Jul 28 11:46:53 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8c485000-0x8c566fff] (925696 bytes)
Jul 28 11:46:53 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8c649000-0x8da48fff] (20971520 bytes)
Jul 28 11:46:53 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8f6e5000-0x8f6eefff] (40960 bytes)
Jul 28 11:46:53 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8f6f1000-0x8f7cefff] (909312 bytes)
Jul 28 11:46:53 revelation kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Jul 28 11:46:53 revelation kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: pinctrl core: initialized pinctrl subsystem
Jul 28 11:46:53 revelation kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jul 28 11:46:53 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Jul 28 11:46:53 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jul 28 11:46:53 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jul 28 11:46:53 revelation kernel: audit: initializing netlink subsys (disabled)
Jul 28 11:46:53 revelation kernel: audit: type=2000 audit(1690541211.316:1): state=initialized audit_enabled=0 res=1
Jul 28 11:46:53 revelation kernel: thermal_sys: Registered thermal governor 'fair_share'
Jul 28 11:46:53 revelation kernel: thermal_sys: Registered thermal governor 'step_wise'
Jul 28 11:46:53 revelation kernel: thermal_sys: Registered thermal governor 'user_space'
Jul 28 11:46:53 revelation kernel: cpuidle: using governor menu
Jul 28 11:46:53 revelation kernel: HugeTLB: can optimize 4095 vmemmap pages for hugepages-1048576kB
Jul 28 11:46:53 revelation kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jul 28 11:46:53 revelation kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jul 28 11:46:53 revelation kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xa0000000-0xafffffff] (base 0xa0000000)
Jul 28 11:46:53 revelation kernel: PCI: MMCONFIG at [mem 0xa0000000-0xafffffff] reserved in E820
Jul 28 11:46:53 revelation kernel: PCI: Using configuration type 1 for base access
Jul 28 11:46:53 revelation kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jul 28 11:46:53 revelation kernel: HugeTLB: can optimize 7 vmemmap pages for hugepages-2048kB
Jul 28 11:46:53 revelation kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jul 28 11:46:53 revelation kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jul 28 11:46:53 revelation kernel: cryptd: max_cpu_qlen set to 1000
Jul 28 11:46:53 revelation kernel: ACPI: Added _OSI(Module Device)
Jul 28 11:46:53 revelation kernel: ACPI: Added _OSI(Processor Device)
Jul 28 11:46:53 revelation kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jul 28 11:46:53 revelation kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jul 28 11:46:53 revelation kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jul 28 11:46:53 revelation kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jul 28 11:46:53 revelation kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jul 28 11:46:53 revelation kernel: ACPI: 3 ACPI AML tables successfully acquired and loaded
Jul 28 11:46:53 revelation kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [CPB3] at bit offset/length 64/32 exceeds size of target Buffer (64 bits) (20211217/dsopcode-198)
Jul 28 11:46:53 revelation kernel: ACPI Error: Aborting method \_SB._OSC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jul 28 11:46:53 revelation kernel: ACPI: Interpreter enabled
Jul 28 11:46:53 revelation kernel: ACPI: PM: (supports S0 S1 S5)
Jul 28 11:46:53 revelation kernel: ACPI: Using IOAPIC for interrupt routing
Jul 28 11:46:53 revelation kernel: HEST: Table parsing has been initialized.
Jul 28 11:46:53 revelation kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jul 28 11:46:53 revelation kernel: PCI: Using E820 reservations for host bridge windows
Jul 28 11:46:53 revelation kernel: ACPI: Enabled 11 GPEs in block 00 to 3F
Jul 28 11:46:53 revelation kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fd])
Jul 28 11:46:53 revelation kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jul 28 11:46:53 revelation kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Jul 28 11:46:53 revelation kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jul 28 11:46:53 revelation kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jul 28 11:46:53 revelation kernel: acpi PNP0A08:00: ignoring host bridge window [mem 0x000c4000-0x000cbfff window] (conflicts with Video ROM [mem 0x000c0000-0x000c7fff])
Jul 28 11:46:53 revelation kernel: PCI host bridge to bus 0000:00
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: Unknown NUMA node; performance will be reduced
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfedfffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: root bus resource [mem 0xb0000000-0xfdffffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: root bus resource [bus 00-fd]
Jul 28 11:46:53 revelation kernel: pci 0000:00:00.0: [8086:3406] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:01.0: [8086:3408] type 01 class 0x060400
Jul 28 11:46:53 revelation kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:03.0: [8086:340a] type 01 class 0x060400
Jul 28 11:46:53 revelation kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:07.0: [8086:340e] type 01 class 0x060400
Jul 28 11:46:53 revelation kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:09.0: [8086:3410] type 01 class 0x060400
Jul 28 11:46:53 revelation kernel: pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:0a.0: [8086:3411] type 01 class 0x060400
Jul 28 11:46:53 revelation kernel: pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:10.0: [8086:3425] type 00 class 0x080000
Jul 28 11:46:53 revelation kernel: pci 0000:00:10.1: [8086:3426] type 00 class 0x080000
Jul 28 11:46:53 revelation kernel: pci 0000:00:11.0: [8086:3427] type 00 class 0x080000
Jul 28 11:46:53 revelation kernel: pci 0000:00:11.1: [8086:3428] type 00 class 0x080000
Jul 28 11:46:53 revelation kernel: pci 0000:00:13.0: [8086:342d] type 00 class 0x080020
Jul 28 11:46:53 revelation kernel: pci 0000:00:13.0: reg 0x10: [mem 0xb1b23000-0xb1b23fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:14.0: [8086:342e] type 00 class 0x080000
Jul 28 11:46:53 revelation kernel: pci 0000:00:14.1: [8086:3422] type 00 class 0x080000
Jul 28 11:46:53 revelation kernel: pci 0000:00:14.2: [8086:3423] type 00 class 0x080000
Jul 28 11:46:53 revelation kernel: pci 0000:00:14.3: [8086:3438] type 00 class 0x080000
Jul 28 11:46:53 revelation kernel: pci 0000:00:15.0: [8086:342f] type 00 class 0x080020
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.0: [8086:3430] type 00 class 0x088000
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.0: reg 0x10: [mem 0xb1b00000-0xb1b03fff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.1: [8086:3431] type 00 class 0x088000
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.1: reg 0x10: [mem 0xb1b04000-0xb1b07fff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.2: [8086:3432] type 00 class 0x088000
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.2: reg 0x10: [mem 0xb1b08000-0xb1b0bfff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.3: [8086:3433] type 00 class 0x088000
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.3: reg 0x10: [mem 0xb1b0c000-0xb1b0ffff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.4: [8086:3429] type 00 class 0x088000
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.4: reg 0x10: [mem 0xb1b10000-0xb1b13fff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.5: [8086:342a] type 00 class 0x088000
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.5: reg 0x10: [mem 0xb1b14000-0xb1b17fff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.6: [8086:342b] type 00 class 0x088000
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.6: reg 0x10: [mem 0xb1b18000-0xb1b1bfff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.7: [8086:342c] type 00 class 0x088000
Jul 28 11:46:53 revelation kernel: pci 0000:00:16.7: reg 0x10: [mem 0xb1b1c000-0xb1b1ffff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.0: [8086:3a37] type 00 class 0x0c0300
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.0: reg 0x20: [io  0x30c0-0x30df]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.1: [8086:3a38] type 00 class 0x0c0300
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.1: reg 0x20: [io  0x30a0-0x30bf]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.2: [8086:3a39] type 00 class 0x0c0300
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.2: reg 0x20: [io  0x3080-0x309f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.7: [8086:3a3c] type 00 class 0x0c0320
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xb1b21000-0xb1b213ff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: [8086:3a40] type 01 class 0x060400
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4: [8086:3a48] type 01 class 0x060400
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: [8086:3a4a] type 01 class 0x060400
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.0: [8086:3a34] type 00 class 0x0c0300
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.0: reg 0x20: [io  0x3060-0x307f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.1: [8086:3a35] type 00 class 0x0c0300
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.1: reg 0x20: [io  0x3040-0x305f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.2: [8086:3a36] type 00 class 0x0c0300
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.2: reg 0x20: [io  0x3020-0x303f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.7: [8086:3a3a] type 00 class 0x0c0320
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xb1b20000-0xb1b203ff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.0: [8086:3a16] type 00 class 0x060100
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.0: quirk: [io  0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.0: quirk: [io  0x0500-0x053f] claimed by ICH6 GPIO
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0ca0 (mask 000f)
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0600 (mask 001f)
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.2: [8086:3a20] type 00 class 0x01018f
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.2: reg 0x10: [io  0x3138-0x313f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.2: reg 0x14: [io  0x314c-0x314f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.2: reg 0x18: [io  0x3130-0x3137]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x3148-0x314b]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.2: reg 0x20: [io  0x3110-0x311f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.2: reg 0x24: [io  0x3100-0x310f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.3: [8086:3a30] type 00 class 0x0c0500
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xb1b22000-0xb1b220ff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.3: reg 0x20: [io  0x3000-0x301f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.5: [8086:3a26] type 00 class 0x010185
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.5: reg 0x10: [io  0x3128-0x312f]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.5: reg 0x14: [io  0x3144-0x3147]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.5: reg 0x18: [io  0x3120-0x3127]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.5: reg 0x1c: [io  0x3140-0x3143]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.5: reg 0x20: [io  0x30f0-0x30ff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1f.5: reg 0x24: [io  0x30e0-0x30ef]
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.0: [8086:10a7] type 00 class 0x020000
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.0: reg 0x10: [mem 0xb1a20000-0xb1a3ffff]
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.0: reg 0x18: [io  0x2020-0x203f]
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xb1a44000-0xb1a47fff]
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.1: [8086:10a7] type 00 class 0x020000
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.1: reg 0x10: [mem 0xb1a00000-0xb1a1ffff]
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.1: reg 0x18: [io  0x2000-0x201f]
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.1: reg 0x1c: [mem 0xb1a40000-0xb1a43fff]
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
Jul 28 11:46:53 revelation kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jul 28 11:46:53 revelation kernel: pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:01.0:   bridge window [mem 0xb1a00000-0xb1afffff]
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: [1000:0073] type 00 class 0x010400
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: reg 0x10: [io  0x1000-0x10ff]
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: reg 0x14: [mem 0xb1940000-0xb1943fff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: reg 0x1c: [mem 0xb1900000-0xb193ffff 64bit]
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: supports D1 D2
Jul 28 11:46:53 revelation kernel: pci 0000:00:03.0: PCI bridge to [bus 02]
Jul 28 11:46:53 revelation kernel: pci 0000:00:03.0:   bridge window [io  0x1000-0x1fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:03.0:   bridge window [mem 0xb1900000-0xb19fffff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:07.0: PCI bridge to [bus 03]
Jul 28 11:46:53 revelation kernel: pci 0000:00:09.0: PCI bridge to [bus 04]
Jul 28 11:46:53 revelation kernel: pci 0000:00:0a.0: PCI bridge to [bus 05]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: PCI bridge to [bus 06]
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: [102b:0522] type 00 class 0x030000
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: reg 0x10: [mem 0xb0000000-0xb0ffffff pref]
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: reg 0x14: [mem 0xb1800000-0xb1803fff]
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: reg 0x18: [mem 0xb1000000-0xb17fffff]
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4: PCI bridge to [bus 07]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb1000000-0xb18fffff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:09: extended config space not accessible
Jul 28 11:46:53 revelation kernel: pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
Jul 28 11:46:53 revelation kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Jul 28 11:46:53 revelation kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Jul 28 11:46:53 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Jul 28 11:46:53 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfedfffff window] (subtractive decode)
Jul 28 11:46:53 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0xb0000000-0xfdffffff window] (subtractive decode)
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 9
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 5
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKE disabled
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKG disabled
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Jul 28 11:46:53 revelation kernel: ACPI: PCI: Interrupt link LNKH disabled
Jul 28 11:46:53 revelation kernel: iommu: Default domain type: Translated 
Jul 28 11:46:53 revelation kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Jul 28 11:46:53 revelation kernel: SCSI subsystem initialized
Jul 28 11:46:53 revelation kernel: ACPI: bus type USB registered
Jul 28 11:46:53 revelation kernel: usbcore: registered new interface driver usbfs
Jul 28 11:46:53 revelation kernel: usbcore: registered new interface driver hub
Jul 28 11:46:53 revelation kernel: usbcore: registered new device driver usb
Jul 28 11:46:53 revelation kernel: pps_core: LinuxPPS API ver. 1 registered
Jul 28 11:46:53 revelation kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jul 28 11:46:53 revelation kernel: PTP clock support registered
Jul 28 11:46:53 revelation kernel: EDAC MC: Ver: 3.0.0
Jul 28 11:46:53 revelation kernel: NetLabel: Initializing
Jul 28 11:46:53 revelation kernel: NetLabel:  domain hash size = 128
Jul 28 11:46:53 revelation kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jul 28 11:46:53 revelation kernel: NetLabel:  unlabeled traffic allowed by default
Jul 28 11:46:53 revelation kernel: PCI: Using ACPI for IRQ routing
Jul 28 11:46:53 revelation kernel: PCI: Discovered peer bus fe
Jul 28 11:46:53 revelation kernel: PCI host bridge to bus 0000:fe
Jul 28 11:46:53 revelation kernel: pci_bus 0000:fe: Unknown NUMA node; performance will be reduced
Jul 28 11:46:53 revelation kernel: pci_bus 0000:fe: root bus resource [io  0x0000-0xffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:fe: root bus resource [mem 0x00000000-0xffffffffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:fe: No busn resource found for root bus, will use [bus fe-ff]
Jul 28 11:46:53 revelation kernel: pci 0000:fe:00.0: [8086:2c70] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:00.1: [8086:2d81] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:02.0: [8086:2d90] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:02.1: [8086:2d91] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:02.2: [8086:2d92] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:02.3: [8086:2d93] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:02.4: [8086:2d94] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:02.5: [8086:2d95] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:03.0: [8086:2d98] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:03.1: [8086:2d99] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:03.2: [8086:2d9a] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:03.4: [8086:2d9c] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:04.0: [8086:2da0] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:04.1: [8086:2da1] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:04.2: [8086:2da2] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:04.3: [8086:2da3] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:05.0: [8086:2da8] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:05.1: [8086:2da9] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:05.2: [8086:2daa] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:05.3: [8086:2dab] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:06.0: [8086:2db0] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:06.1: [8086:2db1] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:06.2: [8086:2db2] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:fe:06.3: [8086:2db3] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci_bus 0000:fe: busn_res: [bus fe-ff] end is updated to fe
Jul 28 11:46:53 revelation kernel: PCI: Discovered peer bus ff
Jul 28 11:46:53 revelation kernel: PCI host bridge to bus 0000:ff
Jul 28 11:46:53 revelation kernel: pci_bus 0000:ff: Unknown NUMA node; performance will be reduced
Jul 28 11:46:53 revelation kernel: pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:ff: root bus resource [mem 0x00000000-0xffffffffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
Jul 28 11:46:53 revelation kernel: pci 0000:ff:00.0: [8086:2c70] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:00.1: [8086:2d81] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:02.0: [8086:2d90] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:02.1: [8086:2d91] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:02.2: [8086:2d92] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:02.3: [8086:2d93] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:02.4: [8086:2d94] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:02.5: [8086:2d95] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:03.0: [8086:2d98] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:03.1: [8086:2d99] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:03.2: [8086:2d9a] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:03.4: [8086:2d9c] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:04.0: [8086:2da0] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:04.1: [8086:2da1] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:04.2: [8086:2da2] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:04.3: [8086:2da3] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:05.0: [8086:2da8] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:05.1: [8086:2da9] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:05.2: [8086:2daa] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:05.3: [8086:2dab] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:06.0: [8086:2db0] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:06.1: [8086:2db1] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:06.2: [8086:2db2] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci 0000:ff:06.3: [8086:2db3] type 00 class 0x060000
Jul 28 11:46:53 revelation kernel: pci_bus 0000:ff: busn_res: [bus ff] end is updated to ff
Jul 28 11:46:53 revelation kernel: Expanded resource Reserved due to conflict with PCI Bus 0000:00
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: vgaarb: setting as boot VGA device
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: vgaarb: bridge control possible
Jul 28 11:46:53 revelation kernel: pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jul 28 11:46:53 revelation kernel: vgaarb: loaded
Jul 28 11:46:53 revelation kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Jul 28 11:46:53 revelation kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Jul 28 11:46:53 revelation kernel: clocksource: Switched to clocksource tsc-early
Jul 28 11:46:53 revelation kernel: VFS: Disk quotas dquot_6.6.0
Jul 28 11:46:53 revelation kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jul 28 11:46:53 revelation kernel: pnp: PnP ACPI init
Jul 28 11:46:53 revelation kernel: system 00:01: [io  0x0500-0x057f] could not be reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [io  0x0400-0x047f] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [io  0x0800-0x081f] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [io  0x0ca2-0x0ca3] could not be reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [io  0x0600-0x061f] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [io  0x0880-0x0883] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [io  0x0ca4-0x0ca5] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [mem 0xfed1c000-0xfed3fffe] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [mem 0xff000000-0xffffffff] could not be reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [mem 0xfe900000-0xfe90001f] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [mem 0xfea00000-0xfea0001f] has been reserved
Jul 28 11:46:53 revelation kernel: system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jul 28 11:46:53 revelation kernel: pnp: PnP ACPI: found 4 devices
Jul 28 11:46:53 revelation kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jul 28 11:46:53 revelation kernel: NET: Registered PF_INET protocol family
Jul 28 11:46:53 revelation kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
Jul 28 11:46:53 revelation kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: TCP: Hash tables configured (established 524288 bind 65536)
Jul 28 11:46:53 revelation kernel: MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: UDP hash table entries: 32768 (order: 8, 1048576 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, vmalloc)
Jul 28 11:46:53 revelation kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jul 28 11:46:53 revelation kernel: NET: Registered PF_XDP protocol family
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000 add_align 100000
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 06] add_size 200000 add_align 100000
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000 add_align 100000
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff] to [bus 08] add_size 200000 add_align 100000
Jul 28 11:46:53 revelation kernel: clipped [mem size 0x000c0000] to [mem size 0x000bb000] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xb1c00000-0xb1dfffff]
Jul 28 11:46:53 revelation kernel: clipped [mem size 0x00000000 64bit pref] to [mem size 0xffffffffffffb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 11:46:53 revelation kernel: clipped [mem size 0x000c0000 64bit pref] to [mem size 0x000bb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 11:46:53 revelation kernel: clipped [mem size 0x000c0000] to [mem size 0x000bb000] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: BAR 14: assigned [mem 0xb2000000-0xb21fffff]
Jul 28 11:46:53 revelation kernel: clipped [mem size 0x00000000 64bit pref] to [mem size 0xffffffffffffb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 11:46:53 revelation kernel: clipped [mem size 0x000c0000 64bit pref] to [mem size 0x000bb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: BAR 15: assigned [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4: BAR 13: assigned [io  0x5000-0x5fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: BAR 13: assigned [io  0x6000-0x6fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jul 28 11:46:53 revelation kernel: pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:01.0:   bridge window [mem 0xb1a00000-0xb1afffff]
Jul 28 11:46:53 revelation kernel: pci 0000:02:00.0: BAR 6: assigned [mem 0xb1960000-0xb197ffff pref]
Jul 28 11:46:53 revelation kernel: pci 0000:00:03.0: PCI bridge to [bus 02]
Jul 28 11:46:53 revelation kernel: pci 0000:00:03.0:   bridge window [io  0x1000-0x1fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:03.0:   bridge window [mem 0xb1900000-0xb19fffff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:07.0: PCI bridge to [bus 03]
Jul 28 11:46:53 revelation kernel: pci 0000:00:09.0: PCI bridge to [bus 04]
Jul 28 11:46:53 revelation kernel: pci 0000:00:0a.0: PCI bridge to [bus 05]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0: PCI bridge to [bus 06]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0:   bridge window [mem 0xb1c00000-0xb1dfffff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.0:   bridge window [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4: PCI bridge to [bus 07]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4:   bridge window [io  0x5000-0x5fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb1000000-0xb18fffff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5:   bridge window [io  0x6000-0x6fff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5:   bridge window [mem 0xb2000000-0xb21fffff]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1c.5:   bridge window [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 11:46:53 revelation kernel: pci 0000:00:1e.0: PCI bridge to [bus 09]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: resource 7 [mem 0xfed40000-0xfedfffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:00: resource 8 [mem 0xb0000000-0xfdffffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:01: resource 1 [mem 0xb1a00000-0xb1afffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:02: resource 1 [mem 0xb1900000-0xb19fffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:06: resource 0 [io  0x4000-0x4fff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:06: resource 1 [mem 0xb1c00000-0xb1dfffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:06: resource 2 [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:07: resource 0 [io  0x5000-0x5fff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:07: resource 1 [mem 0xb1000000-0xb18fffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:07: resource 2 [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:08: resource 0 [io  0x6000-0x6fff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:08: resource 1 [mem 0xb2000000-0xb21fffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:08: resource 2 [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:09: resource 4 [io  0x0000-0x0cf7 window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:09: resource 5 [io  0x0d00-0xffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:09: resource 6 [mem 0x000a0000-0x000bffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:09: resource 7 [mem 0xfed40000-0xfedfffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:09: resource 8 [mem 0xb0000000-0xfdffffff window]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:fe: resource 4 [io  0x0000-0xffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:fe: resource 5 [mem 0x00000000-0xffffffffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:ff: resource 4 [io  0x0000-0xffff]
Jul 28 11:46:53 revelation kernel: pci_bus 0000:ff: resource 5 [mem 0x00000000-0xffffffffff]
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.0: Disabling L0s
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.1: Disabling L0s
Jul 28 11:46:53 revelation kernel: pci 0000:01:00.1: can't disable ASPM; OS doesn't have ASPM control
Jul 28 11:46:53 revelation kernel: PCI: CLS 64 bytes, default 64
Jul 28 11:46:53 revelation kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jul 28 11:46:53 revelation kernel: Trying to unpack rootfs image as initramfs...
Jul 28 11:46:53 revelation kernel: software IO TLB: mapped [mem 0x0000000076000000-0x000000007a000000] (64MB)
Jul 28 11:46:53 revelation kernel: ACPI: bus type thunderbolt registered
Jul 28 11:46:53 revelation kernel: Initialise system trusted keyrings
Jul 28 11:46:53 revelation kernel: Key type blacklist registered
Jul 28 11:46:53 revelation kernel: workingset: timestamp_bits=36 max_order=24 bucket_order=0
Jul 28 11:46:53 revelation kernel: zbud: loaded
Jul 28 11:46:53 revelation kernel: integrity: Platform Keyring initialized
Jul 28 11:46:53 revelation kernel: NET: Registered PF_ALG protocol family
Jul 28 11:46:53 revelation kernel: xor: measuring software checksum speed
Jul 28 11:46:53 revelation kernel:   prefetch64-sse  : 19093 MB/sec
Jul 28 11:46:53 revelation kernel:   generic_sse     : 16316 MB/sec
Jul 28 11:46:53 revelation kernel: xor: using function: prefetch64-sse (19093 MB/sec)
Jul 28 11:46:53 revelation kernel: Key type asymmetric registered
Jul 28 11:46:53 revelation kernel: Asymmetric key parser 'x509' registered
Jul 28 11:46:53 revelation kernel: Running certificate verification selftests
Jul 28 11:46:53 revelation kernel: Loaded X.509 cert 'Certificate verification self-testing key: f58703bb33ce1b73ee02eccdee5b8817518fe3db'
Jul 28 11:46:53 revelation kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Jul 28 11:46:53 revelation kernel: io scheduler mq-deadline registered
Jul 28 11:46:53 revelation kernel: io scheduler kyber registered
Jul 28 11:46:53 revelation kernel: io scheduler bfq registered
Jul 28 11:46:53 revelation kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 25
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:01.0: AER: enabled with IRQ 25
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:03.0: PME: Signaling with IRQ 27
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:03.0: AER: enabled with IRQ 27
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:07.0: PME: Signaling with IRQ 29
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:07.0: AER: enabled with IRQ 29
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:09.0: PME: Signaling with IRQ 31
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:09.0: AER: enabled with IRQ 31
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:0a.0: PME: Signaling with IRQ 33
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:0a.0: AER: enabled with IRQ 33
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 34
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:1c.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 35
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:1c.4: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:1c.5: PME: Signaling with IRQ 36
Jul 28 11:46:53 revelation kernel: pcieport 0000:00:1c.5: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 11:46:53 revelation kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jul 28 11:46:53 revelation kernel: ACPI: \_PR_.CPU0: Found 2 idle states
Jul 28 11:46:53 revelation kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
Jul 28 11:46:53 revelation kernel: ACPI: button: Sleep Button [SLPB]
Jul 28 11:46:53 revelation kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Jul 28 11:46:53 revelation kernel: ACPI: button: Power Button [PWRF]
Jul 28 11:46:53 revelation kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Jul 28 11:46:53 revelation kernel: pstore: Registered erst as persistent store backend
Jul 28 11:46:53 revelation kernel: GHES: APEI firmware first mode is enabled by WHEA _OSC.
Jul 28 11:46:53 revelation kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jul 28 11:46:53 revelation kernel: 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jul 28 11:46:53 revelation kernel: 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Jul 28 11:46:53 revelation kernel: Non-volatile memory driver v1.3
Jul 28 11:46:53 revelation kernel: rdac: device handler registered
Jul 28 11:46:53 revelation kernel: hp_sw: device handler registered
Jul 28 11:46:53 revelation kernel: emc: device handler registered
Jul 28 11:46:53 revelation kernel: alua: device handler registered
Jul 28 11:46:53 revelation kernel: libphy: Fixed MDIO Bus: probed
Jul 28 11:46:53 revelation kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jul 28 11:46:53 revelation kernel: ehci-pci: EHCI PCI platform driver
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1a.7: debug port 1
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1a.7: irq 19, io mem 0xb1b21000
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jul 28 11:46:53 revelation kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Jul 28 11:46:53 revelation kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 11:46:53 revelation kernel: usb usb1: Product: EHCI Host Controller
Jul 28 11:46:53 revelation kernel: usb usb1: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 ehci_hcd
Jul 28 11:46:53 revelation kernel: usb usb1: SerialNumber: 0000:00:1a.7
Jul 28 11:46:53 revelation kernel: hub 1-0:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 1-0:1.0: 6 ports detected
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1d.7: debug port 1
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1d.7: irq 16, io mem 0xb1b20000
Jul 28 11:46:53 revelation kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jul 28 11:46:53 revelation kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Jul 28 11:46:53 revelation kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 11:46:53 revelation kernel: usb usb2: Product: EHCI Host Controller
Jul 28 11:46:53 revelation kernel: usb usb2: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 ehci_hcd
Jul 28 11:46:53 revelation kernel: usb usb2: SerialNumber: 0000:00:1d.7
Jul 28 11:46:53 revelation kernel: hub 2-0:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 2-0:1.0: 6 ports detected
Jul 28 11:46:53 revelation kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jul 28 11:46:53 revelation kernel: ohci-pci: OHCI PCI platform driver
Jul 28 11:46:53 revelation kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.0: irq 19, io port 0x000030c0
Jul 28 11:46:53 revelation kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 11:46:53 revelation kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 11:46:53 revelation kernel: usb usb3: Product: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: usb usb3: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 11:46:53 revelation kernel: usb usb3: SerialNumber: 0000:00:1a.0
Jul 28 11:46:53 revelation kernel: hub 3-0:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 3-0:1.0: 2 ports detected
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.1: irq 19, io port 0x000030a0
Jul 28 11:46:53 revelation kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 11:46:53 revelation kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 11:46:53 revelation kernel: usb usb4: Product: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: usb usb4: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 11:46:53 revelation kernel: usb usb4: SerialNumber: 0000:00:1a.1
Jul 28 11:46:53 revelation kernel: hub 4-0:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 4-0:1.0: 2 ports detected
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.2: detected 2 ports
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1a.2: irq 19, io port 0x00003080
Jul 28 11:46:53 revelation kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 11:46:53 revelation kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 11:46:53 revelation kernel: usb usb5: Product: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: usb usb5: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 11:46:53 revelation kernel: usb usb5: SerialNumber: 0000:00:1a.2
Jul 28 11:46:53 revelation kernel: hub 5-0:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 5-0:1.0: 2 ports detected
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.0: irq 16, io port 0x00003060
Jul 28 11:46:53 revelation kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 11:46:53 revelation kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 11:46:53 revelation kernel: usb usb6: Product: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: usb usb6: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 11:46:53 revelation kernel: usb usb6: SerialNumber: 0000:00:1d.0
Jul 28 11:46:53 revelation kernel: hub 6-0:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 6-0:1.0: 2 ports detected
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.1: irq 16, io port 0x00003040
Jul 28 11:46:53 revelation kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 11:46:53 revelation kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 11:46:53 revelation kernel: usb usb7: Product: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: usb usb7: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 11:46:53 revelation kernel: usb usb7: SerialNumber: 0000:00:1d.1
Jul 28 11:46:53 revelation kernel: hub 7-0:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 7-0:1.0: 2 ports detected
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
Jul 28 11:46:53 revelation kernel: uhci_hcd 0000:00:1d.2: irq 16, io port 0x00003020
Jul 28 11:46:53 revelation kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 11:46:53 revelation kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 11:46:53 revelation kernel: usb usb8: Product: UHCI Host Controller
Jul 28 11:46:53 revelation kernel: usb usb8: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 11:46:53 revelation kernel: usb usb8: SerialNumber: 0000:00:1d.2
Jul 28 11:46:53 revelation kernel: hub 8-0:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 8-0:1.0: 2 ports detected
Jul 28 11:46:53 revelation kernel: usbcore: registered new interface driver usbserial_generic
Jul 28 11:46:53 revelation kernel: usbserial: USB Serial support registered for generic
Jul 28 11:46:53 revelation kernel: i8042: PNP: No PS/2 controller found.
Jul 28 11:46:53 revelation kernel: mousedev: PS/2 mouse device common for all mice
Jul 28 11:46:53 revelation kernel: rtc_cmos 00:00: RTC can wake from S4
Jul 28 11:46:53 revelation kernel: rtc_cmos 00:00: registered as rtc0
Jul 28 11:46:53 revelation kernel: rtc_cmos 00:00: setting system clock to 2023-07-28T10:46:52 UTC (1690541212)
Jul 28 11:46:53 revelation kernel: rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jul 28 11:46:53 revelation kernel: intel_pstate: CPU model not supported
Jul 28 11:46:53 revelation kernel: hid: raw HID events driver (C) Jiri Kosina
Jul 28 11:46:53 revelation kernel: usbcore: registered new interface driver usbhid
Jul 28 11:46:53 revelation kernel: usbhid: USB HID core driver
Jul 28 11:46:53 revelation kernel: drop_monitor: Initializing network drop monitor service
Jul 28 11:46:53 revelation kernel: Initializing XFRM netlink socket
Jul 28 11:46:53 revelation kernel: NET: Registered PF_INET6 protocol family
Jul 28 11:46:53 revelation kernel: Segment Routing with IPv6
Jul 28 11:46:53 revelation kernel: NET: Registered PF_PACKET protocol family
Jul 28 11:46:53 revelation kernel: mpls_gso: MPLS GSO support
Jul 28 11:46:53 revelation kernel: microcode: sig=0x206c2, pf=0x1, revision=0x1f
Jul 28 11:46:53 revelation kernel: microcode: Microcode Update Driver: v2.2.
Jul 28 11:46:53 revelation kernel: IPI shorthand broadcast: enabled
Jul 28 11:46:53 revelation kernel: SSE version of gcm_enc/dec engaged.
Jul 28 11:46:53 revelation kernel: sched_clock: Marking stable (709599139, 31608552)->(808747445, -67539754)
Jul 28 11:46:53 revelation kernel: registered taskstats version 1
Jul 28 11:46:53 revelation kernel: Loading compiled-in X.509 certificates
Jul 28 11:46:53 revelation kernel: Loaded X.509 cert 'Rocky kernel signing key: d64d6c663c66627385ebffd5cb5e33bb7f0b4a98'
Jul 28 11:46:53 revelation kernel: Loaded X.509 cert 'Rocky Enterprise Software Foundation: Rocky Linux Driver Signing Cert 101: ce537f0c615c038114acbb01233a5b62b93a1971'
Jul 28 11:46:53 revelation kernel: Loaded X.509 cert 'Rocky Enterprise Software Foundation: Rocky Linux Kpatch Signing Cert 101: b5ee07c737e57ecbeaed493a51379763b06312c5'
Jul 28 11:46:53 revelation kernel: zswap: loaded using pool lzo/zbud
Jul 28 11:46:53 revelation kernel: page_owner is disabled
Jul 28 11:46:53 revelation kernel: pstore: Using crash dump compression: deflate
Jul 28 11:46:53 revelation kernel: Key type big_key registered
Jul 28 11:46:53 revelation kernel: usb 1-2: new high-speed USB device number 2 using ehci-pci
Jul 28 11:46:53 revelation kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Jul 28 11:46:53 revelation kernel: usb 1-2: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= b.b3
Jul 28 11:46:53 revelation kernel: usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jul 28 11:46:53 revelation kernel: hub 1-2:1.0: USB hub found
Jul 28 11:46:53 revelation kernel: hub 1-2:1.0: 4 ports detected
Jul 28 11:46:53 revelation kernel: usb 2-1: New USB device found, idVendor=05e3, idProduct=0719, bcdDevice= 0.09
Jul 28 11:46:53 revelation kernel: usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=2
Jul 28 11:46:53 revelation kernel: usb 2-1: Product: USB Storage
Jul 28 11:46:53 revelation kernel: usb 2-1: SerialNumber: 000000000033
Jul 28 11:46:53 revelation kernel: Freeing initrd memory: 54396K
Jul 28 11:46:53 revelation kernel: Key type encrypted registered
Jul 28 11:46:53 revelation kernel: ima: No TPM chip found, activating TPM-bypass!
Jul 28 11:46:53 revelation kernel: Loading compiled-in module X.509 certificates
Jul 28 11:46:53 revelation kernel: Loaded X.509 cert 'Rocky kernel signing key: d64d6c663c66627385ebffd5cb5e33bb7f0b4a98'
Jul 28 11:46:53 revelation kernel: ima: Allocated hash algorithm: sha256
Jul 28 11:46:53 revelation kernel: ima: No architecture policies found
Jul 28 11:46:53 revelation kernel: evm: Initialising EVM extended attributes:
Jul 28 11:46:53 revelation kernel: evm: security.selinux
Jul 28 11:46:53 revelation kernel: evm: security.SMACK64 (disabled)
Jul 28 11:46:53 revelation kernel: evm: security.SMACK64EXEC (disabled)
Jul 28 11:46:53 revelation kernel: evm: security.SMACK64TRANSMUTE (disabled)
Jul 28 11:46:53 revelation kernel: evm: security.SMACK64MMAP (disabled)
Jul 28 11:46:53 revelation kernel: evm: security.apparmor (disabled)
Jul 28 11:46:53 revelation kernel: evm: security.ima
Jul 28 11:46:53 revelation kernel: evm: security.capability
Jul 28 11:46:53 revelation kernel: evm: HMAC attrs: 0x1
Jul 28 11:46:53 revelation kernel: usb 1-3: new high-speed USB device number 3 using ehci-pci
Jul 28 11:46:53 revelation kernel: usb 7-1: new low-speed USB device number 2 using uhci_hcd
Jul 28 11:46:53 revelation kernel: usb 1-3: New USB device found, idVendor=148f, idProduct=3070, bcdDevice= 1.01
Jul 28 11:46:53 revelation kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 11:46:53 revelation kernel: usb 1-3: Product: 802.11 n WLAN
Jul 28 11:46:53 revelation kernel: usb 1-3: Manufacturer: Ralink
Jul 28 11:46:53 revelation kernel: usb 1-3: SerialNumber: 1.0
Jul 28 11:46:53 revelation kernel: Freeing unused decrypted memory: 2036K
Jul 28 11:46:53 revelation kernel: Freeing unused kernel image (initmem) memory: 2792K
Jul 28 11:46:53 revelation kernel: Write protecting the kernel read-only data: 26624k
Jul 28 11:46:53 revelation kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
Jul 28 11:46:53 revelation kernel: Freeing unused kernel image (rodata/data gap) memory: 60K
Jul 28 11:46:53 revelation kernel: usb 1-2.2: new high-speed USB device number 4 using ehci-pci
Jul 28 11:46:53 revelation kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jul 28 11:46:53 revelation kernel: x86/mm: Checking user space page tables
Jul 28 11:46:53 revelation kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jul 28 11:46:53 revelation kernel: Run /init as init process
Jul 28 11:46:53 revelation kernel: usb 7-1: New USB device found, idVendor=046d, idProduct=c05a, bcdDevice=63.00
Jul 28 11:46:53 revelation kernel: usb 1-2.2: New USB device found, idVendor=03f0, idProduct=5a07, bcdDevice=11.00
Jul 28 11:46:53 revelation kernel: usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jul 28 11:46:53 revelation kernel: usb 1-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 11:46:53 revelation kernel: usb 7-1: Product: USB Optical Mouse
Jul 28 11:46:53 revelation kernel: usb 1-2.2: Product: v220b
Jul 28 11:46:53 revelation kernel: usb 7-1: Manufacturer: Logitech
Jul 28 11:46:53 revelation kernel: usb 1-2.2: Manufacturer: HP
Jul 28 11:46:53 revelation kernel: usb 1-2.2: SerialNumber: 0323515010011859
Jul 28 11:46:53 revelation systemd[1]: systemd 252-14.el9_2.1 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jul 28 11:46:53 revelation kernel: input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/0003:046D:C05A.0001/input/input2
Jul 28 11:46:53 revelation kernel: hid-generic 0003:046D:C05A.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.1-1/input0
Jul 28 11:46:53 revelation systemd[1]: Detected architecture x86-64.
Jul 28 11:46:53 revelation systemd[1]: Running in initrd.
Jul 28 11:46:53 revelation systemd[1]: Hostname set to <revelation>.
Jul 28 11:46:53 revelation kernel: tsc: Refined TSC clocksource calibration: 3458.389 MHz
Jul 28 11:46:53 revelation kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31d9c4802aa, max_idle_ns: 440795229719 ns
Jul 28 11:46:53 revelation kernel: clocksource: Switched to clocksource tsc
Jul 28 11:46:53 revelation systemd[1]: Queued start job for default target Initrd Default Target.
Jul 28 11:46:53 revelation systemd[1]: Created slice Slice /system/systemd-hibernate-resume.
Jul 28 11:46:53 revelation systemd[1]: Reached target Initrd /usr File System.
Jul 28 11:46:53 revelation systemd[1]: Reached target Slice Units.
Jul 28 11:46:53 revelation systemd[1]: Reached target Swaps.
Jul 28 11:46:53 revelation systemd[1]: Reached target Timer Units.
Jul 28 11:46:53 revelation systemd[1]: Listening on D-Bus System Message Bus Socket.
Jul 28 11:46:53 revelation systemd[1]: Listening on Journal Socket (/dev/log).
Jul 28 11:46:53 revelation systemd[1]: Listening on Journal Socket.
Jul 28 11:46:53 revelation systemd[1]: Listening on udev Control Socket.
Jul 28 11:46:53 revelation systemd[1]: Listening on udev Kernel Socket.
Jul 28 11:46:53 revelation systemd[1]: Reached target Socket Units.
Jul 28 11:46:53 revelation systemd[1]: Starting Create List of Static Device Nodes...
Jul 28 11:46:53 revelation systemd[1]: Starting Journal Service...
Jul 28 11:46:53 revelation systemd[1]: Starting Load Kernel Modules...
Jul 28 11:46:53 revelation systemd[1]: Starting Create System Users...
Jul 28 11:46:53 revelation systemd[1]: Starting Setup Virtual Console...
Jul 28 11:46:53 revelation systemd[1]: Finished Create List of Static Device Nodes.
Jul 28 11:46:53 revelation systemd[1]: Finished Create System Users.
Jul 28 11:46:53 revelation systemd[1]: Starting Create Static Device Nodes in /dev...
Jul 28 11:46:53 revelation kernel: fuse: init (API version 7.36)
Jul 28 11:46:53 revelation systemd[1]: Finished Load Kernel Modules.
Jul 28 11:46:53 revelation systemd[1]: Starting Apply Kernel Variables...
Jul 28 11:46:53 revelation systemd[1]: Finished Create Static Device Nodes in /dev.
Jul 28 11:46:53 revelation systemd[1]: Finished Apply Kernel Variables.
Jul 28 11:46:53 revelation systemd-journald[397]: Journal started
Jul 28 11:46:53 revelation systemd-journald[397]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 11:46:53 revelation systemd-sysusers[399]: Creating group 'nobody' with GID 65534.
Jul 28 11:46:53 revelation systemd-sysusers[399]: Creating group 'users' with GID 100.
Jul 28 11:46:53 revelation systemd-sysusers[399]: Creating group 'dbus' with GID 81.
Jul 28 11:46:53 revelation systemd-sysusers[399]: Creating user 'dbus' (System Message Bus) with UID 81 and GID 81.
Jul 28 11:46:53 revelation systemd-modules-load[398]: Inserted module 'fuse'
Jul 28 11:46:53 revelation systemd-modules-load[398]: Module 'msr' is built in
Jul 28 11:46:53 revelation systemd-sysctl[412]: Couldn't write '1' to 'net/netfilter/nf_conntrack_acct', ignoring: No such file or directory
Jul 28 11:46:53 revelation systemd[1]: Started Journal Service.
Jul 28 11:46:53 revelation systemd[1]: Starting Create Volatile Files and Directories...
Jul 28 11:46:53 revelation systemd[1]: Finished Create Volatile Files and Directories.
Jul 28 11:46:53 revelation systemd[1]: Finished Setup Virtual Console.
Jul 28 11:46:53 revelation systemd[1]: dracut ask for additional cmdline parameters was skipped because no trigger condition checks were met.
Jul 28 11:46:53 revelation systemd[1]: Starting dracut cmdline hook...
Jul 28 11:46:53 revelation dracut-cmdline[419]: dracut-9.2 (Blue Onyx) dracut-057-21.git20230214.el9
Jul 28 11:46:53 revelation dracut-cmdline[419]: Using kernel command line parameters:    BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 11:46:53 revelation kernel: usb 5-1: new full-speed USB device number 2 using uhci_hcd
Jul 28 11:46:53 revelation systemd[1]: Finished dracut cmdline hook.
Jul 28 11:46:53 revelation systemd[1]: Starting dracut pre-udev hook...
Jul 28 11:46:53 revelation kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
Jul 28 11:46:53 revelation kernel: device-mapper: uevent: version 1.0.3
Jul 28 11:46:53 revelation kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
Jul 28 11:46:53 revelation systemd[1]: Finished dracut pre-udev hook.
Jul 28 11:46:53 revelation systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jul 28 11:46:53 revelation systemd-udevd[530]: Using default interface naming scheme 'rhel-9.0'.
Jul 28 11:46:53 revelation systemd[1]: Started Rule-based Manager for Device Events and Files.
Jul 28 11:46:53 revelation systemd[1]: dracut pre-trigger hook was skipped because no trigger condition checks were met.
Jul 28 11:46:53 revelation systemd[1]: Starting Coldplug All udev Devices...
Jul 28 11:46:53 revelation kernel: usb 5-1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
Jul 28 11:46:53 revelation kernel: usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 11:46:53 revelation kernel: usb 5-1: Product: Virtual Keyboard and Mouse
Jul 28 11:46:53 revelation kernel: usb 5-1: Manufacturer: American Megatrends Inc.
Jul 28 11:46:53 revelation kernel: usb 5-1: SerialNumber: serial
Jul 28 11:46:53 revelation kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.0/0003:046B:FF10.0002/input/input3
Jul 28 11:46:53 revelation kernel: hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1/input0
Jul 28 11:46:53 revelation kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.1/0003:046B:FF10.0003/input/input4
Jul 28 11:46:53 revelation kernel: hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1/input1
Jul 28 11:46:53 revelation systemd[1]: sys-module-fuse.device: Failed to enqueue SYSTEMD_WANTS= job, ignoring: Unit sys-fs-fuse-connections.mount not found.
Jul 28 11:46:53 revelation systemd[1]: Finished Coldplug All udev Devices.
Jul 28 11:46:53 revelation systemd[1]: nm-initrd.service was skipped because of an unmet condition check (ConditionPathExists=/run/NetworkManager/initrd/neednet).
Jul 28 11:46:53 revelation systemd[1]: Reached target Network.
Jul 28 11:46:53 revelation systemd[1]: nm-wait-online-initrd.service was skipped because of an unmet condition check (ConditionPathExists=/run/NetworkManager/initrd/neednet).
Jul 28 11:46:53 revelation systemd[1]: Starting dracut initqueue hook...
Jul 28 11:46:53 revelation systemd[1]: Starting Show Plymouth Boot Screen...
Jul 28 11:46:53 revelation systemd[1]: Received SIGRTMIN+20 from PID 553 (plymouthd).
Jul 28 11:46:53 revelation kernel: dca service started, version 1.12.1
Jul 28 11:46:53 revelation kernel: megaraid_sas: loading out-of-tree module taints kernel.
Jul 28 11:46:53 revelation kernel: megaraid_sas: module verification failed: signature and/or required key missing - tainting kernel
Jul 28 11:46:53 revelation kernel: megasas: 07.719.03.00-rc1
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: FW now in Ready state
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: 63 bit DMA mask and 32 bit consistent mask
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: requested/available msix 1/1 poll_queue 0
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: current msix/online cpus#011: (1/24)
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: RDPQ mode#011: (disabled)
Jul 28 11:46:53 revelation systemd[1]: Started Show Plymouth Boot Screen.
Jul 28 11:46:53 revelation systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Jul 28 11:46:53 revelation systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Jul 28 11:46:53 revelation systemd[1]: Reached target Path Units.
Jul 28 11:46:53 revelation kernel: usb 8-2: new low-speed USB device number 2 using uhci_hcd
Jul 28 11:46:53 revelation kernel: igb: Intel(R) Gigabit Ethernet Network Driver
Jul 28 11:46:53 revelation kernel: igb: Copyright (c) 2007-2014 Intel Corporation.
Jul 28 11:46:53 revelation kernel: ACPI: bus type drm_connector registered
Jul 28 11:46:53 revelation kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: controller type#011: iMR(0MB)
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: Online Controller Reset(OCR)#011: Enabled
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: Secure JBOD support#011: No
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: NVMe passthru support#011: No
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: FW provided TM TaskAbort/Reset timeout#011: 0 secs/0 secs
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map support#011: No
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: PCI Lane Margining support#011: No
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: megasas_init_mfi: fw_support_ieee=67108864
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: INIT adapter done
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map is disabled megasas_setup_jbod_map 5839
Jul 28 11:46:53 revelation kernel: mgag200 0000:07:00.0: vgaarb: deactivate vga console
Jul 28 11:46:53 revelation kernel: Console: switching to colour dummy device 80x25
Jul 28 11:46:53 revelation kernel: [drm] Initialized mgag200 1.0.0 20110418 for 0000:07:00.0 on minor 0
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: pci id#011#011: (0x1000)/(0x0073)/(0x1000)/(0x9241)
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: unevenspan support#011: no
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: firmware crash dump#011: no
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map#011: disabled
Jul 28 11:46:53 revelation kernel: megaraid_sas 0000:02:00.0: Max firmware commands: 30 shared with default hw_queues = 1 poll_queues 0
Jul 28 11:46:53 revelation kernel: scsi host0: Avago SAS based MegaRAID driver
Jul 28 11:46:53 revelation kernel: scsi 0:2:0:0: Direct-Access     LSI      MR9240-4i        2.12 PQ: 0 ANSI: 5
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 11:46:53 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 11:46:53 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 11:46:53 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 11:46:53 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 11:46:53 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 11:46:53 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 11:46:53 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 11:46:53 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 11:46:53 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 11:46:53 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 11:46:53 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 11:46:53 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 11:46:53 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 11:46:53 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 11:46:53 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 11:46:53 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 11:46:53 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 11:46:53 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:46:53 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 11:46:53 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:46:53 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: fbcon: mgag200drmfb (fb0) is primary device
Jul 28 11:46:53 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:46:53 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:46:53 revelation kernel: random: fast init done
Jul 28 11:46:53 revelation kernel: scsi 0:2:0:0: Attached scsi generic sg0 type 0
Jul 28 11:46:53 revelation kernel: sd 0:2:0:0: [sda] 1169920000 512-byte logical blocks: (599 GB/558 GiB)
Jul 28 11:46:53 revelation kernel: sd 0:2:0:0: [sda] Write Protect is off
Jul 28 11:46:53 revelation kernel: sd 0:2:0:0: [sda] Write cache: disabled, read cache: disabled, supports DPO and FUA
Jul 28 11:46:53 revelation kernel: sda: sda1 sda2 sda3
Jul 28 11:46:53 revelation kernel: sd 0:2:0:0: [sda] Attached SCSI disk
Jul 28 11:46:54 revelation kernel: usb 8-2: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00
Jul 28 11:46:54 revelation kernel: usb 8-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jul 28 11:46:54 revelation kernel: usb 8-2: Product: USB Keyboard
Jul 28 11:46:54 revelation kernel: usb 8-2: Manufacturer: Logitech
Jul 28 11:46:54 revelation kernel: igb 0000:01:00.0: Intel(R) Gigabit Ethernet Network Connection
Jul 28 11:46:54 revelation kernel: igb 0000:01:00.0: eth0: (PCIe:2.5Gb/s:Width x4) 00:1e:67:08:e3:f8
Jul 28 11:46:54 revelation kernel: igb 0000:01:00.0: eth0: PBA No: Unknown
Jul 28 11:46:54 revelation kernel: igb 0000:01:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Jul 28 11:46:54 revelation kernel: scsi host1: ata_piix
Jul 28 11:46:54 revelation kernel: scsi host2: ata_piix
Jul 28 11:46:54 revelation kernel: ata1: SATA max UDMA/133 cmd 0x3138 ctl 0x314c bmdma 0x3110 irq 18
Jul 28 11:46:54 revelation kernel: ata2: SATA max UDMA/133 cmd 0x3130 ctl 0x3148 bmdma 0x3118 irq 18
Jul 28 11:46:54 revelation kernel: ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
Jul 28 11:46:54 revelation kernel: input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/0003:046D:C31C.0004/input/input5
Jul 28 11:46:54 revelation kernel: hid-generic 0003:046D:C31C.0004: input,hidraw3: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.2-2/input0
Jul 28 11:46:54 revelation kernel: Console: switching to colour frame buffer device 160x64
Jul 28 11:46:54 revelation kernel: input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input6
Jul 28 11:46:54 revelation kernel: input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input7
Jul 28 11:46:54 revelation kernel: mgag200 0000:07:00.0: [drm] fb0: mgag200drmfb frame buffer device
Jul 28 11:46:54 revelation kernel: hid-generic 0003:046D:C31C.0005: input,hidraw4: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.2-2/input1
Jul 28 11:46:54 revelation kernel: scsi host3: ata_piix
Jul 28 11:46:54 revelation kernel: scsi host4: ata_piix
Jul 28 11:46:54 revelation kernel: ata3: SATA max UDMA/133 cmd 0x3128 ctl 0x3144 bmdma 0x30f0 irq 21
Jul 28 11:46:54 revelation kernel: ata4: SATA max UDMA/133 cmd 0x3120 ctl 0x3140 bmdma 0x30f8 irq 21
Jul 28 11:46:54 revelation kernel: igb 0000:01:00.1: Intel(R) Gigabit Ethernet Network Connection
Jul 28 11:46:54 revelation kernel: igb 0000:01:00.1: eth1: (PCIe:2.5Gb/s:Width x4) 00:1e:67:08:e3:f9
Jul 28 11:46:54 revelation kernel: igb 0000:01:00.1: eth1: PBA No: Unknown
Jul 28 11:46:54 revelation kernel: igb 0000:01:00.1: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Jul 28 11:46:54 revelation systemd-udevd[535]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 11:46:54 revelation systemd-udevd[539]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 11:46:54 revelation kernel: usb-storage 2-1:1.0: USB Mass Storage device detected
Jul 28 11:46:54 revelation kernel: scsi host5: usb-storage 2-1:1.0
Jul 28 11:46:54 revelation kernel: usb-storage 1-2.2:1.0: USB Mass Storage device detected
Jul 28 11:46:54 revelation kernel: scsi host6: usb-storage 1-2.2:1.0
Jul 28 11:46:54 revelation kernel: usbcore: registered new interface driver usb-storage
Jul 28 11:46:54 revelation kernel: usbcore: registered new interface driver uas
Jul 28 11:46:54 revelation kernel: ata3: SATA link down (SStatus 4 SControl 300)
Jul 28 11:46:54 revelation kernel: ata4: SATA link down (SStatus 0 SControl 300)
Jul 28 11:46:54 revelation kernel: ata2.00: SATA link down (SStatus 0 SControl 300)
Jul 28 11:46:54 revelation kernel: ata2.01: SATA link down (SStatus 0 SControl 300)
Jul 28 11:46:54 revelation kernel: ata1.00: SATA link down (SStatus 0 SControl 300)
Jul 28 11:46:54 revelation kernel: ata1.01: SATA link down (SStatus 0 SControl 300)
Jul 28 11:46:55 revelation kernel: random: crng init done
Jul 28 11:46:55 revelation dracut-initqueue[695]: Scanning devices sda2  for LVM logical volumes vg_revelationr9/root
Jul 28 11:46:55 revelation dracut-initqueue[695]: vg_revelationr9/swap
Jul 28 11:46:55 revelation dracut-initqueue[695]:  vg_revelationr9/root linear
Jul 28 11:46:55 revelation dracut-initqueue[695]:  vg_revelationr9/swap linear
Jul 28 11:46:55 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-root.
Jul 28 11:46:55 revelation systemd[1]: Reached target Initrd Root Device.
Jul 28 11:46:55 revelation kernel: scsi 5:0:0:0: CD-ROM            TEAC     DV-28S-W         1.2A PQ: 0 ANSI: 0
Jul 28 11:46:55 revelation kernel: scsi 5:0:0:0: Attached scsi generic sg1 type 5
Jul 28 11:46:55 revelation kernel: sr 5:0:0:0: [sr0] scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray
Jul 28 11:46:55 revelation kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jul 28 11:46:55 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-swap.
Jul 28 11:46:55 revelation systemd[1]: Starting Resume from hibernation using device /dev/mapper/vg_revelationr9-swap...
Jul 28 11:46:55 revelation systemd-hibernate-resume[732]: Could not resume from '/dev/mapper/vg_revelationr9-swap' (253:1).
Jul 28 11:46:55 revelation systemd[1]: systemd-hibernate-resume@dev-mapper-vg_revelationr9\x2dswap.service: Deactivated successfully.
Jul 28 11:46:55 revelation systemd[1]: Finished Resume from hibernation using device /dev/mapper/vg_revelationr9-swap.
Jul 28 11:46:55 revelation systemd[1]: Reached target Preparation for Local File Systems.
Jul 28 11:46:55 revelation systemd[1]: Reached target Local File Systems.
Jul 28 11:46:55 revelation systemd[1]: Reached target System Initialization.
Jul 28 11:46:55 revelation systemd[1]: Reached target Basic System.
Jul 28 11:46:55 revelation kernel: scsi 6:0:0:0: Direct-Access     hp       v220b            1100 PQ: 0 ANSI: 4
Jul 28 11:46:55 revelation kernel: scsi 6:0:0:0: alua: supports implicit and explicit TPGS
Jul 28 11:46:55 revelation kernel: scsi 6:0:0:0: alua: No target port descriptors found
Jul 28 11:46:55 revelation kernel: sd 6:0:0:0: Attached scsi generic sg2 type 0
Jul 28 11:46:55 revelation kernel: sd 6:0:0:0: [sdb] 31506432 512-byte logical blocks: (16.1 GB/15.0 GiB)
Jul 28 11:46:55 revelation kernel: sd 6:0:0:0: [sdb] Write Protect is off
Jul 28 11:46:55 revelation kernel: sd 6:0:0:0: [sdb] No Caching mode page found
Jul 28 11:46:55 revelation kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
Jul 28 11:46:55 revelation kernel: sdb: sdb1 sdb2 sdb3 sdb4
Jul 28 11:46:55 revelation kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Jul 28 11:46:55 revelation systemd[1]: Finished dracut initqueue hook.
Jul 28 11:46:55 revelation systemd[1]: Reached target Preparation for Remote File Systems.
Jul 28 11:46:55 revelation systemd[1]: Reached target Remote File Systems.
Jul 28 11:46:55 revelation systemd[1]: dracut pre-mount hook was skipped because no trigger condition checks were met.
Jul 28 11:46:55 revelation systemd[1]: Starting File System Check on /dev/mapper/vg_revelationr9-root...
Jul 28 11:46:55 revelation systemd-fsck[750]: revr9root: clean, 618905/4587520 files, 5980639/18350080 blocks
Jul 28 11:46:55 revelation systemd[1]: Finished File System Check on /dev/mapper/vg_revelationr9-root.
Jul 28 11:46:55 revelation systemd[1]: Mounting /sysroot...
Jul 28 11:46:56 revelation kernel: EXT4-fs (dm-0): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 11:46:56 revelation systemd[1]: Mounted /sysroot.
Jul 28 11:46:56 revelation systemd[1]: Reached target Initrd Root File System.
Jul 28 11:46:56 revelation systemd[1]: Starting Mountpoints Configured in the Real Root...
Jul 28 11:46:56 revelation systemd[1]: initrd-parse-etc.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Finished Mountpoints Configured in the Real Root.
Jul 28 11:46:56 revelation systemd[1]: Reached target Initrd File Systems.
Jul 28 11:46:56 revelation systemd[1]: Reached target Initrd Default Target.
Jul 28 11:46:56 revelation systemd[1]: dracut mount hook was skipped because no trigger condition checks were met.
Jul 28 11:46:56 revelation systemd[1]: Starting dracut pre-pivot and cleanup hook...
Jul 28 11:46:56 revelation systemd[1]: Finished dracut pre-pivot and cleanup hook.
Jul 28 11:46:56 revelation systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Jul 28 11:46:56 revelation systemd[1]: Stopped target Network.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Timer Units.
Jul 28 11:46:56 revelation systemd[1]: dbus.socket: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Closed D-Bus System Message Bus Socket.
Jul 28 11:46:56 revelation systemd[1]: dracut-pre-pivot.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped dracut pre-pivot and cleanup hook.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Initrd Default Target.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Basic System.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Initrd Root Device.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Initrd /usr File System.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Path Units.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Remote File Systems.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Preparation for Remote File Systems.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Slice Units.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Socket Units.
Jul 28 11:46:56 revelation systemd[1]: Stopped target System Initialization.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Local File Systems.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Preparation for Local File Systems.
Jul 28 11:46:56 revelation systemd[1]: Stopped target Swaps.
Jul 28 11:46:56 revelation systemd[1]: dracut-initqueue.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped dracut initqueue hook.
Jul 28 11:46:56 revelation systemd[1]: Starting Plymouth switch root service...
Jul 28 11:46:56 revelation systemd[1]: systemd-sysctl.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped Apply Kernel Variables.
Jul 28 11:46:56 revelation systemd[1]: systemd-modules-load.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped Load Kernel Modules.
Jul 28 11:46:56 revelation systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped Create Volatile Files and Directories.
Jul 28 11:46:56 revelation systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped Coldplug All udev Devices.
Jul 28 11:46:56 revelation systemd[1]: Stopping Rule-based Manager for Device Events and Files...
Jul 28 11:46:56 revelation systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup.service.mount: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: run-credentials-systemd\x2dsysctl.service.mount: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: initrd-cleanup.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
Jul 28 11:46:56 revelation systemd[1]: systemd-udevd.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped Rule-based Manager for Device Events and Files.
Jul 28 11:46:56 revelation systemd[1]: systemd-udevd.service: Consumed 1.717s CPU time.
Jul 28 11:46:56 revelation systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Closed udev Control Socket.
Jul 28 11:46:56 revelation systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Closed udev Kernel Socket.
Jul 28 11:46:56 revelation systemd[1]: dracut-pre-udev.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped dracut pre-udev hook.
Jul 28 11:46:56 revelation systemd[1]: dracut-cmdline.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped dracut cmdline hook.
Jul 28 11:46:56 revelation systemd[1]: Starting Cleanup udev Database...
Jul 28 11:46:56 revelation systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped Create Static Device Nodes in /dev.
Jul 28 11:46:56 revelation systemd[1]: kmod-static-nodes.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped Create List of Static Device Nodes.
Jul 28 11:46:56 revelation systemd[1]: systemd-sysusers.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Stopped Create System Users.
Jul 28 11:46:56 revelation systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev.service.mount: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: run-credentials-systemd\x2dsysusers.service.mount: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
Jul 28 11:46:56 revelation systemd[1]: Finished Cleanup udev Database.
Jul 28 11:46:56 revelation systemd[1]: Reached target Switch Root.
Jul 28 11:46:56 revelation systemd[1]: Finished Plymouth switch root service.
Jul 28 11:46:56 revelation systemd[1]: Starting Switch Root...
Jul 28 11:46:56 revelation systemd[1]: Switching root.
Jul 28 11:46:56 revelation systemd-journald[397]: Journal stopped
Jul 28 11:46:59 revelation systemd-journald[397]: Received SIGTERM from PID 1 (systemd).
Jul 28 11:46:59 revelation kernel: audit: type=1404 audit(1690541216.973:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
Jul 28 11:46:59 revelation kernel: SELinux:  policy capability network_peer_controls=1
Jul 28 11:46:59 revelation kernel: SELinux:  policy capability open_perms=1
Jul 28 11:46:59 revelation kernel: SELinux:  policy capability extended_socket_class=1
Jul 28 11:46:59 revelation kernel: SELinux:  policy capability always_check_network=0
Jul 28 11:46:59 revelation kernel: SELinux:  policy capability cgroup_seclabel=1
Jul 28 11:46:59 revelation kernel: SELinux:  policy capability nnp_nosuid_transition=1
Jul 28 11:46:59 revelation kernel: SELinux:  policy capability genfs_seclabel_symlinks=1
Jul 28 11:46:59 revelation kernel: audit: type=1403 audit(1690541217.150:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
Jul 28 11:46:59 revelation systemd[1]: Successfully loaded SELinux policy in 190.295ms.
Jul 28 11:46:59 revelation systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 61.578ms.
Jul 28 11:46:59 revelation systemd[1]: systemd 252-14.el9_2.1 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jul 28 11:46:59 revelation systemd[1]: Detected architecture x86-64.
Jul 28 11:46:59 revelation systemd-rc-local-generator[805]: /etc/rc.d/rc.local is not marked executable, skipping.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd-fstab-generator[800]: Mount point none is not a valid path, ignoring.
Jul 28 11:46:59 revelation systemd[1]: initrd-switch-root.service: Deactivated successfully.
Jul 28 11:46:59 revelation systemd[1]: Stopped Switch Root.
Jul 28 11:46:59 revelation systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Jul 28 11:46:59 revelation systemd[1]: Created slice Slice /system/getty.
Jul 28 11:46:59 revelation systemd[1]: Created slice Slice /system/modprobe.
Jul 28 11:46:59 revelation systemd[1]: Created slice Slice /system/sshd-keygen.
Jul 28 11:46:59 revelation systemd[1]: Created slice Cryptsetup Units Slice.
Jul 28 11:46:59 revelation systemd[1]: Created slice Slice /system/systemd-fsck.
Jul 28 11:46:59 revelation systemd[1]: Created slice User and Session Slice.
Jul 28 11:46:59 revelation systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Jul 28 11:46:59 revelation systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jul 28 11:46:59 revelation systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jul 28 11:46:59 revelation systemd[1]: Reached target Login Prompts.
Jul 28 11:46:59 revelation systemd[1]: Stopped target Switch Root.
Jul 28 11:46:59 revelation systemd[1]: Stopped target Initrd File Systems.
Jul 28 11:46:59 revelation systemd[1]: Stopped target Initrd Root File System.
Jul 28 11:46:59 revelation systemd[1]: Reached target Local Integrity Protected Volumes.
Jul 28 11:46:59 revelation systemd[1]: Reached target Slice Units.
Jul 28 11:46:59 revelation systemd[1]: Reached target Local Verity Protected Volumes.
Jul 28 11:46:59 revelation systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jul 28 11:46:59 revelation systemd[1]: Listening on LVM2 poll daemon socket.
Jul 28 11:46:59 revelation systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
Jul 28 11:46:59 revelation systemd[1]: Listening on Process Core Dump Socket.
Jul 28 11:46:59 revelation systemd[1]: Listening on initctl Compatibility Named Pipe.
Jul 28 11:46:59 revelation systemd[1]: Listening on udev Control Socket.
Jul 28 11:46:59 revelation systemd[1]: Listening on udev Kernel Socket.
Jul 28 11:46:59 revelation systemd[1]: Mounting Huge Pages File System...
Jul 28 11:46:59 revelation systemd[1]: Mounting POSIX Message Queue File System...
Jul 28 11:46:59 revelation systemd[1]: Mounting Kernel Debug File System...
Jul 28 11:46:59 revelation systemd[1]: Mounting Kernel Trace File System...
Jul 28 11:46:59 revelation systemd[1]: Starting Create List of Static Device Nodes...
Jul 28 11:46:59 revelation systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jul 28 11:46:59 revelation systemd[1]: Starting Load Kernel Module configfs...
Jul 28 11:46:59 revelation systemd[1]: Starting Load Kernel Module drm...
Jul 28 11:46:59 revelation systemd[1]: Starting Load Kernel Module fuse...
Jul 28 11:46:59 revelation systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
Jul 28 11:46:59 revelation systemd[1]: plymouth-switch-root.service: Deactivated successfully.
Jul 28 11:46:59 revelation systemd[1]: Stopped Plymouth switch root service.
Jul 28 11:46:59 revelation systemd[1]: Stopped Journal Service.
Jul 28 11:46:59 revelation systemd[1]: Starting Journal Service...
Jul 28 11:46:59 revelation systemd[1]: Starting Load Kernel Modules...
Jul 28 11:46:59 revelation systemd[1]: Starting Generate network units from Kernel command line...
Jul 28 11:46:59 revelation systemd[1]: Starting Remount Root and Kernel File Systems...
Jul 28 11:46:59 revelation systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Jul 28 11:46:59 revelation systemd-journald[833]: Journal started
Jul 28 11:46:59 revelation systemd-journald[833]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 11:46:59 revelation systemd[1]: Queued start job for default target Graphical Interface.
Jul 28 11:46:59 revelation systemd[1]: systemd-journald.service: Deactivated successfully.
Jul 28 11:46:59 revelation systemd-modules-load[834]: Module 'msr' is built in
Jul 28 11:46:59 revelation systemd[1]: Starting Coldplug All udev Devices...
Jul 28 11:46:59 revelation systemd[1]: Started Journal Service.
Jul 28 11:46:59 revelation systemd[1]: Mounted Huge Pages File System.
Jul 28 11:46:59 revelation systemd[1]: Mounted POSIX Message Queue File System.
Jul 28 11:46:59 revelation systemd[1]: Mounted Kernel Debug File System.
Jul 28 11:46:59 revelation kernel: EXT4-fs (dm-0): re-mounted. Quota mode: none.
Jul 28 11:46:59 revelation systemd[1]: Mounted Kernel Trace File System.
Jul 28 11:46:59 revelation systemd[1]: Finished Create List of Static Device Nodes.
Jul 28 11:46:59 revelation systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jul 28 11:46:59 revelation systemd[1]: Finished Load Kernel Module configfs.
Jul 28 11:46:59 revelation systemd[1]: modprobe@drm.service: Deactivated successfully.
Jul 28 11:46:59 revelation systemd[1]: Finished Load Kernel Module drm.
Jul 28 11:46:59 revelation systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jul 28 11:46:59 revelation systemd[1]: Finished Load Kernel Module fuse.
Jul 28 11:46:59 revelation systemd[1]: Finished Read and set NIS domainname from /etc/sysconfig/network.
Jul 28 11:46:59 revelation systemd[1]: Finished Load Kernel Modules.
Jul 28 11:46:59 revelation systemd[1]: Finished Generate network units from Kernel command line.
Jul 28 11:46:59 revelation systemd[1]: Finished Remount Root and Kernel File Systems.
Jul 28 11:46:59 revelation systemd[1]: Mounting FUSE Control File System...
Jul 28 11:46:59 revelation systemd[1]: Mounting Kernel Configuration File System...
Jul 28 11:46:59 revelation systemd[1]: Special handling of early boot iSCSI sessions was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session).
Jul 28 11:46:59 revelation systemd[1]: OSTree Remount OS/ Bind Mounts was skipped because of an unmet condition check (ConditionKernelCommandLine=ostree).
Jul 28 11:46:59 revelation systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jul 28 11:46:59 revelation systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Jul 28 11:46:59 revelation systemd[1]: Starting Flush Journal to Persistent Storage...
Jul 28 11:46:59 revelation systemd[1]: Starting Load/Save Random Seed...
Jul 28 11:46:59 revelation systemd[1]: Starting Apply Kernel Variables...
Jul 28 11:46:59 revelation systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Jul 28 11:46:59 revelation systemd[1]: Starting Create Static Device Nodes in /dev...
Jul 28 11:46:59 revelation systemd[1]: Mounted FUSE Control File System.
Jul 28 11:46:59 revelation systemd[1]: Mounted Kernel Configuration File System.
Jul 28 11:46:59 revelation lvm[828]:  2 logical volume(s) in volume group "vg_revelationr9" monitored
Jul 28 11:46:59 revelation systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jul 28 11:46:59 revelation systemd-journald[833]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 11:46:59 revelation systemd-journald[833]: Received client request to flush runtime journal.
Jul 28 11:46:59 revelation systemd[1]: Finished Coldplug All udev Devices.
Jul 28 11:46:59 revelation systemd[1]: Starting Wait for udev To Complete Device Initialization...
Jul 28 11:46:59 revelation systemd[1]: Finished Flush Journal to Persistent Storage.
Jul 28 11:46:59 revelation udevadm[850]: systemd-udev-settle.service is deprecated. Please fix multipathd.service not to pull it in.
Jul 28 11:46:59 revelation systemd[1]: Finished Load/Save Random Seed.
Jul 28 11:46:59 revelation systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jul 28 11:46:59 revelation systemd[1]: Starting Cryptography Setup for swap...
Jul 28 11:46:59 revelation systemd-sysctl[844]: Couldn't write '1' to 'net/netfilter/nf_conntrack_acct', ignoring: No such file or directory
Jul 28 11:46:59 revelation systemd[1]: Finished Apply Kernel Variables.
Jul 28 11:46:59 revelation systemd-cryptsetup[851]: Set cipher aes, mode xts-essiv:sha256, key size 256 bits for device /dev/vg_revelationr9/swap.
Jul 28 11:47:00 revelation systemd[1]: Finished Create Static Device Nodes in /dev.
Jul 28 11:47:00 revelation systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jul 28 11:47:00 revelation kernel: alg: No test for essiv(xts(aes),sha256) (essiv(xts-aes-aesni,sha256-ssse3))
Jul 28 11:47:00 revelation systemd-udevd[858]: Using default interface naming scheme 'rhel-9.0'.
Jul 28 11:47:00 revelation systemd[1]: Started Rule-based Manager for Device Events and Files.
Jul 28 11:47:00 revelation systemd[1]: Starting Load Kernel Module configfs...
Jul 28 11:47:00 revelation systemd[1]: Starting Load Kernel Module fuse...
Jul 28 11:47:00 revelation systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jul 28 11:47:00 revelation systemd[1]: Finished Load Kernel Module fuse.
Jul 28 11:47:00 revelation systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jul 28 11:47:00 revelation systemd[1]: Finished Load Kernel Module configfs.
Jul 28 11:47:00 revelation kernel: IPMI message handler: version 39.2
Jul 28 11:47:00 revelation kernel: ipmi device interface
Jul 28 11:47:00 revelation kernel: ipmi_si: IPMI System Interface driver
Jul 28 11:47:00 revelation kernel: ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
Jul 28 11:47:00 revelation kernel: ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Jul 28 11:47:00 revelation kernel: ipmi_si: Adding SMBIOS-specified kcs state machine
Jul 28 11:47:00 revelation kernel: ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
Jul 28 11:47:00 revelation kernel: ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
Jul 28 11:47:00 revelation kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Jul 28 11:47:00 revelation kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000428-0x000000000000042F (\GPE0) (20211217/utaddress-204)
Jul 28 11:47:00 revelation kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jul 28 11:47:00 revelation kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000052F (\_SI.SIOR) (20211217/utaddress-204)
Jul 28 11:47:00 revelation kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jul 28 11:47:00 revelation kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
Jul 28 11:47:00 revelation kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Jul 28 11:47:00 revelation kernel: EDAC MC1: Giving out device to module i7core_edac.c controller i7 core #1: DEV 0000:fe:03.0 (INTERRUPT)
Jul 28 11:47:00 revelation kernel: EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:fe:03.0 (POLLED)
Jul 28 11:47:00 revelation kernel: EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (INTERRUPT)
Jul 28 11:47:00 revelation kernel: EDAC PCI1: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jul 28 11:47:00 revelation kernel: EDAC i7core: Driver loaded, 2 memory controller(s) found.
Jul 28 11:47:00 revelation mtp-probe[949]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2.2"
Jul 28 11:47:00 revelation mtp-probe[952]: checking bus 5, device 2: "/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1"
Jul 28 11:47:00 revelation mtp-probe[951]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-3"
Jul 28 11:47:00 revelation mtp-probe[948]: checking bus 7, device 2: "/sys/devices/pci0000:00/0000:00:1d.1/usb7/7-1"
Jul 28 11:47:00 revelation kernel: ioatdma: Intel(R) QuickData Technology Driver 5.00
Jul 28 11:47:00 revelation mtp-probe[947]: checking bus 8, device 2: "/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2"
Jul 28 11:47:00 revelation mtp-probe[949]: bus: 1, device: 4 was not an MTP device
Jul 28 11:47:00 revelation mtp-probe[951]: bus: 1, device: 3 was not an MTP device
Jul 28 11:47:00 revelation mtp-probe[948]: bus: 7, device: 2 was not an MTP device
Jul 28 11:47:00 revelation mtp-probe[947]: bus: 8, device: 2 was not an MTP device
Jul 28 11:47:00 revelation mtp-probe[952]: bus: 5, device: 2 was not an MTP device
Jul 28 11:47:00 revelation kernel: gpio_ich gpio_ich.2.auto: GPIO from 963 to 1023
Jul 28 11:47:00 revelation kernel: ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
Jul 28 11:47:00 revelation kernel: ipmi_si: Adding ACPI-specified kcs state machine
Jul 28 11:47:00 revelation kernel: ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
Jul 28 11:47:00 revelation mtp-probe[954]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1"
Jul 28 11:47:00 revelation mtp-probe[954]: bus: 2, device: 2 was not an MTP device
Jul 28 11:47:00 revelation kernel: igb 0000:01:00.0: DCA enabled
Jul 28 11:47:00 revelation kernel: igb 0000:01:00.1: DCA enabled
Jul 28 11:47:00 revelation systemd-udevd[928]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 11:47:00 revelation systemd-udevd[878]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 11:47:00 revelation kernel: iTCO_vendor_support: vendor-support=0
Jul 28 11:47:00 revelation kernel: iTCO_wdt iTCO_wdt.1.auto: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
Jul 28 11:47:00 revelation kernel: ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000157, prod_id: 0x003e, dev_id: 0x21)
Jul 28 11:47:00 revelation lvm[974]: PV /dev/sda2 online, VG vg_revelationr9 is complete.
Jul 28 11:47:00 revelation kernel: ipmi_si IPI0001:00: IPMI kcs interface initialized
Jul 28 11:47:00 revelation kernel: ipmi_ssif: IPMI SSIF Interface driver
Jul 28 11:47:00 revelation systemd[1]: Started /usr/sbin/lvm vgchange -aay --autoactivation event vg_revelationr9.
Jul 28 11:47:00 revelation systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jul 28 11:47:01 revelation systemd[1]: Condition check resulted in MR9240-4i boot being skipped.
Jul 28 11:47:01 revelation kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jul 28 11:47:01 revelation kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jul 28 11:47:01 revelation lvm[988]:  3 logical volume(s) in volume group "vg_revelationr9" now active
Jul 28 11:47:01 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-home.
Jul 28 11:47:01 revelation systemd-makefs[1000]: Setting up swapspace version 1, size = 25 GiB (26843541504 bytes)
Jul 28 11:47:01 revelation systemd-makefs[1000]: LABEL=swap, UUID=49c7dcea-fe07-4824-b18e-cadb61a10dc9
Jul 28 11:47:01 revelation systemd-makefs[996]: /dev/mapper/swap successfully formatted as swap (label "swap", uuid 49c7dcea-fe07-4824-b18e-cadb61a10dc9)
Jul 28 11:47:01 revelation systemd[1]: Finished Cryptography Setup for swap.
Jul 28 11:47:01 revelation systemd[1]: Reached target Block Device Preparation for /dev/mapper/swap.
Jul 28 11:47:01 revelation systemd[1]: Reached target Local Encrypted Volumes.
Jul 28 11:47:01 revelation systemd[1]: Found device /dev/mapper/swap.
Jul 28 11:47:01 revelation systemd[1]: Activating swap /dev/mapper/swap...
Jul 28 11:47:01 revelation systemd[1]: lvm-activate-vg_revelationr9.service: Deactivated successfully.
Jul 28 11:47:01 revelation kernel: Adding 26214396k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:26214396k FS
Jul 28 11:47:01 revelation systemd[1]: Activated swap /dev/mapper/swap.
Jul 28 11:47:01 revelation systemd[1]: Reached target Swaps.
Jul 28 11:47:01 revelation kernel: kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jul 28 11:47:01 revelation kernel: usb 1-3: reset high-speed USB device number 3 using ehci-pci
Jul 28 11:47:01 revelation kernel: ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3070, rev 0201 detected
Jul 28 11:47:01 revelation kernel: ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0005 detected
Jul 28 11:47:01 revelation kernel: usbcore: registered new interface driver rt2800usb
Jul 28 11:47:01 revelation systemd[1]: Starting Load/Save RF Kill Switch Status...
Jul 28 11:47:01 revelation systemd-udevd[889]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 11:47:01 revelation wireless[1061]: setting regulatory domain to GB based on timezone (Europe/London)
Jul 28 11:47:01 revelation systemd[1]: Finished Wait for udev To Complete Device Initialization.
Jul 28 11:47:01 revelation systemd[1]: Device-Mapper Multipath Device Controller was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
Jul 28 11:47:01 revelation systemd[1]: Reached target Preparation for Local File Systems.
Jul 28 11:47:01 revelation systemd[1]: Login and scanning of iSCSI devices was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
Jul 28 11:47:01 revelation systemd[1]: Reached target Preparation for Remote File Systems.
Jul 28 11:47:01 revelation systemd[1]: Reached target Remote File Systems.
Jul 28 11:47:01 revelation systemd[1]: Starting File System Check on /dev/disk/by-uuid/e46a2fbb-bf4f-48b9-bd78-23d813638af9...
Jul 28 11:47:01 revelation systemd[1]: Starting File System Check on /dev/mapper/vg_revelationr9-home...
Jul 28 11:47:01 revelation systemd[1]: Started Load/Save RF Kill Switch Status.
Jul 28 11:47:01 revelation systemd[1]: Finished File System Check on /dev/disk/by-uuid/e46a2fbb-bf4f-48b9-bd78-23d813638af9.
Jul 28 11:47:01 revelation systemd[1]: Mounting /boot...
Jul 28 11:47:01 revelation kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 11:47:01 revelation systemd[1]: Mounted /boot.
Jul 28 11:47:01 revelation systemd-fsck[1068]: revr9home: clean, 540097/30244864 files, 99991182/120950784 blocks
Jul 28 11:47:01 revelation systemd[1]: Finished File System Check on /dev/mapper/vg_revelationr9-home.
Jul 28 11:47:01 revelation systemd[1]: Mounting /home...
Jul 28 11:47:01 revelation kernel: EXT4-fs (dm-3): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 11:47:01 revelation systemd[1]: Mounted /home.
Jul 28 11:47:01 revelation systemd[1]: Reached target Local File Systems.
Jul 28 11:47:01 revelation systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Jul 28 11:47:01 revelation systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Jul 28 11:47:01 revelation systemd[1]: Mark the need to relabel after reboot was skipped because of an unmet condition check (ConditionSecurity=!selinux).
Jul 28 11:47:01 revelation systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Jul 28 11:47:01 revelation systemd[1]: Store a System Token in an EFI Variable was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/LoaderFeatures-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 11:47:01 revelation systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Jul 28 11:47:01 revelation systemd[1]: Starting Create Volatile Files and Directories...
Jul 28 11:47:01 revelation systemd[1]: Received SIGRTMIN+20 from PID 553 (plymouthd).
Jul 28 11:47:01 revelation systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Jul 28 11:47:02 revelation systemd[1]: Finished Create Volatile Files and Directories.
Jul 28 11:47:02 revelation systemd[1]: Starting Security Auditing Service...
Jul 28 11:47:02 revelation systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Jul 28 11:47:02 revelation systemd[1]: Starting Network Name Resolution...
Jul 28 11:47:02 revelation systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Jul 28 11:47:02 revelation auditd[1081]: audit dispatcher initialized with q_depth=1200 and 1 active plugins
Jul 28 11:47:02 revelation auditd[1081]: Init complete, auditd 3.0.7 listening for events (startup state enable)
Jul 28 11:47:02 revelation systemd-resolved[1080]: Positive Trust Anchors:
Jul 28 11:47:02 revelation systemd-resolved[1080]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Jul 28 11:47:02 revelation systemd-resolved[1080]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
Jul 28 11:47:02 revelation augenrules[1086]: /sbin/augenrules: No change
Jul 28 11:47:02 revelation augenrules[1096]: No rules
Jul 28 11:47:02 revelation augenrules[1096]: enabled 1
Jul 28 11:47:02 revelation augenrules[1096]: failure 1
Jul 28 11:47:02 revelation augenrules[1096]: pid 1081
Jul 28 11:47:02 revelation augenrules[1096]: rate_limit 0
Jul 28 11:47:02 revelation augenrules[1096]: backlog_limit 8192
Jul 28 11:47:02 revelation augenrules[1096]: lost 0
Jul 28 11:47:02 revelation augenrules[1096]: backlog 4
Jul 28 11:47:02 revelation augenrules[1096]: backlog_wait_time 60000
Jul 28 11:47:02 revelation augenrules[1096]: backlog_wait_time_actual 0
Jul 28 11:47:02 revelation augenrules[1096]: enabled 1
Jul 28 11:47:02 revelation augenrules[1096]: failure 1
Jul 28 11:47:02 revelation augenrules[1096]: pid 1081
Jul 28 11:47:02 revelation augenrules[1096]: rate_limit 0
Jul 28 11:47:02 revelation augenrules[1096]: backlog_limit 8192
Jul 28 11:47:02 revelation augenrules[1096]: lost 0
Jul 28 11:47:02 revelation augenrules[1096]: backlog 4
Jul 28 11:47:02 revelation augenrules[1096]: backlog_wait_time 60000
Jul 28 11:47:02 revelation augenrules[1096]: backlog_wait_time_actual 0
Jul 28 11:47:02 revelation augenrules[1096]: enabled 1
Jul 28 11:47:02 revelation augenrules[1096]: failure 1
Jul 28 11:47:02 revelation augenrules[1096]: pid 1081
Jul 28 11:47:02 revelation augenrules[1096]: rate_limit 0
Jul 28 11:47:02 revelation augenrules[1096]: backlog_limit 8192
Jul 28 11:47:02 revelation augenrules[1096]: lost 0
Jul 28 11:47:02 revelation augenrules[1096]: backlog 4
Jul 28 11:47:02 revelation augenrules[1096]: backlog_wait_time 60000
Jul 28 11:47:02 revelation augenrules[1096]: backlog_wait_time_actual 0
Jul 28 11:47:02 revelation systemd[1]: Started Security Auditing Service.
Jul 28 11:47:02 revelation systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jul 28 11:47:02 revelation systemd-resolved[1080]: Using system hostname 'revelation'.
Jul 28 11:47:02 revelation systemd[1]: Started Network Name Resolution.
Jul 28 11:47:02 revelation systemd[1]: Reached target Host and Network Name Lookups.
Jul 28 11:47:02 revelation systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jul 28 11:47:02 revelation systemd[1]: Reached target System Initialization.
Jul 28 11:47:02 revelation systemd[1]: Started CUPS Scheduler.
Jul 28 11:47:02 revelation systemd[1]: Started Daily rotation of log files.
Jul 28 11:47:02 revelation systemd[1]: Started Updates mlocate database every day.
Jul 28 11:47:02 revelation systemd[1]: Started Daily Cleanup of Temporary Directories.
Jul 28 11:47:02 revelation systemd[1]: Started daily update of the root trust anchor for DNSSEC.
Jul 28 11:47:02 revelation systemd[1]: Reached target Path Units.
Jul 28 11:47:02 revelation systemd[1]: Reached target Timer Units.
Jul 28 11:47:02 revelation systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Jul 28 11:47:02 revelation systemd[1]: Listening on CUPS Scheduler.
Jul 28 11:47:02 revelation systemd[1]: Listening on D-Bus System Message Bus Socket.
Jul 28 11:47:02 revelation systemd[1]: Listening on Open-iSCSI iscsid Socket.
Jul 28 11:47:02 revelation systemd[1]: Listening on Open-iSCSI iscsiuio Socket.
Jul 28 11:47:02 revelation systemd[1]: Listening on SSSD Kerberos Cache Manager responder socket.
Jul 28 11:47:02 revelation systemd[1]: Reached target Socket Units.
Jul 28 11:47:02 revelation systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 11:47:02 revelation systemd[1]: Reached target Basic System.
Jul 28 11:47:02 revelation systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Jul 28 11:47:02 revelation systemd[1]: Starting NTP client/server...
Jul 28 11:47:02 revelation systemd[1]: Starting Restore /run/initramfs on shutdown...
Jul 28 11:47:02 revelation systemd[1]: Starting IPv6 firewall with ip6tables...
Jul 28 11:47:02 revelation systemd[1]: Starting IPv4 firewall with iptables...
Jul 28 11:47:02 revelation systemd[1]: Started irqbalance daemon.
Jul 28 11:47:02 revelation systemd[1]: Starting Crash recovery kernel arming...
Jul 28 11:47:02 revelation systemd[1]: Started libstoragemgmt plug-in server daemon.
Jul 28 11:47:02 revelation systemd[1]: Starting Hardware Monitoring Sensors...
Jul 28 11:47:02 revelation systemd[1]: Low Memory Monitor was skipped because of an unmet condition check (ConditionPathExists=/proc/pressure).
Jul 28 11:47:02 revelation systemd[1]: Started Machine Check Exception Logging Daemon.
Jul 28 11:47:02 revelation systemd[1]: Software RAID monitoring and management was skipped because of an unmet condition check (ConditionPathExists=/etc/mdadm.conf).
Jul 28 11:47:02 revelation systemd[1]: Starting Load CPU microcode update...
Jul 28 11:47:02 revelation systemd[1]: Auto-connect to subsystems on FC-NVME devices found during boot was skipped because of an unmet condition check (ConditionPathExists=/sys/class/fc/fc_udev_device/nvme_discovery).
Jul 28 11:47:02 revelation systemd[1]: Read-Only Sysroot Migration was skipped because of an unmet condition check (ConditionPathIsReadWrite=/sysroot).
Jul 28 11:47:02 revelation systemd[1]: Starting Authorization Manager...
Jul 28 11:47:02 revelation systemd[1]: Starting Postfix Mail Transport Agent...
Jul 28 11:47:02 revelation systemd[1]: Starting Power Profiles daemon...
Jul 28 11:47:02 revelation lm_sensors-modprobe-wrapper[1112]: No sensors with loadable kernel modules configured.
Jul 28 11:47:02 revelation lm_sensors-modprobe-wrapper[1112]: Please, run 'sensors-detect' as root in order to search for available sensors.
Jul 28 11:47:02 revelation systemd[1]: Starting System Logging Service...
Jul 28 11:47:02 revelation systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Jul 28 11:47:02 revelation restorecon[1116]: /usr/sbin/restorecon: lstat(/var/spool/postfix/pid/master.pid) failed: No such file or directory
Jul 28 11:47:02 revelation systemd[1]: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Jul 28 11:47:02 revelation systemd[1]: OpenSSH ecdsa Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 11:47:02 revelation systemd[1]: OpenSSH ed25519 Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 11:47:02 revelation systemd[1]: OpenSSH rsa Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 11:47:02 revelation systemd[1]: Reached target sshd-keygen.target.
Jul 28 11:47:02 revelation systemd[1]: Starting OpenSSH server daemon...
Jul 28 11:47:02 revelation systemd[1]: System Security Services Daemon was skipped because no trigger condition checks were met.
Jul 28 11:47:02 revelation systemd[1]: Reached target User and Group Name Lookups.
Jul 28 11:47:02 revelation systemd[1]: Starting Accounts Service...
Jul 28 11:47:02 revelation systemd[1]: Starting CUPS Scheduler...
Jul 28 11:47:02 revelation systemd[1]: Starting Switcheroo Control Proxy service...
Jul 28 11:47:02 revelation systemd[1]: Starting User Login Management...
Jul 28 11:47:02 revelation systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 11:47:02 revelation systemd[1]: Starting Permit User Sessions...
Jul 28 11:47:02 revelation systemd[1]: Starting Disk Manager...
Jul 28 11:47:02 revelation systemd[1]: Starting Daemon for power management...
Jul 28 11:47:02 revelation systemd[1]: VGAuth Service for open-vm-tools was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Jul 28 11:47:02 revelation systemd[1]: Service for virtual machines hosted on VMware was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Jul 28 11:47:02 revelation systemd[1]: Finished Restore /run/initramfs on shutdown.
Jul 28 11:47:02 revelation systemd[1]: Finished Permit User Sessions.
Jul 28 11:47:02 revelation systemd[1]: Started Deferred execution scheduler.
Jul 28 11:47:02 revelation systemd[1]: Started Command Scheduler.
Jul 28 11:47:02 revelation systemd[1]: Starting D-Bus System Message Bus...
Jul 28 11:47:02 revelation systemd[1]: Starting GNOME Display Manager...
Jul 28 11:47:02 revelation systemd[1]: Starting Hold until boot process finishes up...
Jul 28 11:47:02 revelation avahi-daemon[1104]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70).
Jul 28 11:47:02 revelation avahi-daemon[1104]: Successfully dropped root privileges.
Jul 28 11:47:02 revelation avahi-daemon[1104]: avahi-daemon 0.8 starting up.
Jul 28 11:47:02 revelation systemd-logind[1137]: New seat seat0.
Jul 28 11:47:02 revelation systemd-logind[1137]: Watching system buttons on /dev/input/event1 (Power Button)
Jul 28 11:47:02 revelation systemd-logind[1137]: Watching system buttons on /dev/input/event0 (Sleep Button)
Jul 28 11:47:02 revelation systemd-logind[1137]: Watching system buttons on /dev/input/event5 (Logitech USB Keyboard)
Jul 28 11:47:02 revelation systemd-logind[1137]: Watching system buttons on /dev/input/event7 (Logitech USB Keyboard System Control)
Jul 28 11:47:02 revelation systemd[1]: Finished Hardware Monitoring Sensors.
Jul 28 11:47:02 revelation sshd[1122]: main: sshd: ssh-rsa algorithm is disabled
Jul 28 11:47:03 revelation smartd[1121]: smartd 7.2 2020-12-30 r5155 [x86_64-linux-5.14.0-284.18.1.el9_2.x86_64] (local build)
Jul 28 11:47:03 revelation smartd[1121]: Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org
Jul 28 11:47:03 revelation smartd[1121]: Opened configuration file /etc/smartmontools/smartd.conf
Jul 28 11:47:03 revelation journal[1139]: udisks daemon version 2.9.4 starting
Jul 28 11:47:03 revelation chronyd[1199]: chronyd version 4.3 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +NTS +SECHASH +IPV6 +DEBUG)
Jul 28 11:47:03 revelation smartd[1121]: Configuration file /etc/smartmontools/smartd.conf was parsed, found DEVICESCAN, scanning devices
Jul 28 11:47:03 revelation smartd[1121]: Device: /dev/bus/0 [megaraid_disk_15], opened
Jul 28 11:47:03 revelation systemd[1]: Started OpenSSH server daemon.
Jul 28 11:47:03 revelation cupsd[1135]: Listening to [v1.::1]:631 (IPv6)
Jul 28 11:47:03 revelation cupsd[1135]: Listening to 127.0.0.1:631 (IPv4)
Jul 28 11:47:03 revelation cupsd[1135]: Listening to /run/cups/cups.sock (Domain)
Jul 28 11:47:03 revelation cupsd[1135]: Remote access is disabled.
Jul 28 11:47:03 revelation cupsd[1135]: Loaded configuration file "/etc/cups/cupsd.conf"
Jul 28 11:47:03 revelation cupsd[1135]: Using default TempDir of /var/spool/cups/tmp...
Jul 28 11:47:03 revelation cupsd[1135]: Configured for up to 100 clients.
Jul 28 11:47:03 revelation cupsd[1135]: Allowing up to 100 client connections per host.
Jul 28 11:47:03 revelation cupsd[1135]: Using policy "default" as the default.
Jul 28 11:47:03 revelation cupsd[1135]: Full reload is required.
Jul 28 11:47:03 revelation chronyd[1199]: Frequency 30.765 +/- 0.397 ppm read from /var/lib/chrony/drift
Jul 28 11:47:03 revelation chronyd[1199]: Using right/UTC timezone to obtain leap second data
Jul 28 11:47:03 revelation chronyd[1199]: Loaded seccomp filter (level 2)
Jul 28 11:47:03 revelation systemd[1]: Started NTP client/server.
Jul 28 11:47:03 revelation smartd[1121]: Device: /dev/bus/0 [megaraid_disk_15], [SEAGATE  ST9600205SS      0004], lu id: 0x5000c5005fa39de7, S/N: 6XR49EGA0000M328HZ2Z, 600 GB
Jul 28 11:47:03 revelation rsyslogd[1118]: [origin software="rsyslogd" swVersion="8.2102.0-113.el9_2" x-pid="1118" x-info="https://www.rsyslog.com"] start
Jul 28 11:47:03 revelation systemd[1]: Started System Logging Service.
Jul 28 11:47:03 revelation kernel: Warning: Deprecated Driver is detected: nft_compat will not be maintained in a future major release and may be disabled
Jul 28 11:47:03 revelation systemd[1]: microcode.service: Deactivated successfully.
Jul 28 11:47:03 revelation systemd[1]: Finished Load CPU microcode update.
Jul 28 11:47:03 revelation cupsd[1135]: Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 40 types, 56 filters...
Jul 28 11:47:03 revelation smartd[1121]: Device: /dev/bus/0 [megaraid_disk_15], is SMART capable. Adding to "monitor" list.
Jul 28 11:47:03 revelation smartd[1121]: Device: /dev/bus/0 [megaraid_disk_16], opened
Jul 28 11:47:03 revelation smartd[1121]: Device: /dev/bus/0 [megaraid_disk_16], [SEAGATE  ST9600205SS      0004], lu id: 0x5000c5006851d64f, S/N: 6XR4KQV40000M345FLAP, 600 GB
Jul 28 11:47:03 revelation polkitd[1115]: Started polkitd version 0.117
Jul 28 11:47:04 revelation cupsd[1135]: Printer drivers are deprecated and will stop working in a future version of CUPS. See https://github.com/OpenPrinting/cups/issues/103
Jul 28 11:47:04 revelation cupsd[1135]: Loading job cache file "/var/cache/cups/job.cache"...
Jul 28 11:47:04 revelation cupsd[1135]: Full reload complete.
Jul 28 11:47:04 revelation cupsd[1135]: Cleaning out old files in "/var/spool/cups/tmp".
Jul 28 11:47:04 revelation cupsd[1135]: Cleaning out old files in "/var/cache/cups".
Jul 28 11:47:04 revelation systemd[1]: Started D-Bus System Message Bus.
Jul 28 11:47:04 revelation ip6tables.init[1107]: ip6tables: Applying firewall rules: [  OK  ]
Jul 28 11:47:04 revelation systemd[1]: Finished IPv6 firewall with ip6tables.
Jul 28 11:47:04 revelation journal[1146]: Ready
Jul 28 11:47:04 revelation avahi-daemon[1104]: Successfully called chroot().
Jul 28 11:47:04 revelation avahi-daemon[1104]: Successfully dropped remaining capabilities.
Jul 28 11:47:04 revelation systemd[1]: Started RealtimeKit Scheduling Policy Service.
Jul 28 11:47:04 revelation systemd[1]: Started User Login Management.
Jul 28 11:47:04 revelation systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Jul 28 11:47:04 revelation systemd[1]: Started Switcheroo Control Proxy service.
Jul 28 11:47:04 revelation systemd[1]: Started GNOME Display Manager.
Jul 28 11:47:04 revelation avahi-daemon[1104]: No service file found in /etc/avahi/services.
Jul 28 11:47:04 revelation avahi-daemon[1104]: *** WARNING: Detected another IPv4 mDNS stack running on this host. This makes mDNS unreliable and is thus not recommended. ***
Jul 28 11:47:04 revelation avahi-daemon[1104]: *** WARNING: Detected another IPv6 mDNS stack running on this host. This makes mDNS unreliable and is thus not recommended. ***
Jul 28 11:47:04 revelation avahi-daemon[1104]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Jul 28 11:47:04 revelation avahi-daemon[1104]: New relevant interface lo.IPv6 for mDNS.
Jul 28 11:47:04 revelation avahi-daemon[1104]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Jul 28 11:47:04 revelation avahi-daemon[1104]: New relevant interface lo.IPv4 for mDNS.
Jul 28 11:47:04 revelation avahi-daemon[1104]: Network interface enumeration completed.
Jul 28 11:47:04 revelation avahi-daemon[1104]: Registering new address record for ::1 on lo.*.
Jul 28 11:47:04 revelation avahi-daemon[1104]: Registering new address record for 127.0.0.1 on lo.IPv4.
Jul 28 11:47:04 revelation smartd[1121]: Device: /dev/bus/0 [megaraid_disk_16], is SMART capable. Adding to "monitor" list.
Jul 28 11:47:04 revelation smartd[1121]: Device: /dev/bus/0 [megaraid_disk_15], --capabilites is set, mail notification may not work.
Jul 28 11:47:04 revelation smartd[1121]: Device: /dev/bus/0 [megaraid_disk_16], --capabilites is set, mail notification may not work.
Jul 28 11:47:04 revelation smartd[1121]: Monitoring 0 ATA/SATA, 2 SCSI/SAS and 0 NVMe devices
Jul 28 11:47:04 revelation systemd[1]: Received SIGRTMIN+21 from PID 553 (plymouthd).
Jul 28 11:47:04 revelation systemd[1]: Started Daemon for power management.
Jul 28 11:47:04 revelation systemd[1]: Created slice User Slice of UID 1000.
Jul 28 11:47:04 revelation systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jul 28 11:47:04 revelation systemd[1]: Starting User Runtime Directory /run/user/1000...
Jul 28 11:47:04 revelation systemd[1]: Finished User Runtime Directory /run/user/1000.
Jul 28 11:47:04 revelation systemd[1]: Starting User Manager for UID 1000...
Jul 28 11:47:04 revelation iptables.init[1108]: iptables: Applying firewall rules: [  OK  ]
Jul 28 11:47:04 revelation systemd[1]: Finished IPv4 firewall with iptables.
Jul 28 11:47:04 revelation systemd[1]: Reached target Preparation for Network.
Jul 28 11:47:05 revelation systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Jul 28 11:47:05 revelation avahi-daemon[1104]: Server startup complete. Host name is revelation.local. Local service cookie is 1427045140.
Jul 28 11:47:05 revelation systemd[1]: Started Manage, Install and Generate Color Profiles.
Jul 28 11:47:05 revelation cupsd[1135]: Registering ICC color profiles for "EPSON_ET-4500_Series".
Jul 28 11:47:05 revelation cupsd[1135]: Listening to [v1.::1]:631 on fd 7...
Jul 28 11:47:05 revelation cupsd[1135]: Listening to 127.0.0.1:631 on fd 8...
Jul 28 11:47:05 revelation cupsd[1135]: Listening to /run/cups/cups.sock on fd 3...
Jul 28 11:47:05 revelation cupsd[1135]: Resuming new connection processing...
Jul 28 11:47:05 revelation systemd[1]: Started CUPS Scheduler.
Jul 28 11:47:06 revelation systemd[1]: Started Authorization Manager.
Jul 28 11:47:06 revelation accounts-daemon[1132]: started daemon version 0.6.55
Jul 28 11:47:06 revelation systemd[1]: Starting Modem Manager...
Jul 28 11:47:06 revelation systemd[1]: Started Accounts Service.
Jul 28 11:47:06 revelation systemd[1]: Started Power Profiles daemon.
Jul 28 11:47:06 revelation kdumpctl[1131]: kdump: kexec: loaded kdump kernel
Jul 28 11:47:06 revelation kdumpctl[1131]: kdump: Starting kdump: [OK]
Jul 28 11:47:06 revelation systemd[1]: Finished Crash recovery kernel arming.
Jul 28 11:47:06 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:47:06 revelation systemd[1]: Started Postfix Mail Transport Agent.
Jul 28 11:47:06 revelation systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jul 28 11:47:06 revelation systemd[1]: Created slice User Slice of UID 42.
Jul 28 11:47:06 revelation systemd[1]: Starting User Runtime Directory /run/user/42...
Jul 28 11:47:06 revelation systemd-logind[1137]: New session c1 of user gdm.
Jul 28 11:47:06 revelation systemd[1]: Finished User Runtime Directory /run/user/42.
Jul 28 11:47:06 revelation systemd[1]: Starting User Manager for UID 42...
Jul 28 11:47:06 revelation systemd[1897]: Failed to open configuration file '/var/lib/gdm/.config/systemd/user.conf': Permission denied
Jul 28 11:47:06 revelation systemd[1905]: quadlet-generator[1905]: Can't read "/var/lib/gdm/.config/containers/systemd": open /var/lib/gdm/.config/containers/systemd: permission denied
Jul 28 11:47:06 revelation systemd-xdg-autostart-generator[1907]: Opening /var/lib/gdm/.config/autostart failed, ignoring: Permission denied
Jul 28 11:47:06 revelation ModemManager[1884]: <info>  ModemManager (version 1.20.2-1.el9) starting in system bus...
Jul 28 11:47:07 revelation systemd[1]: Started Disk Manager.
Jul 28 11:47:07 revelation journal[1139]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jul 28 11:47:07 revelation systemd-xdg-autostart-generator[1907]: Exec binary '/usr/libexec/at-spi-bus-launcher' does not exist: Permission denied
Jul 28 11:47:07 revelation systemd-xdg-autostart-generator[1907]: /etc/xdg/autostart/at-spi-dbus-bus.desktop: not generating unit, error parsing Exec= line: Permission denied
Jul 28 11:47:07 revelation systemd-xdg-autostart-generator[1908]: Exec binary '/usr/libexec/gnome-tweak-tool-lid-inhibitor' does not exist: No such file or directory
Jul 28 11:47:07 revelation systemd-xdg-autostart-generator[1908]: /home/rfs/.config/autostart/ignore-lid-switch-tweak.desktop: not generating unit, error parsing Exec= line: No such file or directory
Jul 28 11:47:07 revelation systemd[1897]: Failed to resolve symlink /var/lib/gdm/.config/systemd/user.control, ignoring: Permission denied
Jul 28 11:47:07 revelation systemd[1897]: Failed to resolve symlink /var/lib/gdm/.config/systemd/user, ignoring: Permission denied
Jul 28 11:47:07 revelation systemd[1897]: Failed to resolve symlink /var/lib/gdm/.local/share/systemd/user, ignoring: Permission denied
Jul 28 11:47:07 revelation systemd[1897]: Failed to open "/var/lib/gdm/.config/systemd/user.control", ignoring: Permission denied
Jul 28 11:47:07 revelation systemd[1897]: Failed to open "/var/lib/gdm/.config/systemd/user", ignoring: Permission denied
Jul 28 11:47:07 revelation systemd[1897]: Failed to open "/var/lib/gdm/.local/share/systemd/user", ignoring: Permission denied
Jul 28 11:47:07 revelation kernel: NET: Registered PF_QIPCRTR protocol family
Jul 28 11:47:07 revelation systemd[1]: Started Modem Manager.
Jul 28 11:47:07 revelation rsyslogd[1118]: imjournal: journal files changed, reloading...  [v8.2102.0-113.el9_2 try https://www.rsyslog.com/e/0 ]
Jul 28 11:47:07 revelation systemd[1897]: Queued start job for default target Main User Target.
Jul 28 11:47:07 revelation systemd[1609]: Queued start job for default target Main User Target.
Jul 28 11:47:07 revelation systemd[1897]: Created slice User Application Slice.
Jul 28 11:47:07 revelation systemd[1609]: Created slice User Application Slice.
Jul 28 11:47:07 revelation systemd[1897]: Mark boot as successful after the user session has run 2 minutes was skipped because of an unmet condition check (ConditionUser=!@system).
Jul 28 11:47:07 revelation systemd[1897]: Started Daily Cleanup of User's Temporary Directories.
Jul 28 11:47:07 revelation systemd[1897]: Reached target Paths.
Jul 28 11:47:07 revelation systemd[1897]: Reached target Timers.
Jul 28 11:47:07 revelation systemd[1609]: Started Mark boot as successful after the user session has run 2 minutes.
Jul 28 11:47:07 revelation systemd[1609]: Started Daily Cleanup of User's Temporary Directories.
Jul 28 11:47:07 revelation systemd[1609]: Reached target Paths.
Jul 28 11:47:07 revelation systemd[1609]: Reached target Timers.
Jul 28 11:47:07 revelation systemd[1897]: Starting D-Bus User Message Bus Socket...
Jul 28 11:47:07 revelation systemd[1897]: Listening on PipeWire PulseAudio.
Jul 28 11:47:07 revelation systemd[1897]: Listening on PipeWire Multimedia System Socket.
Jul 28 11:47:07 revelation systemd[1609]: Starting D-Bus User Message Bus Socket...
Jul 28 11:47:07 revelation systemd[1609]: Listening on PipeWire PulseAudio.
Jul 28 11:47:07 revelation systemd[1609]: Listening on PipeWire Multimedia System Socket.
Jul 28 11:47:07 revelation systemd[1897]: Starting Create User's Volatile Files and Directories...
Jul 28 11:47:07 revelation systemd[1941]: systemd-tmpfiles-setup.service: Failed to locate executable systemd-tmpfiles: No such file or directory
Jul 28 11:47:07 revelation systemd[1941]: systemd-tmpfiles-setup.service: Failed at step EXEC spawning systemd-tmpfiles: No such file or directory
Jul 28 11:47:07 revelation systemd[1897]: systemd-tmpfiles-setup.service: Main process exited, code=exited, status=203/EXEC
Jul 28 11:47:07 revelation systemd[1897]: systemd-tmpfiles-setup.service: Failed with result 'exit-code'.
Jul 28 11:47:07 revelation systemd[1609]: Starting Create User's Volatile Files and Directories...
Jul 28 11:47:07 revelation systemd[1897]: Failed to start Create User's Volatile Files and Directories.
Jul 28 11:47:07 revelation systemd[1897]: Listening on D-Bus User Message Bus Socket.
Jul 28 11:47:07 revelation systemd[1897]: Reached target Sockets.
Jul 28 11:47:07 revelation systemd[1897]: Reached target Basic System.
Jul 28 11:47:07 revelation systemd[1897]: Reached target Main User Target.
Jul 28 11:47:07 revelation systemd[1897]: Startup finished in 819ms.
Jul 28 11:47:07 revelation systemd[1]: Started User Manager for UID 42.
Jul 28 11:47:07 revelation systemd[1609]: Listening on D-Bus User Message Bus Socket.
Jul 28 11:47:07 revelation systemd[1609]: Reached target Sockets.
Jul 28 11:47:07 revelation systemd[1]: Started Session c1 of User gdm.
Jul 28 11:47:07 revelation systemd[1609]: Finished Create User's Volatile Files and Directories.
Jul 28 11:47:07 revelation systemd[1609]: Reached target Basic System.
Jul 28 11:47:07 revelation systemd[1609]: Reached target Main User Target.
Jul 28 11:47:07 revelation systemd[1609]: Startup finished in 1.945s.
Jul 28 11:47:07 revelation systemd[1]: Started User Manager for UID 1000.
Jul 28 11:47:07 revelation systemd[1897]: Starting D-Bus User Message Bus...
Jul 28 11:47:07 revelation dbus-broker-launch[1945]: Service file '/usr/share//dbus-1/services/sealert.service' is not named after the D-Bus name 'org.fedoraproject.Setroubleshootd'.
Jul 28 11:47:07 revelation dbus-broker-launch[1945]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jul 28 11:47:07 revelation dbus-broker-launch[1945]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jul 28 11:47:07 revelation systemd[1897]: Started D-Bus User Message Bus.
Jul 28 11:47:07 revelation journal[1945]: Ready
Jul 28 11:47:07 revelation systemd[1897]: selinux: avc:  denied  { status } for auid=42 uid=42 gid=42 cmdline="/usr/bin/dbus-broker-launch --scope user" function="method_subscribe" scontext=user_u:user_r:user_dbusd_t:s0-s0:c0.c1023 tcontext=user_u:user_r:user_t:s0-s0:c0.c1023 tclass=system permissive=0
Jul 28 11:47:09 revelation journal[1958]: Adding device '/dev/dri/card0' (mgag200) using atomic mode setting.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 11:47:09 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 11:47:09 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 11:47:09 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 11:47:09 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 11:47:09 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 11:47:09 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 11:47:09 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 11:47:09 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 11:47:09 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 11:47:09 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 11:47:09 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 11:47:09 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 11:47:09 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 11:47:09 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 11:47:09 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 11:47:09 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 11:47:09 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 11:47:09 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:09 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:09 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 11:47:09 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 11:47:09 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:09 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:09 revelation org.gnome.Shell.desktop[1958]: pci id for fd 13: 102b:0522, driver (null)
Jul 28 11:47:09 revelation org.gnome.Shell.desktop[1958]: MESA-LOADER: failed to open mgag200: /usr/lib64/dri/mgag200_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib64/dri, suffix _dri)
Jul 28 11:47:09 revelation org.gnome.Shell.desktop[1958]: failed to load driver: mgag200
Jul 28 11:47:10 revelation ModemManager[1884]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0': not supported by any plugin
Jul 28 11:47:10 revelation ModemManager[1884]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.1': not supported by any plugin
Jul 28 11:47:10 revelation ModemManager[1884]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-3': not supported by any plugin
Jul 28 11:47:10 revelation org.gnome.Shell.desktop[1958]: pci id for fd 15: 102b:0522, driver (null)
Jul 28 11:47:10 revelation org.gnome.Shell.desktop[1958]: kmsro: driver missing
Jul 28 11:47:10 revelation journal[1958]: Failed to initialize accelerated iGPU/dGPU framebuffer sharing: Do not want to use software renderer (llvmpipe (LLVM 15.0.7, 128 bits)), falling back to CPU copy path
Jul 28 11:47:10 revelation journal[1958]: Created gbm renderer for '/dev/dri/card0'
Jul 28 11:47:10 revelation journal[1958]: Boot VGA GPU /dev/dri/card0 selected as primary
Jul 28 11:47:10 revelation journal[1958]: Disabling DMA buffer screen sharing for driver 'mgag200'.
Jul 28 11:47:10 revelation journal[1958]: Using public X11 display :1024, (using :1025 for managed services)
Jul 28 11:47:10 revelation journal[1958]: Using Wayland display name 'wayland-0'
Jul 28 11:47:10 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activating service name='org.a11y.Bus' requested by ':1.4' (uid=42 pid=1958 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:10 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Successfully activated service 'org.a11y.Bus'
Jul 28 11:47:11 revelation journal[1958]: Skipping parental controls support as it’s disabled
Jul 28 11:47:12 revelation journal[1958]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jul 28 11:47:12 revelation journal[1958]: Will monitor session c1
Jul 28 11:47:12 revelation systemd[1]: Starting Locale Service...
Jul 28 11:47:12 revelation systemd[1]: Started Locale Service.
Jul 28 11:47:12 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activating service name='org.freedesktop.portal.IBus' requested by ':1.6' (uid=42 pid=2034 comm="ibus-daemon --panel disable " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:12 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Successfully activated service 'org.freedesktop.portal.IBus'
Jul 28 11:47:12 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.3' (uid=42 pid=1958 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:12 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jul 28 11:47:12 revelation systemd[1897]: Created slice User Core Session Slice.
Jul 28 11:47:12 revelation systemd[1897]: Started PipeWire Multimedia Service.
Jul 28 11:47:12 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 11:47:12 revelation systemd[1897]: Started PipeWire PulseAudio.
Jul 28 11:47:12 revelation dbus-broker-launch[1146]: Activation request for 'org.freedesktop.GeoClue2' failed: The systemd unit 'geoclue.service' is masked.
Jul 28 11:47:13 revelation rtkit-daemon[1119]: Successfully made thread 2055 of process 2055 (/usr/bin/pipewire-pulse) owned by '42' high priority at nice level -11.
Jul 28 11:47:13 revelation rtkit-daemon[1119]: Successfully made thread 2053 of process 2053 (/usr/bin/pipewire) owned by '42' high priority at nice level -11.
Jul 28 11:47:13 revelation dbus-broker-launch[1146]: Activation request for 'org.freedesktop.PackageKit' failed: The systemd unit 'packagekit.service' is masked.
Jul 28 11:47:13 revelation rtkit-daemon[1119]: Successfully made thread 2054 of process 2054 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 11:47:13 revelation rtkit-daemon[1119]: Successfully made thread 2073 of process 2054 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 11:47:13 revelation rtkit-daemon[1119]: Successfully made thread 2074 of process 2055 (/usr/bin/pipewire-pulse) owned by '42' RT at priority 20.
Jul 28 11:47:13 revelation pipewire-pulse[2072]: Failed to load cookie file from cookie: Permission denied
Jul 28 11:47:13 revelation rtkit-daemon[1119]: Successfully made thread 2080 of process 2053 (/usr/bin/pipewire) owned by '42' RT at priority 20.
Jul 28 11:47:13 revelation pipewire-pulse[2072]: 536870912
Jul 28 11:47:13 revelation journal[2054]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:13 revelation journal[2054]: Failed to set scheduler settings: Operation not permitted
Jul 28 11:47:13 revelation journal[2054]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:13 revelation wireplumber[2054]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 11:47:13 revelation journal[2054]: disconnected from pipewire
Jul 28 11:47:13 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 11:47:13 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 11:47:13 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activating service name='org.gnome.Shell.Notifications' requested by ':1.3' (uid=42 pid=1958 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:13 revelation /usr/libexec/gdm-wayland-session[2022]: dbus-daemon[2022]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=42 pid=1958 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:13 revelation /usr/libexec/gdm-wayland-session[2022]: dbus-daemon[2022]: Successfully activated service 'org.a11y.atspi.Registry'
Jul 28 11:47:13 revelation /usr/libexec/gdm-wayland-session[2091]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul 28 11:47:13 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Successfully activated service 'org.gnome.Shell.Notifications'
Jul 28 11:47:13 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activating service name='org.freedesktop.systemd1' requested by ':1.20' (uid=42 pid=2103 comm="/usr/libexec/gsd-sharing " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:13 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:47:13 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Jul 28 11:47:13 revelation journal[2103]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 11:47:13 revelation journal[2103]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 11:47:13 revelation journal[2103]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 11:47:13 revelation systemd[1]: Starting Hostname Service...
Jul 28 11:47:13 revelation journal[1958]: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 11:47:13 revelation journal[1958]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jul 28 11:47:13 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 1.
Jul 28 11:47:13 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 11:47:13 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 11:47:13 revelation rtkit-daemon[1119]: Successfully made thread 2178 of process 2178 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 11:47:13 revelation rtkit-daemon[1119]: Successfully made thread 2181 of process 2178 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 11:47:13 revelation journal[2178]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:13 revelation journal[2178]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:13 revelation journal[2178]: Failed to set scheduler settings: Operation not permitted
Jul 28 11:47:13 revelation wireplumber[2178]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 11:47:13 revelation journal[2178]: disconnected from pipewire
Jul 28 11:47:13 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 11:47:13 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 11:47:13 revelation org.gnome.Shell.desktop[2032]: Failed to initialize glamor, falling back to sw
Jul 28 11:47:13 revelation systemd[1]: Started Hostname Service.
Jul 28 11:47:14 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:47:14 revelation cupsd[1135]: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok
Jul 28 11:47:14 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 2.
Jul 28 11:47:14 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 11:47:14 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 11:47:14 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 11:47:14 revelation rtkit-daemon[1119]: Successfully made thread 2210 of process 2210 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 11:47:14 revelation rtkit-daemon[1119]: Successfully made thread 2214 of process 2210 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 11:47:14 revelation journal[2210]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:14 revelation journal[2210]: Failed to set scheduler settings: Operation not permitted
Jul 28 11:47:14 revelation journal[2210]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:14 revelation wireplumber[2210]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 11:47:14 revelation journal[2210]: disconnected from pipewire
Jul 28 11:47:14 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 11:47:14 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 11:47:14 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 11:47:14 revelation systemd[1]: Starting Realm and Domain Configuration...
Jul 28 11:47:14 revelation systemd[1]: Started Realm and Domain Configuration.
Jul 28 11:47:14 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 3.
Jul 28 11:47:14 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 11:47:14 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 11:47:14 revelation rtkit-daemon[1119]: Successfully made thread 2235 of process 2235 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 11:47:14 revelation rtkit-daemon[1119]: Successfully made thread 2238 of process 2235 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 11:47:14 revelation journal[2235]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:14 revelation journal[2235]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:14 revelation journal[2235]: Failed to set scheduler settings: Operation not permitted
Jul 28 11:47:14 revelation wireplumber[2235]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 11:47:14 revelation journal[2235]: disconnected from pipewire
Jul 28 11:47:14 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 11:47:14 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 11:47:15 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 4.
Jul 28 11:47:15 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 11:47:15 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 11:47:15 revelation rtkit-daemon[1119]: Successfully made thread 2249 of process 2249 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 11:47:15 revelation rtkit-daemon[1119]: Successfully made thread 2252 of process 2249 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 11:47:15 revelation journal[2249]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:15 revelation journal[2249]: Failed to set scheduler settings: Operation not permitted
Jul 28 11:47:15 revelation journal[2249]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 11:47:15 revelation wireplumber[2249]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 11:47:15 revelation journal[2249]: disconnected from pipewire
Jul 28 11:47:15 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 11:47:15 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 11:47:15 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:47:15 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:15 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 11:47:15 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:15 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:15 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:15 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:15 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 5.
Jul 28 11:47:15 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 11:47:15 revelation systemd[1897]: wireplumber.service: Start request repeated too quickly.
Jul 28 11:47:15 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 11:47:15 revelation systemd[1897]: Failed to start Multimedia Service Session Manager.
Jul 28 11:47:15 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activating service name='org.gnome.ScreenSaver' requested by ':1.22' (uid=42 pid=2119 comm="/usr/libexec/gsd-power " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:15 revelation journal[1958]: Registering session with GDM
Jul 28 11:47:15 revelation systemd[1]: Received SIGRTMIN+21 from PID 553 (plymouthd).
Jul 28 11:47:15 revelation systemd[1]: Finished Hold until boot process finishes up.
Jul 28 11:47:15 revelation systemd[1]: Reached target Multi-User System.
Jul 28 11:47:15 revelation systemd[1]: Reached target Graphical Interface.
Jul 28 11:47:15 revelation systemd[1]: Starting Record Runlevel Change in UTMP...
Jul 28 11:47:15 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activating service name='org.gnome.Shell.Screencast' requested by ':1.26' (uid=42 pid=2114 comm="/usr/libexec/gsd-media-keys " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:15 revelation systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
Jul 28 11:47:15 revelation systemd[1]: Finished Record Runlevel Change in UTMP.
Jul 28 11:47:15 revelation systemd[1]: Startup finished in 1.440s (kernel) + 3.684s (initrd) + 18.592s (userspace) = 23.718s.
Jul 28 11:47:15 revelation gnome-session-binary[1950]: Entering running state
Jul 28 11:47:15 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Successfully activated service 'org.gnome.ScreenSaver'
Jul 28 11:47:15 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Activating service name='org.freedesktop.portal.IBus' requested by ':1.34' (uid=42 pid=2290 comm="ibus-daemon --panel disable -r --xim " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 11:47:15 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Successfully activated service 'org.freedesktop.portal.IBus'
Jul 28 11:47:15 revelation journal[1958]: ATK Bridge is disabled but a11y has already been enabled.
Jul 28 11:47:15 revelation journal[2114]: Failed to grab accelerator for keybinding settings:playback-repeat
Jul 28 11:47:15 revelation journal[2114]: Failed to grab accelerator for keybinding settings:hibernate
Jul 28 11:47:15 revelation org.gnome.Shell.desktop[2319]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jul 28 11:47:15 revelation org.gnome.Shell.desktop[2319]: > Warning:          Unsupported maximum keycode 708, clipping.
Jul 28 11:47:15 revelation org.gnome.Shell.desktop[2319]: >                   X11 cannot support keycodes above 255.
Jul 28 11:47:15 revelation org.gnome.Shell.desktop[2319]: Errors from xkbcomp are not fatal to the X server
Jul 28 11:47:16 revelation /usr/libexec/gdm-wayland-session[1949]: dbus-daemon[1949]: [session uid=42 pid=1949] Successfully activated service 'org.gnome.Shell.Screencast'
Jul 28 11:47:20 revelation systemd-logind[1137]: New session 3 of user rfs.
Jul 28 11:47:20 revelation systemd[1]: Started Session 3 of User rfs.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (--) Log file renamed from "/home/rfs/.local/share/xorg/Xorg.pid-2372.log" to "/home/rfs/.local/share/xorg/Xorg.0.log"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: X.Org X Server 1.20.11
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: X Protocol Version 11, Revision 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: Build Operating System:  5.4.188-104.359.amzn2.x86_64
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: Current Operating System: Linux revelation 5.14.0-284.18.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 22 17:36:46 UTC 2023 x86_64
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: Kernel command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: Build Date: 21 February 2023  12:00:00AM
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: Build ID: xorg-x11-server 1.20.11-17.el9
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: Current version of pixman: 0.40.0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011Before reporting problems, check http://wiki.x.org
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011to make sure that you have the latest version.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: Markers: (--) probed, (**) from config file, (==) default setting,
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011(++) from command line, (!!) notice, (II) informational,
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Log file: "/home/rfs/.local/share/xorg/Xorg.0.log", Time: Fri Jul 28 11:47:21 2023
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Using config directory: "/etc/X11/xorg.conf.d"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) ServerLayout "Builtin Default Layout"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) |-->Screen "Builtin Default mga Screen 0" (0)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) |   |-->Monitor "My monitor"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Automatically adding devices
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Automatically enabling devices
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Automatically adding GPU devices
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Automatically binding GPU devices
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) FontPath set to:
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011catalogue:/etc/X11/fontpath.d,
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011built-ins
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) ModulePath set to "/usr/lib64/xorg/modules"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) The server relies on udev to provide the list of input devices.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011If no devices become available, reconfigure udev or disable AutoAddDevices.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Loader magic: 0x561ea67c9d40
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Module ABI versions:
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011X.Org ANSI C Emulation: 0.4
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011X.Org Video Driver: 24.1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011X.Org XInput driver : 24.1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011X.Org Server Extension : 10.0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (++) using VT number 2
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 12 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (--) PCI:*(7@0:0:0) 102b:0522:8086:0101 rev 2, Mem @ 0xb0000000/16777216, 0xb1800000/16384, 0xb1000000/8388608, BIOS @ 0x????????/65536
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) LoadModule: "glx"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Module glx: vendor="X.Org Foundation"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011compiled for 1.20.11, module version = 1.0.0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011ABI class: X.Org Server Extension, version 10.0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Matched mga as autoconfigured driver 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Matched modesetting as autoconfigured driver 1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Matched fbdev as autoconfigured driver 2
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Matched vesa as autoconfigured driver 3
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) Assigned the driver to the xf86ConfigLayout
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) LoadModule: "mga"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (WW) Warning, couldn't open module mga
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (EE) Failed to load module "mga" (module does not exist, 0)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) LoadModule: "modesetting"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Module modesetting: vendor="X.Org Foundation"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011compiled for 1.20.11, module version = 1.20.11
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011Module class: X.Org Video Driver
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011ABI class: X.Org Video Driver, version 24.1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) LoadModule: "fbdev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Loading /usr/lib64/xorg/modules/drivers/fbdev_drv.so
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Module fbdev: vendor="X.Org Foundation"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011compiled for 1.20.11, module version = 0.5.0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011Module class: X.Org Video Driver
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011ABI class: X.Org Video Driver, version 24.1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) LoadModule: "vesa"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (WW) Warning, couldn't open module vesa
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) FBDEV: driver for framebuffer: fbdev
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): using drv /dev/dri/card0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) modeset(0): RGB weight 888
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) modeset(0): Default visual is TrueColor
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Loading sub module "glamoregl"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) LoadModule: "glamoregl"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Loading /usr/lib64/xorg/modules/libglamoregl.so
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Module glamoregl: vendor="X.Org Foundation"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011compiled for 1.20.11, module version = 1.0.1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011ABI class: X.Org ANSI C Emulation, version 0.4
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: pci id for fd 12: 102b:0522, driver (null)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: MESA-LOADER: failed to open mgag200: /usr/lib64/dri/mgag200_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib64/dri, suffix _dri)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: failed to load driver: mgag200
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: pci id for fd 13: 102b:0522, driver (null)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: kmsro: driver missing
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Refusing to try glamor on llvmpipe
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (EE) modeset(0): glamor initialization failed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): ShadowFB: preferred NO, enabled NO
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Output VGA-1 using monitor section My monitor
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 11:47:21 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 11:47:21 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 11:47:21 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 11:47:21 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 11:47:21 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 11:47:21 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 11:47:21 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 11:47:21 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 11:47:21 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 11:47:21 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 11:47:21 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 11:47:21 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 11:47:21 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 11:47:21 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 11:47:21 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): EDID for output VGA-1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Manufacturer: GSM  Model: 597c  Serial#: 293078
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Year: 2013  Week: 1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): EDID Version: 1.3
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Sync:  Separate  Composite
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Max Image Size [cm]: horiz.: 48  vert.: 27
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Gamma: 2.20
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): First detailed timing is preferred mode
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): redX: 0.637 redY: 0.331   greenX: 0.309 greenY: 0.620
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): blueX: 0.152 blueY: 0.069   whiteX: 0.313 whiteY: 0.329
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Supported established timings:
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 720x400@70Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 640x480@60Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 640x480@75Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 800x600@56Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 800x600@60Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 800x600@75Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 832x624@75Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 1024x768@60Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 1024x768@75Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 1280x1024@75Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): 1152x864@75Hz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Manufacturer's mask: 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Supported standard timings:
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #1: hsize: 1280  vsize 720  refresh: 60  vid: 49281
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #2: hsize: 1280  vsize 800  refresh: 60  vid: 129
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #4: hsize: 1440  vsize 900  refresh: 60  vid: 149
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #5: hsize: 1400  vsize 1050  refresh: 60  vid: 16528
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #6: hsize: 1600  vsize 900  refresh: 60  vid: 49321
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #7: hsize: 1680  vsize 1050  refresh: 60  vid: 179
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Supported detailed timing:
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 11:47:21 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 11:47:21 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 11:47:21 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 11:47:21 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 11:47:21 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 11:47:21 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 11:47:21 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 11:47:21 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 11:47:21 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 11:47:21 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 11:47:21 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 11:47:21 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 11:47:21 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 11:47:21 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 11:47:21 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 11:47:21 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): clock: 148.5 MHz   Image Size:  480 x 270 mm
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Monitor name: 22EN33
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Serial No: 301NDSK8M078
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): EDID (in hex):
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #01100ffffffffffff001e6d7c59d6780400
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #011011701036c301b78ea3335a3544f9e27
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #011115054a76b80714f81c0810081809500
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #0119040a9c0b300023a801871382d40582c
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #0114500e00e1100001e000000fd00384b1e
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #011530f000a202020202020000000fc0032
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #01132454e33330a202020202020000000ff
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): #011003330314e44534b384d3037380a00b3
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Not using mode "1280x1024" (height too large for virtual size)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Printing probed modes for output VGA-1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz UP)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x720"x60.0   74.44  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.7 kHz)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Output VGA-1 connected
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Using user preference for initial modes
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Output VGA-1 using initial mode 1440x900 +0+0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) modeset(0): DPI set to (96, 96)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Loading sub module "fb"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) LoadModule: "fb"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Module "fb" already built-in
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) UnloadModule: "fbdev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Unloading fbdev
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) modeset(0): Backing store enabled
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) modeset(0): Silken mouse enabled
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (==) modeset(0): DPMS enabled
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension Generic Event Extension
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension SHAPE
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension MIT-SHM
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XInputExtension
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XTEST
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension BIG-REQUESTS
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension SYNC
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XKEYBOARD
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XC-MISC
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension SECURITY
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XFIXES
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension RENDER
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension RANDR
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension COMPOSITE
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension DAMAGE
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension MIT-SCREEN-SAVER
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension DOUBLE-BUFFER
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension RECORD
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension DPMS
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension Present
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension DRI3
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension X-Resource
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XVideo
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XVideo-MotionCompensation
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension SELinux
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) SELinux: Disabled by boolean
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension GLX
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) AIGLX: Screen 0 is not DRI2 capable
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) IGLX: Loaded and initialized swrast
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) GLX: Initialized DRISWRAST GL provider for screen 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XFree86-VidModeExtension
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension XFree86-DGA
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Initializing extension DRI2
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Damage tracking initialized
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Setting screen physical size to 381 x 238
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device Power Button (/dev/input/event1)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Power Button: Applying InputClass "system-keyboard"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) LoadModule: "libinput"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Loading /usr/lib64/xorg/modules/input/libinput_drv.so
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Module libinput: vendor="X.Org Foundation"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011compiled for 1.20.11, module version = 1.0.1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011Module class: X.Org XInput Driver
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: #011ABI class: X.Org XInput driver, version 24.1
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Using input driver 'libinput' for 'Power Button'
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 20 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Power Button: always reports core events
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "Device" "/dev/input/event1"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "_source" "server/udev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event1  - Power Button: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event1  - Power Button: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event1  - Power Button: device removed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "xkb_layout" "gb"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event1  - Power Button: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event1  - Power Button: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Sleep Button: Applying InputClass "system-keyboard"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Using input driver 'libinput' for 'Sleep Button'
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 23 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Sleep Button: always reports core events
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "Device" "/dev/input/event0"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "_source" "server/udev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event0  - Sleep Button: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event0  - Sleep Button: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event0  - Sleep Button: device removed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 7)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "xkb_layout" "gb"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event0  - Sleep Button: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event0  - Sleep Button: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/event3)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "evdev keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "libinput keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "system-keyboard"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Using input driver 'libinput' for 'American Megatrends Inc. Virtual Keyboard and Mouse'
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 24 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: always reports core events
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "Device" "/dev/input/event3"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "_source" "server/udev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device removed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.0/0003:046B:FF10.0002/input/input3/event3"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) XINPUT: Adding extended input device "American Megatrends Inc. Virtual Keyboard and Mouse" (type: KEYBOARD, id 8)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "xkb_layout" "gb"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/event4)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "evdev pointer catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "libinput pointer catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Using input driver 'libinput' for 'American Megatrends Inc. Virtual Keyboard and Mouse'
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 25 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: always reports core events
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "Device" "/dev/input/event4"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "_source" "server/udev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Mouse
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a pointer
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device removed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.1/0003:046B:FF10.0003/input/input4/event4"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) XINPUT: Adding extended input device "American Megatrends Inc. Virtual Keyboard and Mouse" (type: MOUSE, id 9)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "AccelerationScheme" "none"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) selected scheme none/0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) acceleration factor: 2.000
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) acceleration threshold: 4
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Mouse
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a pointer
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/mouse1)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) No input driver specified, ignoring this device.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) This device may have been added with another device file.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event2)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Optical Mouse: Applying InputClass "libinput pointer catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Using input driver 'libinput' for 'Logitech USB Optical Mouse'
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 26 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Optical Mouse: always reports core events
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "Device" "/dev/input/event2"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "_source" "server/udev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event2  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event2  - Logitech USB Optical Mouse: device set to 1000 DPI
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event2  - Logitech USB Optical Mouse: device is a pointer
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event2  - Logitech USB Optical Mouse: device removed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/0003:046D:C05A.0001/input/input2/event2"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 10)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "AccelerationScheme" "none"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Optical Mouse: (accel) selected scheme none/0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event2  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event2  - Logitech USB Optical Mouse: device set to 1000 DPI
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event2  - Logitech USB Optical Mouse: device is a pointer
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) No input driver specified, ignoring this device.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) This device may have been added with another device file.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device Logitech USB Keyboard (/dev/input/event5)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard: Applying InputClass "evdev keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard: Applying InputClass "libinput keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard: Applying InputClass "system-keyboard"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard'
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 27 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard: always reports core events
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "Device" "/dev/input/event5"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "_source" "server/udev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event5  - Logitech USB Keyboard: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event5  - Logitech USB Keyboard: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event5  - Logitech USB Keyboard: device removed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/0003:046D:C31C.0004/input/input5/event5"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard" (type: KEYBOARD, id 11)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "xkb_layout" "gb"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event5  - Logitech USB Keyboard: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event5  - Logitech USB Keyboard: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device Logitech USB Keyboard Consumer Control (/dev/input/event6)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "evdev keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard Consumer Control'
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 28 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard Consumer Control: always reports core events
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "Device" "/dev/input/event6"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "_source" "server/udev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event6  - Logitech USB Keyboard Consumer Control: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event6  - Logitech USB Keyboard Consumer Control: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event6  - Logitech USB Keyboard Consumer Control: device removed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input6/event6"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard Consumer Control" (type: KEYBOARD, id 12)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "xkb_layout" "gb"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event6  - Logitech USB Keyboard Consumer Control: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event6  - Logitech USB Keyboard Consumer Control: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device Logitech USB Keyboard System Control (/dev/input/event7)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard System Control: Applying InputClass "evdev keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard System Control: Applying InputClass "libinput keyboard catchall"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard System Control: Applying InputClass "system-keyboard"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard System Control'
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 29 paused 0
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Logitech USB Keyboard System Control: always reports core events
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "Device" "/dev/input/event7"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "_source" "server/udev"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event7  - Logitech USB Keyboard System Control: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event7  - Logitech USB Keyboard System Control: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event7  - Logitech USB Keyboard System Control: device removed
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input7/event7"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard System Control" (type: KEYBOARD, id 13)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (**) Option "xkb_layout" "gb"
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event7  - Logitech USB Keyboard System Control: is tagged by udev as: Keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) event7  - Logitech USB Keyboard System Control: device is a keyboard
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) No input driver specified, ignoring this device.
Jul 28 11:47:21 revelation /usr/libexec/gdm-x-session[2372]: (II) This device may have been added with another device file.
Jul 28 11:47:21 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:21 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:21 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:21 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:21 revelation systemd[1609]: Starting D-Bus User Message Bus...
Jul 28 11:47:21 revelation dbus-broker-launch[2478]: Service file '/usr/share//dbus-1/services/sealert.service' is not named after the D-Bus name 'org.fedoraproject.Setroubleshootd'.
Jul 28 11:47:21 revelation dbus-broker-launch[2478]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jul 28 11:47:21 revelation dbus-broker-launch[2478]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jul 28 11:47:21 revelation systemd[1609]: Started D-Bus User Message Bus.
Jul 28 11:47:21 revelation journal[2478]: Ready
Jul 28 11:47:22 revelation systemd[1609]: Starting Accessibility services bus...
Jul 28 11:47:22 revelation systemd[1609]: Started Accessibility services bus.
Jul 28 11:47:22 revelation at-spi-bus-launcher[2586]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
Jul 28 11:47:22 revelation at-spi-bus-launcher[2586]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
Jul 28 11:47:22 revelation journal[2586]: Ready
Jul 28 11:47:22 revelation gnome-session[2580]: gnome-session-check-accelerated: GL Helper exited with code 512
Jul 28 11:47:22 revelation gnome-session[2638]: libEGL warning: DRI2: failed to authenticate
Jul 28 11:47:22 revelation gnome-session[2580]: gnome-session-check-accelerated: GLES Helper exited with code 512
Jul 28 11:47:22 revelation systemd[1609]: Created slice Slice /app/gnome-session-manager.
Jul 28 11:47:22 revelation systemd[1609]: Created slice User Core Session Slice.
Jul 28 11:47:22 revelation systemd[1609]: Reached target GNOME X11 Session.
Jul 28 11:47:22 revelation systemd[1609]: Reached target GNOME Shell.
Jul 28 11:47:22 revelation systemd[1609]: GNOME Initial Setup Copy Worker was skipped because of an unmet condition check (ConditionPathExists=!/home/rfs/.config/gnome-initial-setup-done).
Jul 28 11:47:22 revelation systemd[1609]: Reached target Session services which should run early before the graphical session is brought up.
Jul 28 11:47:22 revelation systemd[1609]: Starting Monitor Session leader for GNOME Session...
Jul 28 11:47:22 revelation systemd[1609]: Started Monitor Session leader for GNOME Session.
Jul 28 11:47:22 revelation systemd[1609]: Reached target Tasks to be run before GNOME Session starts.
Jul 28 11:47:22 revelation systemd[1609]: Starting GNOME Session Manager (session: gnome)...
Jul 28 11:47:22 revelation gnome-session[2693]: gnome-session-binary[2693]: WARNING: Could not parse desktop file ignore-lid-switch-tweak.desktop or it references a not found TryExec binary
Jul 28 11:47:22 revelation gnome-session-binary[2693]: WARNING: Could not parse desktop file ignore-lid-switch-tweak.desktop or it references a not found TryExec binary
Jul 28 11:47:22 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:22 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:22 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:22 revelation gnome-keyring-ssh.desktop[2704]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Jul 28 11:47:22 revelation systemd[1609]: Started GNOME Session Manager (session: gnome).
Jul 28 11:47:22 revelation systemd[1609]: Reached target GNOME Session Manager is ready.
Jul 28 11:47:22 revelation systemd[1609]: Starting GNOME Shell on Wayland...
Jul 28 11:47:22 revelation systemd[1609]: Starting GNOME Shell on X11...
Jul 28 11:47:22 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:22 revelation systemd[1609]: org.gnome.Shell@wayland.service: Skipped due to 'exec-condition'.
Jul 28 11:47:22 revelation systemd[1609]: Condition check resulted in GNOME Shell on Wayland being skipped.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 11:47:22 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 11:47:22 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 11:47:22 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 11:47:22 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 11:47:22 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 11:47:22 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 11:47:22 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 11:47:22 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 11:47:22 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 11:47:22 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 11:47:22 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 11:47:22 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 11:47:22 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 11:47:22 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 11:47:22 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 11:47:22 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 11:47:22 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 11:47:22 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:22 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:22 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 11:47:22 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 11:47:22 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:22 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Using EDID range info for horizontal sync
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Using EDID range info for vertical refresh
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 11:47:22 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 11:47:23 revelation systemd[1609]: Starting Virtual filesystem service...
Jul 28 11:47:23 revelation systemd[1609]: Started Virtual filesystem service.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 11:47:23 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 11:47:23 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 11:47:23 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 11:47:23 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 11:47:23 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 11:47:23 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 11:47:23 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 11:47:23 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 11:47:23 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 11:47:23 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 11:47:23 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 11:47:23 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 11:47:23 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 11:47:23 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 11:47:23 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 11:47:23 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 11:47:23 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 11:47:23 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 11:47:23 revelation kernel: Returning MODE_H_ILLEGAL from mgag200_simple_display_pipe_mode_valid.
Jul 28 11:47:23 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 11:47:23 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 11:47:23 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 11:47:23 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Using hsync ranges from config file
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Using vrefresh ranges from config file
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 11:47:23 revelation /usr/libexec/gdm-x-session[2372]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 11:47:23 revelation journal[2710]: ATK Bridge is disabled but a11y has already been enabled.
Jul 28 11:47:23 revelation journal[2710]: Skipping parental controls support as it’s disabled
Jul 28 11:47:23 revelation journal[2710]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jul 28 11:47:23 revelation journal[2710]: Will monitor session 3
Jul 28 11:47:23 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.freedesktop.portal.IBus.
Jul 28 11:47:23 revelation systemd[1609]: Started dbus-:1.2-org.freedesktop.portal.IBus@0.service.
Jul 28 11:47:23 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.CalendarServer.
Jul 28 11:47:23 revelation systemd[1609]: Created slice Slice /app/dbus-:1.6-org.a11y.atspi.Registry.
Jul 28 11:47:23 revelation systemd[1609]: Started dbus-:1.2-org.gnome.Shell.CalendarServer@0.service.
Jul 28 11:47:23 revelation systemd[1609]: Started dbus-:1.6-org.a11y.atspi.Registry@0.service.
Jul 28 11:47:23 revelation systemd[1609]: Starting sandboxed app permission store...
Jul 28 11:47:23 revelation at-spi2-registryd[2810]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul 28 11:47:23 revelation systemd[1609]: Started sandboxed app permission store.
Jul 28 11:47:23 revelation systemd[1609]: Started PipeWire Multimedia Service.
Jul 28 11:47:23 revelation systemd[1609]: Started Multimedia Service Session Manager.
Jul 28 11:47:23 revelation systemd[1609]: Started PipeWire PulseAudio.
Jul 28 11:47:23 revelation journal[2710]: g_strsplit: assertion 'string != NULL' failed
Jul 28 11:47:24 revelation rtkit-daemon[1119]: Successfully made thread 2818 of process 2818 (/usr/bin/pipewire) owned by '1000' high priority at nice level -11.
Jul 28 11:47:24 revelation rtkit-daemon[1119]: Successfully made thread 2819 of process 2819 (/usr/bin/wireplumber) owned by '1000' high priority at nice level -11.
Jul 28 11:47:24 revelation rtkit-daemon[1119]: Successfully made thread 2820 of process 2820 (/usr/bin/pipewire-pulse) owned by '1000' high priority at nice level -11.
Jul 28 11:47:24 revelation rtkit-daemon[1119]: Successfully made thread 2831 of process 2819 (/usr/bin/wireplumber) owned by '1000' RT at priority 20.
Jul 28 11:47:24 revelation rtkit-daemon[1119]: Successfully made thread 2835 of process 2820 (/usr/bin/pipewire-pulse) owned by '1000' RT at priority 20.
Jul 28 11:47:24 revelation rtkit-daemon[1119]: Successfully made thread 2834 of process 2818 (/usr/bin/pipewire) owned by '1000' RT at priority 20.
Jul 28 11:47:24 revelation pipewire-pulse[2833]: 536870912
Jul 28 11:47:24 revelation journal[2819]: Failed to set scheduler settings: Operation not permitted
Jul 28 11:47:24 revelation journal[2710]: Telepathy is not available, chat integration will be disabled.
Jul 28 11:47:24 revelation systemd[1609]: Starting Virtual filesystem service - disk device monitor...
Jul 28 11:47:24 revelation systemd[1609]: Starting Evolution source registry...
Jul 28 11:47:24 revelation systemd[1609]: Started Virtual filesystem service - disk device monitor.
Jul 28 11:47:24 revelation systemd[1609]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jul 28 11:47:24 revelation systemd[1609]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jul 28 11:47:24 revelation systemd[1609]: Starting Virtual filesystem service - digital camera monitor...
Jul 28 11:47:24 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.OnlineAccounts.
Jul 28 11:47:24 revelation systemd[1609]: Started dbus-:1.2-org.gnome.OnlineAccounts@0.service.
Jul 28 11:47:24 revelation systemd[1609]: Started Virtual filesystem service - digital camera monitor.
Jul 28 11:47:24 revelation systemd[1609]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jul 28 11:47:24 revelation systemd[1609]: Started Evolution source registry.
Jul 28 11:47:24 revelation systemd[1609]: Starting Evolution calendar service...
Jul 28 11:47:24 revelation systemd[1609]: Started Evolution calendar service.
Jul 28 11:47:24 revelation systemd[1609]: Starting User preferences database...
Jul 28 11:47:24 revelation systemd[1609]: Starting Evolution address book service...
Jul 28 11:47:24 revelation systemd[1609]: Started User preferences database.
Jul 28 11:47:24 revelation systemd[1609]: Started Evolution address book service.
Jul 28 11:47:25 revelation journal[2872]: goa-daemon version 3.40.0 starting
Jul 28 11:47:25 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.Identity.
Jul 28 11:47:25 revelation systemd[1609]: Started dbus-:1.2-org.gnome.Identity@0.service.
Jul 28 11:47:25 revelation systemd[1609]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jul 28 11:47:25 revelation systemd[1]: Starting SSSD Kerberos Cache Manager...
Jul 28 11:47:25 revelation systemd[1]: Started SSSD Kerberos Cache Manager.
Jul 28 11:47:25 revelation sssd_kcm[2927]: Starting up
Jul 28 11:47:25 revelation journal[2916]: GoaKerberosIdentityManager: Using polling for change notification for credential cache type 'KCM'
Jul 28 11:47:25 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.Notifications.
Jul 28 11:47:25 revelation systemd[1609]: Started dbus-:1.2-org.gnome.Shell.Notifications@0.service.
Jul 28 11:47:25 revelation journal[2710]: Unable to connect to ibus: Could not connect: Connection refused
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME Shell on X11.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME Session is initialized.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME session X11 services.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME Session (session: gnome).
Jul 28 11:47:25 revelation systemd[1609]: Starting Signal initialization done to GNOME Session Manager...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME accessibility service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME color management service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME date & time service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME maintenance of expirable data service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME keyboard configuration service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME keyboard shortcuts service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME power management service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME printer notifications service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME RFKill support service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME FreeDesktop screensaver service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME file sharing service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME smartcard service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME sound sample caching service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME USB protection service...
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME Wacom tablet support service...
Jul 28 11:47:25 revelation gnome-session-binary[2693]: Entering running state
Jul 28 11:47:25 revelation systemd[1609]: Starting GNOME XSettings service...
Jul 28 11:47:25 revelation journal[2979]: g_dbus_connection_call_internal: assertion 'G_IS_DBUS_CONNECTION (connection)' failed
Jul 28 11:47:25 revelation journal[2979]: g_dbus_connection_call_internal: assertion 'G_IS_DBUS_CONNECTION (connection)' failed
Jul 28 11:47:25 revelation journal[2979]: g_dbus_connection_call_internal: assertion 'G_IS_DBUS_CONNECTION (connection)' failed
Jul 28 11:47:25 revelation systemd[1609]: Finished Signal initialization done to GNOME Session Manager.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME accessibility service.
Jul 28 11:47:25 revelation gnome-session[2693]: gnome-session-binary[2693]: GnomeDesktop-WARNING: Could not create transient scope for PID 2961: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2961 does not exist.
Jul 28 11:47:25 revelation gnome-session-binary[2693]: GnomeDesktop-WARNING: Could not create transient scope for PID 2961: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2961 does not exist.
Jul 28 11:47:25 revelation gnome-session[2693]: gnome-session-binary[2693]: GnomeDesktop-WARNING: Could not create transient scope for PID 2986: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2986 does not exist.
Jul 28 11:47:25 revelation gnome-session-binary[2693]: GnomeDesktop-WARNING: Could not create transient scope for PID 2986: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2986 does not exist.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME FreeDesktop screensaver service.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME file sharing service.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME maintenance of expirable data service.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME RFKill support service.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME date & time service.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME sound sample caching service.
Jul 28 11:47:25 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:25 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:25 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:25 revelation vmware-user.desktop[3025]: vmware-user: could not open /proc/fs/vmblock/dev
Jul 28 11:47:25 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:25 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:25 revelation systemd[1609]: Started Application launched by gnome-session-binary.
Jul 28 11:47:25 revelation systemd[1609]: app-gnome-vmware\x2duser-3000.scope: Couldn't move process 3000 to requested cgroup '/user.slice/user-1000.slice/user@1000.service/app.slice/app-gnome-vmware\x2duser-3000.scope': No such process
Jul 28 11:47:25 revelation systemd[1609]: app-gnome-vmware\x2duser-3000.scope: Failed to add PIDs to scope's control group: No such process
Jul 28 11:47:25 revelation systemd[1609]: app-gnome-vmware\x2duser-3000.scope: Failed with result 'resources'.
Jul 28 11:47:25 revelation systemd[1609]: Failed to start Application launched by gnome-session-binary.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME accessibility target.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME date & time target.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME maintenance of expirable data target.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME RFKill support target.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME FreeDesktop screensaver target.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME file sharing target.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME sound sample caching target.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME USB protection service.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME USB protection target.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME keyboard configuration service.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME keyboard configuration target.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME color management service.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME color management target.
Jul 28 11:47:25 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.ScreenSaver.
Jul 28 11:47:25 revelation systemd[1609]: Started dbus-:1.2-org.gnome.ScreenSaver@0.service.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME power management service.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME power management target.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME keyboard shortcuts service.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME keyboard shortcuts target.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME Wacom tablet support service.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME Wacom tablet support target.
Jul 28 11:47:25 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.Screencast.
Jul 28 11:47:25 revelation systemd[1609]: Started dbus-:1.2-org.gnome.Shell.Screencast@0.service.
Jul 28 11:47:25 revelation systemd[1609]: Started GNOME smartcard service.
Jul 28 11:47:25 revelation systemd[1609]: Reached target GNOME smartcard target.
Jul 28 11:47:25 revelation journal[2710]: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 11:47:26 revelation journal[2710]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jul 28 11:47:26 revelation journal[2991]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable
Jul 28 11:47:26 revelation journal[2968]: Failed to grab accelerator for keybinding settings:playback-repeat
Jul 28 11:47:26 revelation journal[2968]: Failed to grab accelerator for keybinding settings:hibernate
Jul 28 11:47:26 revelation journal[2968]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jul 28 11:47:26 revelation journal[2968]: Failed to grab accelerator for keybinding settings:playback-random
Jul 28 11:47:26 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:47:26 revelation gjs[3075]: libEGL warning: DRI2: failed to authenticate
Jul 28 11:47:26 revelation journal[2952]: failed to set screen _ICC_PROFILE: Failed to open file “/var/lib/gdm/.local/share/icc/edid-66b5c77ef7d21f8dc680fbd7761de738.icc”: Permission denied
Jul 28 11:47:26 revelation cupsd[1135]: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok
Jul 28 11:47:26 revelation systemd[1609]: Started GNOME printer notifications service.
Jul 28 11:47:26 revelation systemd[1609]: Reached target GNOME printer notifications target.
Jul 28 11:47:26 revelation systemd[1609]: Started GNOME XSettings service.
Jul 28 11:47:26 revelation systemd[1609]: GNOME session X11 services is inactive.
Jul 28 11:47:26 revelation systemd[1609]: Reached target GNOME XSettings target.
Jul 28 11:47:26 revelation systemd[1609]: Reached target GNOME Session.
Jul 28 11:47:26 revelation systemd[1609]: Reached target GNOME X11 Session (session: gnome).
Jul 28 11:47:26 revelation systemd[1609]: Reached target Current graphical user session.
Jul 28 11:47:26 revelation systemd[1609]: GNOME Initial Setup was skipped because of an unmet condition check (ConditionPathExists=!/home/rfs/.config/gnome-initial-setup-done).
Jul 28 11:47:26 revelation libcanberra-login-sound.desktop[2977]: Failed to play sound: File or data not found
Jul 28 11:47:26 revelation journal[2710]: Spurious clutter_actor_allocate called for actor 0x55dd57843220/panel which isn't a descendent of the stage!
Jul 28 11:47:27 revelation systemd[1]: Starting Firmware update daemon...
Jul 28 11:47:27 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.freedesktop.FileManager1.
Jul 28 11:47:27 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.Nautilus.
Jul 28 11:47:27 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.NautilusPreviewer.
Jul 28 11:47:27 revelation systemd[1609]: Started dbus-:1.2-org.freedesktop.FileManager1@0.service.
Jul 28 11:47:27 revelation systemd[1609]: Started dbus-:1.2-org.gnome.Nautilus@0.service.
Jul 28 11:47:27 revelation systemd[1609]: Started dbus-:1.2-org.gnome.NautilusPreviewer@0.service.
Jul 28 11:47:27 revelation journal[2710]: GNOME Shell started at Fri Jul 28 2023 11:47:25 GMT+0100 (British Summer Time)
Jul 28 11:47:27 revelation journal[2710]: Registering session with GDM
Jul 28 11:47:27 revelation gdm-wayland-session[1943]: GLib: Source ID 2 was not found when attempting to remove it
Jul 28 11:47:27 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:47:27 revelation cupsd[1135]: REQUEST localhost - - "POST / HTTP/1.1" 200 151 Cancel-Subscription successful-ok
Jul 28 11:47:27 revelation gdm-launch-environment][1886]: GLib-GObject: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
Jul 28 11:47:27 revelation systemd-logind[1137]: Session c1 logged out. Waiting for processes to exit.
Jul 28 11:47:27 revelation journal[2952]: failed to connect to device: Failed to connect to missing device /org/freedesktop/ColorManager/devices/xrandr_LG_Electronics_22EN33_301NDSK8M078_gdm_42
Jul 28 11:47:27 revelation systemd[1]: session-c1.scope: Deactivated successfully.
Jul 28 11:47:27 revelation systemd[1]: session-c1.scope: Consumed 5.978s CPU time.
Jul 28 11:47:27 revelation systemd-logind[1137]: Removed session c1.
Jul 28 11:47:27 revelation gdm[1147]: Gdm: Child process -1943 was already dead.
Jul 28 11:47:28 revelation nautilus[3219]: Failed to register: Unable to acquire bus name 'org.gnome.Nautilus'
Jul 28 11:47:28 revelation systemd[1609]: dbus-:1.2-org.freedesktop.FileManager1@0.service: Main process exited, code=exited, status=1/FAILURE
Jul 28 11:47:28 revelation systemd[1609]: dbus-:1.2-org.freedesktop.FileManager1@0.service: Failed with result 'exit-code'.
Jul 28 11:47:28 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:47:28 revelation journal[3221]: JS ERROR: ReferenceError: WebKit2 is not defined#012vfunc_startup@resource:///org/gnome/NautilusPreviewer/js/ui/application.js:89:9#012main@resource:///org/gnome/NautilusPreviewer/js/ui/main.js:57:24#012run@resource:///org/gnome/gjs/modules/script/package.js:206:19#012@/usr/libexec/org.gnome.NautilusPreviewer:9:17
Jul 28 11:47:28 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 11:47:28 revelation systemd[1609]: Started Application launched by gsd-media-keys.
Jul 28 11:47:28 revelation systemd[1609]: Created slice Slice /app/org.gnome.Terminal.
Jul 28 11:47:28 revelation systemd[1609]: Starting GNOME Terminal Server...
Jul 28 11:47:28 revelation fwupd[3218]: 10:47:28.680 FuEngine             failed to add device /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host5/target5:0:0/5:0:0:0/block/sr0: failed to open /dev/sr0: No medium found
Jul 28 11:47:28 revelation systemd[1609]: Started GNOME Terminal Server.
Jul 28 11:47:28 revelation systemd[1609]: Started VTE child process 3320 launched by gnome-terminal-server process 3297.
Jul 28 11:47:29 revelation systemd[1]: Started Firmware update daemon.
Jul 28 11:47:29 revelation journal[2974]: plugin fwupd took 2.3 seconds to do setup
Jul 28 11:47:29 revelation journal[2974]: enabled plugins: appstream, fwupd, os-release, packagekit-refresh, flatpak, hardcoded-blocklist, hardcoded-popular, modalias, packagekit, rewrite-resource, provenance, systemd-updates, generic-updates, packagekit-refine-repos, provenance-license, icons
Jul 28 11:47:29 revelation journal[2974]: disabled plugins: dummy, fedora-langpacks, fedora-pkgdb-collections, repos
Jul 28 11:47:29 revelation journal[2974]: failed to set proxy: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 11:47:29 revelation journal[2974]: failed to set proxies: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 11:47:29 revelation journal[2974]: Only 0 apps for recent list, hiding
Jul 28 11:47:29 revelation journal[2974]: failed to get featured apps: no apps to show
Jul 28 11:47:30 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 11:47:30 revelation journal[2974]: Only 0 apps for popular list, hiding
Jul 28 11:47:33 revelation journal[2710]: ../gobject/gsignal.c:2732: instance '0x55dd57883480' has no handler with id '12314'
Jul 28 11:47:34 revelation su[3405]: (to root) rfs on pts/0
Jul 28 11:47:37 revelation systemd[1]: Stopping User Manager for UID 42...
Jul 28 11:47:37 revelation systemd[1897]: Activating special unit Exit the Session...
Jul 28 11:47:37 revelation systemd[1897]: Stopped target Main User Target.
Jul 28 11:47:37 revelation systemd[1897]: Stopping PipeWire PulseAudio...
Jul 28 11:47:37 revelation systemd[1897]: Stopped PipeWire PulseAudio.
Jul 28 11:47:37 revelation systemd[1897]: Stopping PipeWire Multimedia Service...
Jul 28 11:47:37 revelation systemd[1897]: Stopped PipeWire Multimedia Service.
Jul 28 11:47:37 revelation systemd[1897]: Removed slice User Core Session Slice.
Jul 28 11:47:37 revelation systemd[1897]: Stopped target Basic System.
Jul 28 11:47:37 revelation systemd[1897]: Stopped target Paths.
Jul 28 11:47:37 revelation systemd[1897]: Stopped target Sockets.
Jul 28 11:47:37 revelation systemd[1897]: Stopped target Timers.
Jul 28 11:47:37 revelation systemd[1897]: Stopped Daily Cleanup of User's Temporary Directories.
Jul 28 11:47:37 revelation systemd[1897]: Closed PipeWire PulseAudio.
Jul 28 11:47:37 revelation systemd[1897]: Closed PipeWire Multimedia System Socket.
Jul 28 11:47:37 revelation dbus-broker[1946]: Dispatched 38 messages @ 24(±34)μs / message.
Jul 28 11:47:37 revelation systemd[1897]: Stopping D-Bus User Message Bus...
Jul 28 11:47:37 revelation systemd[1897]: Stopped D-Bus User Message Bus.
Jul 28 11:47:37 revelation systemd[1897]: Closed D-Bus User Message Bus Socket.
Jul 28 11:47:37 revelation systemd[1897]: Removed slice User Application Slice.
Jul 28 11:47:37 revelation systemd[1897]: Reached target Shutdown.
Jul 28 11:47:37 revelation systemd[1897]: Finished Exit the Session.
Jul 28 11:47:37 revelation systemd[1897]: Reached target Exit the Session.
Jul 28 11:47:37 revelation systemd[1]: user@42.service: Deactivated successfully.
Jul 28 11:47:37 revelation systemd[1]: Stopped User Manager for UID 42.
Jul 28 11:47:37 revelation systemd[1]: Stopping User Runtime Directory /run/user/42...
Jul 28 11:47:37 revelation systemd[1]: run-user-42.mount: Deactivated successfully.
Jul 28 11:47:37 revelation systemd[1]: user-runtime-dir@42.service: Deactivated successfully.
Jul 28 11:47:37 revelation systemd[1]: Stopped User Runtime Directory /run/user/42.
Jul 28 11:47:37 revelation systemd[1]: Removed slice User Slice of UID 42.
Jul 28 11:47:37 revelation systemd[1]: user-42.slice: Consumed 6.426s CPU time.
Jul 28 11:47:40 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 11:47:44 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 11:47:45 revelation cupsd[1135]: Saving subscriptions.conf...
Jul 28 11:47:45 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 11:47:47 revelation kernel: loop: module loaded
Jul 28 11:47:47 revelation kernel: loop0: detected capacity change from 0 to 160882981
Jul 28 11:47:47 revelation kernel: EXT4-fs (dm-4): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 11:47:47 revelation systemd[1609]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.HotplugSniffer.
Jul 28 11:47:47 revelation systemd[1609]: Started dbus-:1.2-org.gnome.Shell.HotplugSniffer@0.service.
Jul 28 11:47:50 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 11:47:50 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 11:47:53 revelation su[3512]: (to root) rfs on pts/0
Jul 28 11:47:54 revelation systemd[1]: Starting Network Manager...
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1421] NetworkManager (version 1.42.2-3.el9_2) is starting... (boot:33f0dc3f-d254-49e1-9fa5-47df0a85a071)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1424] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 00-server.conf) (run: 15-carrier-timeout.conf)
Jul 28 11:47:54 revelation systemd[1]: Started Network Manager.
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1482] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jul 28 11:47:54 revelation systemd[1]: Reached target Network.
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1638] manager[0x55c041c51080]: monitoring kernel firmware directory '/lib/firmware'.
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1669] hostname: hostname: using hostnamed
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1669] hostname: static hostname changed from (none) to "revelation"
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1701] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink (auto)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1716] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1a.7/usb1/1-3/1-3:1.0/ieee80211/phy0/rfkill0) (driver rt2800usb)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1718] manager[0x55c041c51080]: rfkill: Wi-Fi hardware radio set enabled
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1719] manager[0x55c041c51080]: rfkill: WWAN hardware radio set enabled
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.1936] Loaded device plugin: NMAtmManager (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-adsl.so)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2055] Loaded device plugin: NMBluezManager (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-bluetooth.so)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2198] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-team.so)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2282] Loaded device plugin: NMWwanFactory (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-wwan.so)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2335] Loaded device plugin: NMWifiFactory (/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-device-plugin-wifi.so)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2337] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2343] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2343] manager: Networking is enabled by state file
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2415] settings: Loaded settings plugin: keyfile (internal)
Jul 28 11:47:54 revelation dbus-broker-launch[1146]: Activation request for 'org.freedesktop.nm_dispatcher' failed: The systemd unit 'dbus-org.freedesktop.nm-dispatcher.service' could not be found.
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2510] settings: Loaded settings plugin: ifcfg-rh ("/usr/lib64/NetworkManager/1.42.2-3.el9_2/libnm-settings-plugin-ifcfg-rh.so")
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2692] dhcp: init: Using DHCP client 'internal'
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2694] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2705] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2710] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2717] device (lo): Activation: starting connection 'lo' (7f9ddb22-3d23-4f09-b322-f4d2bc663477)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2725] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.2728] device (eth0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.4686] manager: (eth1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.4689] device (eth1): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.6629] device (wlan0): driver supports Access Point (AP) mode
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.6635] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/4)
Jul 28 11:47:54 revelation NetworkManager[3549]: <info>  [1690541274.6639] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul 28 11:47:54 revelation kernel: ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin'
Jul 28 11:47:54 revelation kernel: ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.36
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.3208] device (wlan0): set-hw-addr: set MAC address to CA:88:6D:72:49:8B (scanning)
Jul 28 11:47:55 revelation systemd[1]: Starting WPA supplicant...
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5817] modem-manager: ModemManager available
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5818] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5820] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5823] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5826] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5829] device (eth0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5833] device (eth1): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5849] policy: auto-activating connection 'eth0' (5aec2558-4872-4b18-b3cf-25a9ea3341de)
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5851] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5854] device (eth0): Activation: starting connection 'eth0' (5aec2558-4872-4b18-b3cf-25a9ea3341de)
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5854] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5859] device (lo): Activation: successful, device activated.
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5863] device (eth0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5865] manager: NetworkManager state is now CONNECTING
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5866] device (eth0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.5875] device (eth0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:55 revelation systemd-resolved[1080]: eth0: Bus client set default route setting: no
Jul 28 11:47:55 revelation systemd[1]: Started WPA supplicant.
Jul 28 11:47:55 revelation avahi-daemon[1104]: Joining mDNS multicast group on interface eth0.IPv4 with address 10.0.0.1.
Jul 28 11:47:55 revelation avahi-daemon[1104]: New relevant interface eth0.IPv4 for mDNS.
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.6780] agent-manager: agent[f5ef9eb7fdbdd453,:1.63/org.gnome.Shell.NetworkAgent/1000]: agent registered
Jul 28 11:47:55 revelation avahi-daemon[1104]: Registering new address record for 10.0.0.1 on eth0.IPv4.
Jul 28 11:47:55 revelation avahi-daemon[1104]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::21e:67ff:fe08:e3f8.
Jul 28 11:47:55 revelation avahi-daemon[1104]: New relevant interface eth0.IPv6 for mDNS.
Jul 28 11:47:55 revelation avahi-daemon[1104]: Registering new address record for fe80::21e:67ff:fe08:e3f8 on eth0.*.
Jul 28 11:47:55 revelation wpa_supplicant[3563]: Successfully initialized wpa_supplicant
Jul 28 11:47:55 revelation wpa_supplicant[3563]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.7647] device (wlan0): supplicant interface state: internal-starting -> disconnected
Jul 28 11:47:55 revelation NetworkManager[3549]: <info>  [1690541275.7648] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jul 28 11:47:55 revelation systemd[1]: systemd-localed.service: Deactivated successfully.
Jul 28 11:47:56 revelation NetworkManager[3549]: <info>  [1690541276.8541] policy: auto-activating connection 'VodafoneConnect54654996_EXT' (d54e4b0c-612b-4a5e-a528-a4000a0b4ed3)
Jul 28 11:47:56 revelation NetworkManager[3549]: <info>  [1690541276.8545] device (wlan0): Activation: starting connection 'VodafoneConnect54654996_EXT' (d54e4b0c-612b-4a5e-a528-a4000a0b4ed3)
Jul 28 11:47:56 revelation NetworkManager[3549]: <info>  [1690541276.8546] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.3089] device (wlan0): set-hw-addr: reset MAC address to B0:48:7A:94:9A:1D (preserve)
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5929] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5931] device (wlan0): Activation: (wifi) access point 'VodafoneConnect54654996_EXT' has security, but secrets are required.
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5931] device (wlan0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5934] device (wlan0): supplicant interface state: disconnected -> interface_disabled
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5941] device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5942] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5945] device (wlan0): Activation: (wifi) connection 'VodafoneConnect54654996_EXT' has security, and secrets exist.  No new secrets needed.
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5945] Config: added 'ssid' value 'VodafoneConnect54654996_EXT'
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5945] Config: added 'scan_ssid' value '1'
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5945] Config: added 'bgscan' value 'simple:30:-70:86400'
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5945] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 SAE'
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5945] Config: added 'psk' value '<hidden>'
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.5993] device (wlan0): supplicant interface state: interface_disabled -> inactive
Jul 28 11:47:57 revelation wpa_supplicant[3563]: wlan0: SME: Trying to authenticate with c0:c9:e3:d8:e3:e2 (SSID='VodafoneConnect54654996_EXT' freq=2427 MHz)
Jul 28 11:47:57 revelation kernel: wlan0: authenticate with c0:c9:e3:d8:e3:e2
Jul 28 11:47:57 revelation kernel: wlan0: 80 MHz not supported, disabling VHT
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.6414] device (wlan0): supplicant interface state: inactive -> authenticating
Jul 28 11:47:57 revelation kernel: wlan0: send auth to c0:c9:e3:d8:e3:e2 (try 1/3)
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.6787] device (eth0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.6810] device (eth0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.6811] device (eth0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:57 revelation NetworkManager[3549]: <info>  [1690541277.6816] device (eth0): Activation: successful, device activated.
Jul 28 11:47:58 revelation kernel: wlan0: send auth to c0:c9:e3:d8:e3:e2 (try 2/3)
Jul 28 11:47:58 revelation wpa_supplicant[3563]: wlan0: Trying to associate with c0:c9:e3:d8:e3:e2 (SSID='VodafoneConnect54654996_EXT' freq=2427 MHz)
Jul 28 11:47:58 revelation kernel: wlan0: authenticated
Jul 28 11:47:58 revelation NetworkManager[3549]: <info>  [1690541278.6284] device (wlan0): supplicant interface state: authenticating -> associating
Jul 28 11:47:58 revelation kernel: wlan0: associate with c0:c9:e3:d8:e3:e2 (try 1/3)
Jul 28 11:47:58 revelation kernel: wlan0: RX AssocResp from c0:c9:e3:d8:e3:e2 (capab=0x1411 status=0 aid=2)
Jul 28 11:47:58 revelation wpa_supplicant[3563]: RRM: Ignoring radio measurement request: Not associated
Jul 28 11:47:58 revelation kernel: wlan0: associated
Jul 28 11:47:58 revelation wpa_supplicant[3563]: wlan0: Associated with c0:c9:e3:d8:e3:e2
Jul 28 11:47:58 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jul 28 11:47:58 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=COUNTRY_IE type=COUNTRY alpha2=DE
Jul 28 11:47:58 revelation NetworkManager[3549]: <info>  [1690541278.6657] device (wlan0): supplicant interface state: associating -> associated
Jul 28 11:47:58 revelation NetworkManager[3549]: <info>  [1690541278.7348] device (wlan0): supplicant interface state: associated -> 4way_handshake
Jul 28 11:47:58 revelation wpa_supplicant[3563]: wlan0: WPA: Key negotiation completed with c0:c9:e3:d8:e3:e2 [PTK=CCMP GTK=TKIP]
Jul 28 11:47:58 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-CONNECTED - Connection to c0:c9:e3:d8:e3:e2 completed [id=0 id_str=]
Jul 28 11:47:58 revelation kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Jul 28 11:47:58 revelation NetworkManager[3549]: <info>  [1690541278.7767] device (wlan0): supplicant interface state: 4way_handshake -> completed
Jul 28 11:47:58 revelation NetworkManager[3549]: <info>  [1690541278.7767] device (wlan0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "VodafoneConnect54654996_EXT"
Jul 28 11:47:58 revelation NetworkManager[3549]: <info>  [1690541278.7768] device (wlan0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jul 28 11:47:58 revelation NetworkManager[3549]: <info>  [1690541278.7772] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Jul 28 11:47:58 revelation avahi-daemon[1104]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::8cb8:bd87:f456:1cae.
Jul 28 11:47:58 revelation avahi-daemon[1104]: New relevant interface wlan0.IPv6 for mDNS.
Jul 28 11:47:58 revelation avahi-daemon[1104]: Registering new address record for fe80::8cb8:bd87:f456:1cae on wlan0.*.
Jul 28 11:47:58 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-61 noise=9999 txrate=6500
Jul 28 11:47:59 revelation systemd[1]: Reached target Network is Online.
Jul 28 11:47:59 revelation systemd[1]: Starting DHCPv4 Server Daemon...
Jul 28 11:47:59 revelation dhcpd[3666]: Internet Systems Consortium DHCP Server 4.4.2b1
Jul 28 11:47:59 revelation dhcpd[3666]: Copyright 2004-2019 Internet Systems Consortium.
Jul 28 11:47:59 revelation dhcpd[3666]: All rights reserved.
Jul 28 11:47:59 revelation dhcpd[3666]: For info, please visit https://www.isc.org/software/dhcp/
Jul 28 11:47:59 revelation dhcpd[3666]: ldap_gssapi_principal is not set,GSSAPI Authentication for LDAP will not be used
Jul 28 11:47:59 revelation dhcpd[3666]: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
Jul 28 11:47:59 revelation dhcpd[3666]: Config file: /etc/dhcp/dhcpd.conf
Jul 28 11:47:59 revelation dhcpd[3666]: Database file: /var/lib/dhcpd/dhcpd.leases
Jul 28 11:47:59 revelation dhcpd[3666]: PID file: /var/run/dhcpd.pid
Jul 28 11:47:59 revelation dhcpd[3666]: Source compiled to use binary-leases
Jul 28 11:47:59 revelation dhcpd[3666]: Wrote 0 deleted host decls to leases file.
Jul 28 11:47:59 revelation dhcpd[3666]: Wrote 0 new dynamic host decls to leases file.
Jul 28 11:47:59 revelation dhcpd[3666]: Wrote 1 leases to leases file.
Jul 28 11:47:59 revelation dhcpd[3666]: 
Jul 28 11:47:59 revelation dhcpd[3666]: No subnet declaration for wlan0 (no IPv4 addresses).
Jul 28 11:47:59 revelation dhcpd[3666]: ** Ignoring requests on wlan0.  If this is not what
Jul 28 11:47:59 revelation dhcpd[3666]:   you want, please write a subnet declaration
Jul 28 11:47:59 revelation dhcpd[3666]:   in your dhcpd.conf file for the network segment
Jul 28 11:47:59 revelation dhcpd[3666]:   to which interface wlan0 is attached. **
Jul 28 11:47:59 revelation dhcpd[3666]: 
Jul 28 11:47:59 revelation dhcpd[3666]: 
Jul 28 11:47:59 revelation dhcpd[3666]: No subnet declaration for eth1 (no IPv4 addresses).
Jul 28 11:47:59 revelation dhcpd[3666]: ** Ignoring requests on eth1.  If this is not what
Jul 28 11:47:59 revelation dhcpd[3666]:   you want, please write a subnet declaration
Jul 28 11:47:59 revelation dhcpd[3666]:   in your dhcpd.conf file for the network segment
Jul 28 11:47:59 revelation dhcpd[3666]:   to which interface eth1 is attached. **
Jul 28 11:47:59 revelation dhcpd[3666]: 
Jul 28 11:47:59 revelation dhcpd[3666]: Listening on LPF/eth0/00:1e:67:08:e3:f8/10.0.0.0/24
Jul 28 11:47:59 revelation dhcpd[3666]: Sending on   LPF/eth0/00:1e:67:08:e3:f8/10.0.0.0/24
Jul 28 11:47:59 revelation dhcpd[3666]: Sending on   Socket/fallback/fallback-net
Jul 28 11:47:59 revelation dhcpd[3666]: Server starting service.
Jul 28 11:47:59 revelation systemd[1]: Started DHCPv4 Server Daemon.
Jul 28 11:48:02 revelation systemd[1609]: Started VTE child process 3770 launched by gnome-terminal-server process 3297.
Jul 28 11:48:02 revelation systemd[1609]: Started VTE child process 3798 launched by gnome-terminal-server process 3297.
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.6071] dhcp4 (wlan0): state changed new lease, address=192.168.1.12
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.6075] policy: set 'VodafoneConnect54654996_EXT' (wlan0) as default for IPv4 routing and DNS
Jul 28 11:48:02 revelation systemd-resolved[1080]: wlan0: Bus client set search domain list to: broadband
Jul 28 11:48:02 revelation systemd-resolved[1080]: wlan0: Bus client set default route setting: yes
Jul 28 11:48:02 revelation systemd-resolved[1080]: wlan0: Bus client set DNS server list to: 192.168.1.254
Jul 28 11:48:02 revelation avahi-daemon[1104]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.12.
Jul 28 11:48:02 revelation avahi-daemon[1104]: New relevant interface wlan0.IPv4 for mDNS.
Jul 28 11:48:02 revelation avahi-daemon[1104]: Registering new address record for 192.168.1.12 on wlan0.IPv4.
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.7840] device (wlan0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.7851] device (wlan0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.7852] device (wlan0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.7855] manager: NetworkManager state is now CONNECTED_SITE
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.7859] device (wlan0): Activation: successful, device activated.
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.7862] manager: NetworkManager state is now CONNECTED_GLOBAL
Jul 28 11:48:02 revelation NetworkManager[3549]: <info>  [1690541282.7865] manager: startup complete
Jul 28 11:48:04 revelation NetworkManager[3549]: <info>  [1690541284.9455] dhcp6 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Jul 28 11:48:04 revelation systemd-resolved[1080]: wlan0: Bus client set DNS server list to: 192.168.1.254, fd52:a81c:df85:1:aaf5:acff:fed8:47ad
Jul 28 11:48:04 revelation avahi-daemon[1104]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::8cb8:bd87:f456:1cae.
Jul 28 11:48:05 revelation NetworkManager[3549]: <info>  [1690541284.9999] dhcp6 (wlan0): state changed new lease
Jul 28 11:48:05 revelation avahi-daemon[1104]: Joining mDNS multicast group on interface wlan0.IPv6 with address fd52:a81c:df85:1:eccc:c86e:1392:4d9a.
Jul 28 11:48:05 revelation avahi-daemon[1104]: Registering new address record for fd52:a81c:df85:1:eccc:c86e:1392:4d9a on wlan0.*.
Jul 28 11:48:05 revelation avahi-daemon[1104]: Withdrawing address record for fe80::8cb8:bd87:f456:1cae on wlan0.
Jul 28 11:48:09 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-75 noise=9999 txrate=150000
Jul 28 11:48:13 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-61 noise=9999 txrate=1000
Jul 28 11:48:13 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-61 noise=9999 txrate=1000
Jul 28 11:48:14 revelation systemd-resolved[1080]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.1.254.
Jul 28 11:48:14 revelation systemd-resolved[1080]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.1.254.
Jul 28 11:48:14 revelation systemd[1]: realmd.service: Deactivated successfully.
Jul 28 11:48:20 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 11:48:23 revelation journal[2710]: Object .Gjs_window-list_gnome-shell-extensions_gcampax_github_com_windowPicker_WindowPickerToggle (0x55dd5782afa0), has been already deallocated — impossible to set any property on it. This might be caused by the object having been destroyed from C code using something such as destroy(), dispose(), or remove() vfuncs.
Jul 28 11:48:23 revelation gnome-shell[2710]: == Stack trace for context 0x55dd554051a0 ==
Jul 28 11:48:23 revelation gnome-shell[2710]: #0   55dd5565ed10 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:341 (17c992a74560 @ 20)
Jul 28 11:48:23 revelation gnome-shell[2710]: #1   55dd5565ec70 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:227 (17c992a748d0 @ 306)
Jul 28 11:48:23 revelation gnome-shell[2710]: #2   55dd5565ebe8 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:178 (17c992a749c0 @ 33)
Jul 28 11:48:23 revelation journal[2710]: Object .Gjs_window-list_gnome-shell-extensions_gcampax_github_com_windowPicker_WindowPickerToggle (0x55dd5782afa0), has been already deallocated — impossible to set any property on it. This might be caused by the object having been destroyed from C code using something such as destroy(), dispose(), or remove() vfuncs.
Jul 28 11:48:23 revelation gnome-shell[2710]: == Stack trace for context 0x55dd554051a0 ==
Jul 28 11:48:23 revelation gnome-shell[2710]: #0   55dd5565ed10 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:341 (17c992a74560 @ 20)
Jul 28 11:48:23 revelation gnome-shell[2710]: #1   55dd5565ec70 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:255 (17c992a747e0 @ 265)
Jul 28 11:48:23 revelation gnome-shell[2710]: #2   55dd5565ebe8 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:180 (17c992a749c0 @ 59)
Jul 28 11:48:24 revelation systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jul 28 11:48:25 revelation systemd[1609]: Starting Virtual filesystem metadata service...
Jul 28 11:48:25 revelation systemd[1609]: Started Virtual filesystem metadata service.
Jul 28 11:48:32 revelation chronyd[1199]: Selected source 217.114.59.3 (2.rocky.pool.ntp.org)
Jul 28 11:48:32 revelation chronyd[1199]: System clock TAI offset set to 37 seconds
Jul 28 11:48:33 revelation chronyd[1199]: Selected source 162.159.200.1 (2.rocky.pool.ntp.org)
Jul 28 11:49:26 revelation gnome-shell[2710]: Window manager warning: WM_TRANSIENT_FOR window 0x26004f5 for 0x260051b window override-redirect is an override-redirect window and this is not correct according to the standard, so we'll fallback to the first non-override-redirect window 0x2600006.
Jul 28 11:49:26 revelation gnome-shell[2710]: Window manager warning: WM_TRANSIENT_FOR window 0x26004f5 for 0x260051b window override-redirect is an override-redirect window and this is not correct according to the standard, so we'll fallback to the first non-override-redirect window 0x2600006.
Jul 28 11:49:26 revelation gnome-shell[2710]: Window manager warning: WM_TRANSIENT_FOR window 0x26004f5 for 0x260051b window override-redirect is an override-redirect window and this is not correct according to the standard, so we'll fallback to the first non-override-redirect window 0x2600006.
Jul 28 11:49:26 revelation systemd[1609]: Started VTE child process 4046 launched by gnome-terminal-server process 3297.
Jul 28 11:49:26 revelation systemd[1609]: Starting Mark boot as successful...
Jul 28 11:49:26 revelation grub2-set-bootflag[4052]: Error reading from /boot/grub2/grubenv: Invalid argument
Jul 28 11:49:26 revelation systemd[1609]: grub-boot-success.service: Main process exited, code=exited, status=1/FAILURE
Jul 28 11:49:26 revelation systemd[1609]: grub-boot-success.service: Failed with result 'exit-code'.
Jul 28 11:49:26 revelation systemd[1609]: Failed to start Mark boot as successful.
Jul 28 11:49:29 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 11:49:29 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 11:49:31 revelation su[4078]: (to root) rfs on pts/3
Jul 28 11:49:59 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 11:52:38 revelation systemd[1609]: Created slice User Background Tasks Slice.
Jul 28 11:52:38 revelation systemd[1609]: Starting Cleanup of User's Temporary Files and Directories...
Jul 28 11:52:38 revelation systemd[1609]: Finished Cleanup of User's Temporary Files and Directories.
Jul 28 11:52:51 revelation chronyd[1199]: Selected source 217.114.59.3 (2.rocky.pool.ntp.org)
Jul 28 11:53:02 revelation chronyd[1199]: chronyd exiting
Jul 28 11:53:02 revelation systemd[1]: Stopping NTP client/server...
Jul 28 11:53:02 revelation systemd[1]: chronyd.service: Deactivated successfully.
Jul 28 11:53:02 revelation systemd[1]: Stopped NTP client/server.
Jul 28 11:53:02 revelation systemd[1]: Starting NTP client/server...
Jul 28 11:53:02 revelation chronyd[4225]: chronyd version 4.3 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +NTS +SECHASH +IPV6 +DEBUG)
Jul 28 11:53:02 revelation chronyd[4225]: Frequency 30.416 +/- 1.956 ppm read from /var/lib/chrony/drift
Jul 28 11:53:02 revelation chronyd[4225]: Using right/UTC timezone to obtain leap second data
Jul 28 11:53:02 revelation chronyd[4225]: Loaded seccomp filter (level 2)
Jul 28 11:53:02 revelation systemd[1]: Started NTP client/server.
Jul 28 11:53:07 revelation chronyd[4225]: Selected source 213.5.132.231 (2.rocky.pool.ntp.org)
Jul 28 11:53:07 revelation chronyd[4225]: System clock TAI offset set to 37 seconds
Jul 28 11:53:09 revelation chronyd[4225]: Selected source 162.159.200.1 (2.rocky.pool.ntp.org)
Jul 28 11:53:15 revelation systemd-resolved[1080]: Grace period over, resuming full feature set (UDP+EDNS0) for DNS server 192.168.1.254.
Jul 28 11:54:13 revelation chronyd[4225]: Selected source 51.89.151.183 (2.rocky.pool.ntp.org)
Jul 28 11:58:15 revelation systemd-resolved[1080]: Grace period over, resuming full feature set (UDP+EDNS0) for DNS server 192.168.1.254.
Jul 28 11:58:20 revelation systemd[1609]: Started Application launched by gsd-media-keys.
Jul 28 11:58:20 revelation systemd[1609]: Started VTE child process 4299 launched by gnome-terminal-server process 3297.
Jul 28 12:02:27 revelation cupsd[1135]: Expiring subscriptions...
Jul 28 12:02:27 revelation systemd[1]: Starting Cleanup of Temporary Directories...
Jul 28 12:02:27 revelation systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
Jul 28 12:02:27 revelation systemd[1]: Finished Cleanup of Temporary Directories.
Jul 28 12:02:27 revelation systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dclean.service.mount: Deactivated successfully.
Jul 28 12:03:50 revelation systemd-resolved[1080]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.1.254.
Jul 28 12:03:50 revelation systemd-resolved[1080]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.1.254.
Jul 28 12:04:31 revelation systemd[1]: Stopping Network Manager...
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0556] caught SIGTERM, shutting down normally.
Jul 28 12:04:31 revelation journal[2710]: Removing a network device that was not added
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0578] device (wlan0): state change: activated -> deactivating (reason 'unmanaged', sys-iface-state: 'managed')
Jul 28 12:04:31 revelation NetworkManager[3549]: <warn>  [1690542271.0599] dispatcher: (13) failed (after 0.001 sec): Could not activate remote peer.
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0600] manager: NetworkManager state is now CONNECTED_LOCAL
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0602] device (wlan0): state change: deactivating -> unmanaged (reason 'removed', sys-iface-state: 'managed')
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0698] dhcp4 (wlan0): canceled DHCP transaction
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0698] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0698] dhcp4 (wlan0): state changed no lease
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0700] dhcp6 (wlan0): canceled DHCP transaction
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0700] dhcp6 (wlan0): activation: beginning transaction (timeout in 45 seconds)
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.0700] dhcp6 (wlan0): state changed no lease
Jul 28 12:04:31 revelation kernel: wlan0: deauthenticating from c0:c9:e3:d8:e3:e2 by local choice (Reason: 3=DEAUTH_LEAVING)
Jul 28 12:04:31 revelation journal[2710]: An active wireless connection, in infrastructure mode, involves no access point?
Jul 28 12:04:31 revelation systemd-resolved[1080]: wlan0: Bus client reset search domain list.
Jul 28 12:04:31 revelation systemd-resolved[1080]: wlan0: Bus client set default route setting: no
Jul 28 12:04:31 revelation systemd-resolved[1080]: wlan0: Bus client reset DNS server list.
Jul 28 12:04:31 revelation avahi-daemon[1104]: Withdrawing address record for 192.168.1.12 on wlan0.
Jul 28 12:04:31 revelation avahi-daemon[1104]: Leaving mDNS multicast group on interface wlan0.IPv4 with address 192.168.1.12.
Jul 28 12:04:31 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-DISCONNECTED bssid=c0:c9:e3:d8:e3:e2 reason=3 locally_generated=1
Jul 28 12:04:31 revelation avahi-daemon[1104]: Interface wlan0.IPv4 no longer relevant for mDNS.
Jul 28 12:04:31 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 28 12:04:31 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
Jul 28 12:04:31 revelation avahi-daemon[1104]: Withdrawing address record for fd52:a81c:df85:1:eccc:c86e:1392:4d9a on wlan0.
Jul 28 12:04:31 revelation avahi-daemon[1104]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fd52:a81c:df85:1:eccc:c86e:1392:4d9a.
Jul 28 12:04:31 revelation avahi-daemon[1104]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::8cb8:bd87:f456:1cae.
Jul 28 12:04:31 revelation avahi-daemon[1104]: Registering new address record for fe80::8cb8:bd87:f456:1cae on wlan0.*.
Jul 28 12:04:31 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=GB
Jul 28 12:04:31 revelation avahi-daemon[1104]: Withdrawing address record for fe80::8cb8:bd87:f456:1cae on wlan0.
Jul 28 12:04:31 revelation avahi-daemon[1104]: Leaving mDNS multicast group on interface wlan0.IPv6 with address fe80::8cb8:bd87:f456:1cae.
Jul 28 12:04:31 revelation avahi-daemon[1104]: Interface wlan0.IPv6 no longer relevant for mDNS.
Jul 28 12:04:31 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 28 12:04:31 revelation wpa_supplicant[3563]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Jul 28 12:04:31 revelation wpa_supplicant[3563]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Jul 28 12:04:31 revelation NetworkManager[3549]: <info>  [1690542271.7218] exiting (success)
Jul 28 12:04:31 revelation systemd[1]: NetworkManager.service: Deactivated successfully.
Jul 28 12:04:31 revelation systemd[1]: Stopped Network Manager.
Jul 28 12:07:40 revelation journal[2710]: Object .Gjs_window-list_gnome-shell-extensions_gcampax_github_com_windowPicker_WindowPickerToggle (0x55dd5782afa0), has been already deallocated — impossible to set any property on it. This might be caused by the object having been destroyed from C code using something such as destroy(), dispose(), or remove() vfuncs.
Jul 28 12:07:40 revelation gnome-shell[2710]: == Stack trace for context 0x55dd554051a0 ==
Jul 28 12:07:40 revelation gnome-shell[2710]: #0   55dd56472270 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:341 (17c992a74560 @ 20)
Jul 28 12:07:40 revelation gnome-shell[2710]: #1   55dd564721d0 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:227 (17c992a748d0 @ 306)
Jul 28 12:07:40 revelation gnome-shell[2710]: #2   55dd56472148 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:178 (17c992a749c0 @ 33)
Jul 28 12:07:40 revelation journal[2710]: Object .Gjs_window-list_gnome-shell-extensions_gcampax_github_com_windowPicker_WindowPickerToggle (0x55dd5782afa0), has been already deallocated — impossible to set any property on it. This might be caused by the object having been destroyed from C code using something such as destroy(), dispose(), or remove() vfuncs.
Jul 28 12:07:40 revelation gnome-shell[2710]: == Stack trace for context 0x55dd554051a0 ==
Jul 28 12:07:40 revelation gnome-shell[2710]: #0   55dd56472270 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:341 (17c992a74560 @ 20)
Jul 28 12:07:40 revelation gnome-shell[2710]: #1   55dd564721d0 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:255 (17c992a747e0 @ 265)
Jul 28 12:07:40 revelation gnome-shell[2710]: #2   55dd56472148 i   /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js:180 (17c992a749c0 @ 59)
Jul 28 12:07:45 revelation dbus-broker-launch[2480]: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 12:07:59 revelation dbus-broker-launch[1485]: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 12:08:02 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:08:02 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:08:03 revelation systemd[1]: Created slice Slice /system/dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged.
Jul 28 12:08:03 revelation systemd[1]: Started dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@0.service.
Jul 28 12:08:04 revelation setroubleshoot[5437]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:08:04 revelation setroubleshoot[5437]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:08:13 revelation systemd[1]: dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@0.service: Deactivated successfully.
Jul 28 12:08:13 revelation systemd[1]: dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@0.service: Consumed 1.050s CPU time.
Jul 28 12:08:14 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:08:58 revelation dracut[6665]: dracut-057-21.git20230214.el9
Jul 28 12:08:59 revelation dracut[6667]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 12:08:59 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:08:59 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:09:00 revelation systemd[1]: Started dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@1.service.
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:09:00 revelation dracut[6667]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:09:00 revelation setroubleshoot[6779]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:09:01 revelation setroubleshoot[6779]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: memstrack is not available
Jul 28 12:09:01 revelation dracut[6667]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:09:01 revelation dracut[6667]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:09:01 revelation dracut[6667]: memstrack is not available
Jul 28 12:09:01 revelation dracut[6667]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:09:01 revelation dracut[6667]: *** Including module: bash ***
Jul 28 12:09:01 revelation dracut[6667]: *** Including module: systemd ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: systemd-initrd ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: systemd-sysusers ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: nss-softokn ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: dbus-broker ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: dbus ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: i18n ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: network-manager ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: network ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: ifcfg ***
Jul 28 12:09:02 revelation dracut[6667]: *** Including module: drm ***
Jul 28 12:09:03 revelation dracut[6667]: *** Including module: plymouth ***
Jul 28 12:09:04 revelation setroubleshoot[6779]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:09:04 revelation setroubleshoot[6779]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:09:05 revelation dracut[6667]: *** Including module: prefixdevname ***
Jul 28 12:09:05 revelation dracut[6667]: *** Including module: dm ***
Jul 28 12:09:05 revelation dracut[6667]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:09:05 revelation dracut[6667]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:09:05 revelation dracut[6667]: Skipping udev rule: 55-dm.rules
Jul 28 12:09:05 revelation dracut[6667]: *** Including module: kernel-modules ***
Jul 28 12:09:06 revelation setroubleshoot[6779]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:09:06 revelation setroubleshoot[6779]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: kernel-modules-extra ***
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: kernel-network-modules ***
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: lvm ***
Jul 28 12:09:07 revelation dracut[6667]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:09:07 revelation dracut[6667]: Skipping udev rule: 56-lvm.rules
Jul 28 12:09:07 revelation dracut[6667]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: resume ***
Jul 28 12:09:07 revelation setroubleshoot[6779]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:09:07 revelation setroubleshoot[6779]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: rootfs-block ***
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: terminfo ***
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: udev-rules ***
Jul 28 12:09:07 revelation dracut[6667]: Skipping udev rule: 91-permissions.rules
Jul 28 12:09:07 revelation dracut[6667]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:09:07 revelation dracut[6667]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: dracut-systemd ***
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: usrmount ***
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: base ***
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: fs-lib ***
Jul 28 12:09:07 revelation dracut[6667]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:09:07 revelation dracut[6667]:  microcode_ctl module: mangling fw_dir
Jul 28 12:09:07 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:09:07 revelation dracut[6667]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:09:07 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:09:08 revelation dracut[6667]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 12:09:08 revelation dracut[6667]: *** Including module: shutdown ***
Jul 28 12:09:08 revelation dracut[6667]: *** Including modules done ***
Jul 28 12:09:08 revelation dracut[6667]: *** Installing kernel module dependencies ***
Jul 28 12:09:09 revelation dracut[6667]: *** Installing kernel module dependencies done ***
Jul 28 12:09:09 revelation dracut[6667]: *** Resolving executable dependencies ***
Jul 28 12:09:10 revelation dracut[6667]: *** Resolving executable dependencies done ***
Jul 28 12:09:10 revelation dracut[6667]: *** Hardlinking files ***
Jul 28 12:09:10 revelation dracut[6667]: Mode:           real
Jul 28 12:09:10 revelation dracut[6667]: Files:          1508
Jul 28 12:09:10 revelation dracut[6667]: Linked:         8 files
Jul 28 12:09:10 revelation dracut[6667]: Compared:       0 xattrs
Jul 28 12:09:10 revelation dracut[6667]: Compared:       410 files
Jul 28 12:09:10 revelation dracut[6667]: Saved:          378.03 KiB
Jul 28 12:09:10 revelation dracut[6667]: Duration:       0.020210 seconds
Jul 28 12:09:10 revelation dracut[6667]: *** Hardlinking files done ***
Jul 28 12:09:10 revelation dracut[6667]: *** Generating early-microcode cpio image ***
Jul 28 12:09:10 revelation dracut[6667]: *** Constructing GenuineIntel.bin ***
Jul 28 12:09:10 revelation dracut[6667]: *** Constructing GenuineIntel.bin ***
Jul 28 12:09:10 revelation dracut[6667]: *** Constructing GenuineIntel.bin ***
Jul 28 12:09:10 revelation dracut[6667]: *** Store current command line parameters ***
Jul 28 12:09:10 revelation dracut[6667]: *** Stripping files ***
Jul 28 12:09:10 revelation dracut[6667]: *** Stripping files done ***
Jul 28 12:09:10 revelation dracut[6667]: *** Creating image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' ***
Jul 28 12:09:10 revelation dracut[6667]: dracut: using auto-determined compression method 'pigz'
Jul 28 12:09:17 revelation systemd[1]: dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@1.service: Deactivated successfully.
Jul 28 12:09:17 revelation systemd[1]: dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@1.service: Consumed 1.050s CPU time.
Jul 28 12:09:17 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:09:20 revelation dracut[6667]: *** Creating initramfs image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' done ***
Jul 28 12:09:25 revelation dracut[17057]: dracut-057-21.git20230214.el9
Jul 28 12:09:25 revelation dracut[17059]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:09:26 revelation dracut[17059]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: memstrack is not available
Jul 28 12:09:27 revelation dracut[17059]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:09:27 revelation dracut[17059]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:09:27 revelation dracut[17059]: memstrack is not available
Jul 28 12:09:27 revelation dracut[17059]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:09:27 revelation dracut[17059]: *** Including module: bash ***
Jul 28 12:09:27 revelation dracut[17059]: *** Including module: systemd ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: systemd-initrd ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: systemd-sysusers ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: nss-softokn ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: dbus-broker ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: dbus ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: i18n ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: network-manager ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: network ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: ifcfg ***
Jul 28 12:09:28 revelation dracut[17059]: *** Including module: drm ***
Jul 28 12:09:29 revelation dracut[17059]: *** Including module: plymouth ***
Jul 28 12:09:29 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:09:29 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:09:30 revelation systemd[1]: Started dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@2.service.
Jul 28 12:09:30 revelation dracut[17059]: *** Including module: prefixdevname ***
Jul 28 12:09:30 revelation dracut[17059]: *** Including module: dm ***
Jul 28 12:09:30 revelation dracut[17059]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:09:30 revelation dracut[17059]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:09:30 revelation dracut[17059]: Skipping udev rule: 55-dm.rules
Jul 28 12:09:31 revelation dracut[17059]: *** Including module: kernel-modules ***
Jul 28 12:09:31 revelation setroubleshoot[19292]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:09:31 revelation setroubleshoot[19292]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: kernel-modules-extra ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: kernel-network-modules ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: lvm ***
Jul 28 12:09:32 revelation dracut[17059]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:09:32 revelation dracut[17059]: Skipping udev rule: 56-lvm.rules
Jul 28 12:09:32 revelation dracut[17059]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: resume ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: rootfs-block ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: terminfo ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: udev-rules ***
Jul 28 12:09:32 revelation setroubleshoot[19292]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:09:32 revelation setroubleshoot[19292]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:09:32 revelation dracut[17059]: Skipping udev rule: 91-permissions.rules
Jul 28 12:09:32 revelation dracut[17059]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:09:32 revelation dracut[17059]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: dracut-systemd ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: usrmount ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: base ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: fs-lib ***
Jul 28 12:09:32 revelation dracut[17059]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:09:32 revelation dracut[17059]:  microcode_ctl module: mangling fw_dir
Jul 28 12:09:32 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:09:33 revelation dracut[17059]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:09:33 revelation dracut[17059]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 12:09:33 revelation dracut[17059]: *** Including module: shutdown ***
Jul 28 12:09:33 revelation dracut[17059]: *** Including modules done ***
Jul 28 12:09:33 revelation dracut[17059]: *** Installing kernel module dependencies ***
Jul 28 12:09:34 revelation dracut[17059]: *** Installing kernel module dependencies done ***
Jul 28 12:09:34 revelation dracut[17059]: *** Resolving executable dependencies ***
Jul 28 12:09:34 revelation setroubleshoot[19292]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:09:34 revelation setroubleshoot[19292]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:09:35 revelation dracut[17059]: *** Resolving executable dependencies done ***
Jul 28 12:09:35 revelation dracut[17059]: *** Hardlinking files ***
Jul 28 12:09:35 revelation dracut[17059]: Mode:           real
Jul 28 12:09:35 revelation dracut[17059]: Files:          1508
Jul 28 12:09:35 revelation dracut[17059]: Linked:         8 files
Jul 28 12:09:35 revelation dracut[17059]: Compared:       0 xattrs
Jul 28 12:09:35 revelation dracut[17059]: Compared:       410 files
Jul 28 12:09:35 revelation dracut[17059]: Saved:          378.03 KiB
Jul 28 12:09:35 revelation dracut[17059]: Duration:       0.019490 seconds
Jul 28 12:09:35 revelation dracut[17059]: *** Hardlinking files done ***
Jul 28 12:09:35 revelation dracut[17059]: *** Generating early-microcode cpio image ***
Jul 28 12:09:35 revelation dracut[17059]: *** Constructing GenuineIntel.bin ***
Jul 28 12:09:35 revelation dracut[17059]: *** Constructing GenuineIntel.bin ***
Jul 28 12:09:35 revelation dracut[17059]: *** Constructing GenuineIntel.bin ***
Jul 28 12:09:35 revelation dracut[17059]: *** Store current command line parameters ***
Jul 28 12:09:35 revelation dracut[17059]: *** Stripping files ***
Jul 28 12:09:35 revelation dracut[17059]: *** Stripping files done ***
Jul 28 12:09:35 revelation dracut[17059]: *** Creating image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' ***
Jul 28 12:09:35 revelation dracut[17059]: dracut: using auto-determined compression method 'pigz'
Jul 28 12:09:44 revelation systemd[1]: dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@2.service: Deactivated successfully.
Jul 28 12:09:44 revelation systemd[1]: dbus-:1.12-org.fedoraproject.SetroubleshootPrivileged@2.service: Consumed 1.012s CPU time.
Jul 28 12:09:44 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:09:45 revelation dracut[17059]: *** Creating initramfs image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' done ***
Jul 28 12:10:00 revelation at-spi-bus-launcher[2587]: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 12:10:05 revelation dbus-broker-launch[2480]: avc:  op=setenforce lsm=selinux enforcing=1 res=1
Jul 28 12:10:06 revelation systemd[1609]: vte-spawn-5af9d08f-c761-431c-822e-14775ce4c385.scope: Consumed 12.977s CPU time.
Jul 28 12:10:10 revelation systemd[1609]: vte-spawn-43872a98-ef78-440a-b8a5-76863b506495.scope: Consumed 5.482s CPU time.
Jul 28 12:10:13 revelation at-spi-bus-launcher[2587]: avc:  op=setenforce lsm=selinux enforcing=1 res=1
Jul 28 12:10:13 revelation systemd[1609]: vte-spawn-915db7d0-b02c-4727-8b31-e15d17cc9d4e.scope: Consumed 11.046s CPU time.
Jul 28 12:12:34 revelation kernel: Linux version 5.14.0-284.18.1.el9_2.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.3.1 20221121 (Red Hat 11.3.1-4), GNU ld version 2.35.2-37.el9) #1 SMP PREEMPT_DYNAMIC Thu Jun 22 17:36:46 UTC 2023
Jul 28 12:12:34 revelation kernel: The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.
Jul 28 12:12:34 revelation kernel: Command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 12:12:34 revelation kernel: x86/fpu: x87 FPU will use FXSAVE
Jul 28 12:12:34 revelation kernel: signal: max sigframe size: 1440
Jul 28 12:12:34 revelation kernel: BIOS-provided physical RAM map:
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009afff] usable
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000000009b000-0x000000000009ffff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008a474fff] usable
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008a475000-0x000000008c484fff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008c485000-0x000000008c566fff] ACPI NVS
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008c567000-0x000000008c648fff] ACPI data
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008c649000-0x000000008da48fff] ACPI NVS
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008da49000-0x000000008f601fff] ACPI data
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008f602000-0x000000008f64efff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008f64f000-0x000000008f6e4fff] ACPI data
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008f6e5000-0x000000008f6eefff] ACPI NVS
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008f6ef000-0x000000008f6f0fff] ACPI data
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008f6f1000-0x000000008f7cefff] ACPI NVS
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008f7cf000-0x000000008f7fffff] ACPI data
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x000000008f800000-0x000000008fffffff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x00000000a0000000-0x00000000afffffff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x00000000fc000000-0x00000000fcffffff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Jul 28 12:12:34 revelation kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000c6fffffff] usable
Jul 28 12:12:34 revelation kernel: NX (Execute Disable) protection: active
Jul 28 12:12:34 revelation kernel: SMBIOS 2.5 present.
Jul 28 12:12:34 revelation kernel: DMI: Intel Corporation S5520UR/S5520UR, BIOS S5500.86B.01.00.0064.050520141428 05/05/2014
Jul 28 12:12:34 revelation kernel: tsc: Fast TSC calibration using PIT
Jul 28 12:12:34 revelation kernel: tsc: Detected 3458.391 MHz processor
Jul 28 12:12:34 revelation kernel: last_pfn = 0xc70000 max_arch_pfn = 0x400000000
Jul 28 12:12:34 revelation kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jul 28 12:12:34 revelation kernel: last_pfn = 0x8a475 max_arch_pfn = 0x400000000
Jul 28 12:12:34 revelation kernel: found SMP MP-table at [mem 0x000fdad0-0x000fdadf]
Jul 28 12:12:34 revelation kernel: Using GB pages for direct mapping
Jul 28 12:12:34 revelation kernel: RAMDISK: [mem 0x315b2000-0x34ad0fff]
Jul 28 12:12:34 revelation kernel: ACPI: Early table checksum verification disabled
Jul 28 12:12:34 revelation kernel: ACPI: RSDP 0x00000000000F0410 000024 (v02 INTEL )
Jul 28 12:12:34 revelation kernel: ACPI: XSDT 0x000000008F7FD120 000094 (v01 INTEL  S5520UR  00000000      01000013)
Jul 28 12:12:34 revelation kernel: ACPI: FACP 0x000000008F7FB000 0000F4 (v04 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: DSDT 0x000000008F7F4000 0065A1 (v02 INTEL  S5520UR  00000003 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: FACS 0x000000008F6F1000 000040
Jul 28 12:12:34 revelation kernel: ACPI: FACS 0x000000008F6F1000 000040
Jul 28 12:12:34 revelation kernel: ACPI: APIC 0x000000008F7F3000 0001A8 (v02 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: MCFG 0x000000008F7F2000 00003C (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: HPET 0x000000008F7F1000 000038 (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: SLIT 0x000000008F7F0000 000030 (v01 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: SRAT 0x000000008F7EF000 000430 (v02 INTEL  S5520UR  00000001 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: SPCR 0x000000008F7EE000 000050 (v01 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: WDDT 0x000000008F7ED000 000040 (v01 INTEL  S5520UR  00000000 MSFT 0100000D)
Jul 28 12:12:34 revelation kernel: ACPI: SSDT 0x000000008F7D2000 01AFC4 (v02 INTEL  SSDT  PM 00004000 INTL 20061109)
Jul 28 12:12:34 revelation kernel: ACPI: SSDT 0x000000008F7D1000 0001D8 (v02 INTEL  IPMI     00004000 INTL 20061109)
Jul 28 12:12:34 revelation kernel: ACPI: HEST 0x000000008F7D0000 0000A8 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 12:12:34 revelation kernel: ACPI: BERT 0x000000008F7CF000 000030 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 12:12:34 revelation kernel: ACPI: ERST 0x000000008F6F0000 000230 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 12:12:34 revelation kernel: ACPI: EINJ 0x000000008F6EF000 000130 (v01 INTEL  S5520UR  00000001 INTL 00000001)
Jul 28 12:12:34 revelation kernel: ACPI: Reserving FACP table memory at [mem 0x8f7fb000-0x8f7fb0f3]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving DSDT table memory at [mem 0x8f7f4000-0x8f7fa5a0]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving FACS table memory at [mem 0x8f6f1000-0x8f6f103f]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving FACS table memory at [mem 0x8f6f1000-0x8f6f103f]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving APIC table memory at [mem 0x8f7f3000-0x8f7f31a7]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving MCFG table memory at [mem 0x8f7f2000-0x8f7f203b]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving HPET table memory at [mem 0x8f7f1000-0x8f7f1037]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving SLIT table memory at [mem 0x8f7f0000-0x8f7f002f]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving SRAT table memory at [mem 0x8f7ef000-0x8f7ef42f]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving SPCR table memory at [mem 0x8f7ee000-0x8f7ee04f]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving WDDT table memory at [mem 0x8f7ed000-0x8f7ed03f]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving SSDT table memory at [mem 0x8f7d2000-0x8f7ecfc3]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving SSDT table memory at [mem 0x8f7d1000-0x8f7d11d7]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving HEST table memory at [mem 0x8f7d0000-0x8f7d00a7]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving BERT table memory at [mem 0x8f7cf000-0x8f7cf02f]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving ERST table memory at [mem 0x8f6f0000-0x8f6f022f]
Jul 28 12:12:34 revelation kernel: ACPI: Reserving EINJ table memory at [mem 0x8f6ef000-0x8f6ef12f]
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x20 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x02 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x22 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x04 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x24 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x10 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x30 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x12 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x32 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x14 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x34 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x21 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x03 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x23 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x05 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x25 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x11 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x31 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x13 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x33 -> Node 1
Jul 28 12:12:34 revelation kernel: SRAT: PXM 0 -> APIC 0x15 -> Node 0
Jul 28 12:12:34 revelation kernel: SRAT: PXM 1 -> APIC 0x35 -> Node 1
Jul 28 12:12:34 revelation kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x8fffffff]
Jul 28 12:12:34 revelation kernel: ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x66fffffff]
Jul 28 12:12:34 revelation kernel: ACPI: SRAT: Node 1 PXM 1 [mem 0x670000000-0xc6fffffff]
Jul 28 12:12:34 revelation kernel: NUMA: Node 0 [mem 0x00000000-0x8fffffff] + [mem 0x100000000-0x66fffffff] -> [mem 0x00000000-0x66fffffff]
Jul 28 12:12:34 revelation kernel: NODE_DATA(0) allocated [mem 0x66ffd5000-0x66fffffff]
Jul 28 12:12:34 revelation kernel: NODE_DATA(1) allocated [mem 0xc6ffd4000-0xc6fffefff]
Jul 28 12:12:34 revelation kernel: Reserving 256MB of memory at 1952MB for crashkernel (System RAM: 49060MB)
Jul 28 12:12:34 revelation kernel: Zone ranges:
Jul 28 12:12:34 revelation kernel:  DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jul 28 12:12:34 revelation kernel:  DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jul 28 12:12:34 revelation kernel:  Normal   [mem 0x0000000100000000-0x0000000c6fffffff]
Jul 28 12:12:34 revelation kernel:  Device   empty
Jul 28 12:12:34 revelation kernel: Movable zone start for each node
Jul 28 12:12:34 revelation kernel: Early memory node ranges
Jul 28 12:12:34 revelation kernel:  node   0: [mem 0x0000000000001000-0x000000000009afff]
Jul 28 12:12:34 revelation kernel:  node   0: [mem 0x0000000000100000-0x000000008a474fff]
Jul 28 12:12:34 revelation kernel:  node   0: [mem 0x0000000100000000-0x000000066fffffff]
Jul 28 12:12:34 revelation kernel:  node   1: [mem 0x0000000670000000-0x0000000c6fffffff]
Jul 28 12:12:34 revelation kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000066fffffff]
Jul 28 12:12:34 revelation kernel: Initmem setup node 1 [mem 0x0000000670000000-0x0000000c6fffffff]
Jul 28 12:12:34 revelation kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jul 28 12:12:34 revelation kernel: On node 0, zone DMA: 101 pages in unavailable ranges
Jul 28 12:12:34 revelation kernel: On node 0, zone Normal: 23435 pages in unavailable ranges
Jul 28 12:12:34 revelation kernel: ACPI: PM-Timer IO Port: 0x408
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high level lint[0x1])
Jul 28 12:12:34 revelation kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jul 28 12:12:34 revelation kernel: IOAPIC[1]: apic_id 9, version 32, address 0xfec90000, GSI 24-47
Jul 28 12:12:34 revelation kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jul 28 12:12:34 revelation kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jul 28 12:12:34 revelation kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jul 28 12:12:34 revelation kernel: ACPI: HPET id: 0x8086a401 base: 0xfed00000
Jul 28 12:12:34 revelation kernel: ACPI: SPCR: SPCR table version 1
Jul 28 12:12:34 revelation kernel: ACPI: SPCR: console: uart,io,0x3f8,115200
Jul 28 12:12:34 revelation kernel: smpboot: Allowing 24 CPUs, 0 hotplug CPUs
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x0009b000-0x0009ffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8a475000-0x8c484fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c485000-0x8c566fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c567000-0x8c648fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8c649000-0x8da48fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8da49000-0x8f601fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f602000-0x8f64efff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f64f000-0x8f6e4fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6e5000-0x8f6eefff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6ef000-0x8f6f0fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f6f1000-0x8f7cefff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f7cf000-0x8f7fffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x8f800000-0x8fffffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0x90000000-0x9fffffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xa0000000-0xafffffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xb0000000-0xfbffffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfcffffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xfed1bfff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed44fff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xff7fffff]
Jul 28 12:12:34 revelation kernel: PM: hibernation: Registered nosave memory: [mem 0xff800000-0xffffffff]
Jul 28 12:12:34 revelation kernel: [mem 0xb0000000-0xfbffffff] available for PCI devices
Jul 28 12:12:34 revelation kernel: Booting paravirtualized kernel on bare hardware
Jul 28 12:12:34 revelation kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Jul 28 12:12:34 revelation kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:24 nr_cpu_ids:24 nr_node_ids:2
Jul 28 12:12:34 revelation kernel: percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
Jul 28 12:12:34 revelation kernel: Fallback order for Node 0: 0 1 
Jul 28 12:12:34 revelation kernel: Fallback order for Node 1: 1 0 
Jul 28 12:12:34 revelation kernel: Built 2 zonelists, mobility grouping on.  Total pages: 12362979
Jul 28 12:12:34 revelation kernel: Policy zone: Normal
Jul 28 12:12:34 revelation kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 12:12:34 revelation kernel: Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 biosdevname=0 LANG=en_GB.UTF-8", will be passed to user space.
Jul 28 12:12:34 revelation kernel: mem auto-init: stack:off, heap alloc:off, heap free:off
Jul 28 12:12:34 revelation kernel: software IO TLB: area num 32.
Jul 28 12:12:34 revelation kernel: Memory: 2144340K/50237500K available (14342K kernel code, 5536K rwdata, 10180K rodata, 2792K init, 7524K bss, 1224840K reserved, 0K cma-reserved)
Jul 28 12:12:34 revelation kernel: random: get_random_u64 called from kmem_cache_open+0x1e/0x210 with crng_init=0
Jul 28 12:12:34 revelation kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=24, Nodes=2
Jul 28 12:12:34 revelation kernel: Kernel/User page tables isolation: enabled
Jul 28 12:12:34 revelation kernel: ftrace: allocating 44807 entries in 176 pages
Jul 28 12:12:34 revelation kernel: ftrace: allocated 176 pages with 3 groups
Jul 28 12:12:34 revelation kernel: Dynamic Preempt: voluntary
Jul 28 12:12:34 revelation kernel: rcu: Preemptible hierarchical RCU implementation.
Jul 28 12:12:34 revelation kernel: rcu: #011RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=24.
Jul 28 12:12:34 revelation kernel: #011Trampoline variant of Tasks RCU enabled.
Jul 28 12:12:34 revelation kernel: #011Rude variant of Tasks RCU enabled.
Jul 28 12:12:34 revelation kernel: #011Tracing variant of Tasks RCU enabled.
Jul 28 12:12:34 revelation kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Jul 28 12:12:34 revelation kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=24
Jul 28 12:12:34 revelation kernel: NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
Jul 28 12:12:34 revelation kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jul 28 12:12:34 revelation kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Jul 28 12:12:34 revelation kernel: Console: colour VGA+ 80x25
Jul 28 12:12:34 revelation kernel: printk: console [tty0] enabled
Jul 28 12:12:34 revelation kernel: mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
Jul 28 12:12:34 revelation kernel: ACPI: Core revision 20211217
Jul 28 12:12:34 revelation kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Jul 28 12:12:34 revelation kernel: APIC: Switch to symmetric I/O mode setup
Jul 28 12:12:34 revelation kernel: Switched APIC routing to physical flat.
Jul 28 12:12:34 revelation kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jul 28 12:12:34 revelation kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31d9c6ed705, max_idle_ns: 440795352968 ns
Jul 28 12:12:34 revelation kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6916.78 BogoMIPS (lpj=3458391)
Jul 28 12:12:34 revelation kernel: pid_max: default: 32768 minimum: 301
Jul 28 12:12:34 revelation kernel: LSM: Security Framework initializing
Jul 28 12:12:34 revelation kernel: Yama: becoming mindful.
Jul 28 12:12:34 revelation kernel: SELinux:  Initializing.
Jul 28 12:12:34 revelation kernel: LSM support for eBPF active
Jul 28 12:12:34 revelation kernel: Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
Jul 28 12:12:34 revelation kernel: Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, vmalloc hugepage)
Jul 28 12:12:34 revelation kernel: Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: CPU0: Thermal monitoring enabled (TM1)
Jul 28 12:12:34 revelation kernel: process: using mwait in idle threads
Jul 28 12:12:34 revelation kernel: Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jul 28 12:12:34 revelation kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jul 28 12:12:34 revelation kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jul 28 12:12:34 revelation kernel: Spectre V2 : Mitigation: Retpolines
Jul 28 12:12:34 revelation kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jul 28 12:12:34 revelation kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Jul 28 12:12:34 revelation kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Jul 28 12:12:34 revelation kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jul 28 12:12:34 revelation kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
Jul 28 12:12:34 revelation kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Jul 28 12:12:34 revelation kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
Jul 28 12:12:34 revelation kernel: MMIO Stale Data: Unknown: No mitigations
Jul 28 12:12:34 revelation kernel: Freeing SMP alternatives memory: 36K
Jul 28 12:12:34 revelation kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1063
Jul 28 12:12:34 revelation kernel: smpboot: CPU0: Intel(R) Xeon(R) CPU           X5690  @ 3.47GHz (family: 0x6, model: 0x2c, stepping: 0x2)
Jul 28 12:12:34 revelation kernel: cblist_init_generic: Setting adjustable number of callback queues.
Jul 28 12:12:34 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 12:12:34 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 12:12:34 revelation kernel: cblist_init_generic: Setting shift to 5 and lim to 1.
Jul 28 12:12:34 revelation kernel: Performance Events: PEBS fmt1+, Westmere events, 16-deep LBR, Intel PMU driver.
Jul 28 12:12:34 revelation kernel: core: CPUID marked event: 'bus cycles' unavailable
Jul 28 12:12:34 revelation kernel: ... version:                3
Jul 28 12:12:34 revelation kernel: ... bit width:              48
Jul 28 12:12:34 revelation kernel: ... generic registers:      4
Jul 28 12:12:34 revelation kernel: ... value mask:             0000ffffffffffff
Jul 28 12:12:34 revelation kernel: ... max period:             000000007fffffff
Jul 28 12:12:34 revelation kernel: ... fixed-purpose events:   3
Jul 28 12:12:34 revelation kernel: ... event mask:             000000070000000f
Jul 28 12:12:34 revelation kernel: rcu: Hierarchical SRCU implementation.
Jul 28 12:12:34 revelation kernel: rcu: #011Max phase no-delay instances is 400.
Jul 28 12:12:34 revelation kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jul 28 12:12:34 revelation kernel: smp: Bringing up secondary CPUs ...
Jul 28 12:12:34 revelation kernel: x86: Booting SMP configuration:
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:        #1
Jul 28 12:12:34 revelation kernel: smpboot: CPU 1 Converting physical 0 to logical die 1
Jul 28 12:12:34 revelation kernel: 
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:    #2
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:    #3
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:    #4
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:    #5
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:    #6
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:    #7
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:    #8
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:    #9
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:   #10
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:   #11
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:   #12
Jul 28 12:12:34 revelation kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
Jul 28 12:12:34 revelation kernel: 
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:   #13
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:   #14
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:   #15
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:   #16
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:   #17
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:   #18
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:   #19
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:   #20
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:   #21
Jul 28 12:12:34 revelation kernel: .... node  #0, CPUs:   #22
Jul 28 12:12:34 revelation kernel: .... node  #1, CPUs:   #23
Jul 28 12:12:34 revelation kernel: smp: Brought up 2 nodes, 24 CPUs
Jul 28 12:12:34 revelation kernel: smpboot: Max logical packages: 2
Jul 28 12:12:34 revelation kernel: smpboot: Total of 24 processors activated (165999.74 BogoMIPS)
Jul 28 12:12:34 revelation kernel: node 0 deferred pages initialised in 38ms
Jul 28 12:12:34 revelation kernel: node 1 deferred pages initialised in 42ms
Jul 28 12:12:34 revelation kernel: devtmpfs: initialized
Jul 28 12:12:34 revelation kernel: x86/mm: Memory block size: 128MB
Jul 28 12:12:34 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8c485000-0x8c566fff] (925696 bytes)
Jul 28 12:12:34 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8c649000-0x8da48fff] (20971520 bytes)
Jul 28 12:12:34 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8f6e5000-0x8f6eefff] (40960 bytes)
Jul 28 12:12:34 revelation kernel: ACPI: PM: Registering ACPI NVS region [mem 0x8f6f1000-0x8f7cefff] (909312 bytes)
Jul 28 12:12:34 revelation kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Jul 28 12:12:34 revelation kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: pinctrl core: initialized pinctrl subsystem
Jul 28 12:12:34 revelation kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jul 28 12:12:34 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Jul 28 12:12:34 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jul 28 12:12:34 revelation kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jul 28 12:12:34 revelation kernel: audit: initializing netlink subsys (disabled)
Jul 28 12:12:34 revelation kernel: audit: type=2000 audit(1690542752.315:1): state=initialized audit_enabled=0 res=1
Jul 28 12:12:34 revelation kernel: thermal_sys: Registered thermal governor 'fair_share'
Jul 28 12:12:34 revelation kernel: thermal_sys: Registered thermal governor 'step_wise'
Jul 28 12:12:34 revelation kernel: thermal_sys: Registered thermal governor 'user_space'
Jul 28 12:12:34 revelation kernel: cpuidle: using governor menu
Jul 28 12:12:34 revelation kernel: HugeTLB: can optimize 4095 vmemmap pages for hugepages-1048576kB
Jul 28 12:12:34 revelation kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jul 28 12:12:34 revelation kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jul 28 12:12:34 revelation kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xa0000000-0xafffffff] (base 0xa0000000)
Jul 28 12:12:34 revelation kernel: PCI: MMCONFIG at [mem 0xa0000000-0xafffffff] reserved in E820
Jul 28 12:12:34 revelation kernel: PCI: Using configuration type 1 for base access
Jul 28 12:12:34 revelation kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jul 28 12:12:34 revelation kernel: HugeTLB: can optimize 7 vmemmap pages for hugepages-2048kB
Jul 28 12:12:34 revelation kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jul 28 12:12:34 revelation kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jul 28 12:12:34 revelation kernel: cryptd: max_cpu_qlen set to 1000
Jul 28 12:12:34 revelation kernel: ACPI: Added _OSI(Module Device)
Jul 28 12:12:34 revelation kernel: ACPI: Added _OSI(Processor Device)
Jul 28 12:12:34 revelation kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jul 28 12:12:34 revelation kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jul 28 12:12:34 revelation kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jul 28 12:12:34 revelation kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jul 28 12:12:34 revelation kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jul 28 12:12:34 revelation kernel: ACPI: 3 ACPI AML tables successfully acquired and loaded
Jul 28 12:12:34 revelation kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [CPB3] at bit offset/length 64/32 exceeds size of target Buffer (64 bits) (20211217/dsopcode-198)
Jul 28 12:12:34 revelation kernel: ACPI Error: Aborting method \_SB._OSC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jul 28 12:12:34 revelation kernel: ACPI: Interpreter enabled
Jul 28 12:12:34 revelation kernel: ACPI: PM: (supports S0 S1 S5)
Jul 28 12:12:34 revelation kernel: ACPI: Using IOAPIC for interrupt routing
Jul 28 12:12:34 revelation kernel: HEST: Table parsing has been initialized.
Jul 28 12:12:34 revelation kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jul 28 12:12:34 revelation kernel: PCI: Using E820 reservations for host bridge windows
Jul 28 12:12:34 revelation kernel: ACPI: Enabled 11 GPEs in block 00 to 3F
Jul 28 12:12:34 revelation kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fd])
Jul 28 12:12:34 revelation kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jul 28 12:12:34 revelation kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Jul 28 12:12:34 revelation kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jul 28 12:12:34 revelation kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jul 28 12:12:34 revelation kernel: acpi PNP0A08:00: ignoring host bridge window [mem 0x000c4000-0x000cbfff window] (conflicts with Video ROM [mem 0x000c0000-0x000c7fff])
Jul 28 12:12:34 revelation kernel: PCI host bridge to bus 0000:00
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: Unknown NUMA node; performance will be reduced
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfedfffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: root bus resource [mem 0xb0000000-0xfdffffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: root bus resource [bus 00-fd]
Jul 28 12:12:34 revelation kernel: pci 0000:00:00.0: [8086:3406] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:01.0: [8086:3408] type 01 class 0x060400
Jul 28 12:12:34 revelation kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:03.0: [8086:340a] type 01 class 0x060400
Jul 28 12:12:34 revelation kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:07.0: [8086:340e] type 01 class 0x060400
Jul 28 12:12:34 revelation kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:09.0: [8086:3410] type 01 class 0x060400
Jul 28 12:12:34 revelation kernel: pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:0a.0: [8086:3411] type 01 class 0x060400
Jul 28 12:12:34 revelation kernel: pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:10.0: [8086:3425] type 00 class 0x080000
Jul 28 12:12:34 revelation kernel: pci 0000:00:10.1: [8086:3426] type 00 class 0x080000
Jul 28 12:12:34 revelation kernel: pci 0000:00:11.0: [8086:3427] type 00 class 0x080000
Jul 28 12:12:34 revelation kernel: pci 0000:00:11.1: [8086:3428] type 00 class 0x080000
Jul 28 12:12:34 revelation kernel: pci 0000:00:13.0: [8086:342d] type 00 class 0x080020
Jul 28 12:12:34 revelation kernel: pci 0000:00:13.0: reg 0x10: [mem 0xb1b23000-0xb1b23fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:14.0: [8086:342e] type 00 class 0x080000
Jul 28 12:12:34 revelation kernel: pci 0000:00:14.1: [8086:3422] type 00 class 0x080000
Jul 28 12:12:34 revelation kernel: pci 0000:00:14.2: [8086:3423] type 00 class 0x080000
Jul 28 12:12:34 revelation kernel: pci 0000:00:14.3: [8086:3438] type 00 class 0x080000
Jul 28 12:12:34 revelation kernel: pci 0000:00:15.0: [8086:342f] type 00 class 0x080020
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.0: [8086:3430] type 00 class 0x088000
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.0: reg 0x10: [mem 0xb1b00000-0xb1b03fff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.1: [8086:3431] type 00 class 0x088000
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.1: reg 0x10: [mem 0xb1b04000-0xb1b07fff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.2: [8086:3432] type 00 class 0x088000
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.2: reg 0x10: [mem 0xb1b08000-0xb1b0bfff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.3: [8086:3433] type 00 class 0x088000
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.3: reg 0x10: [mem 0xb1b0c000-0xb1b0ffff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.4: [8086:3429] type 00 class 0x088000
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.4: reg 0x10: [mem 0xb1b10000-0xb1b13fff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.5: [8086:342a] type 00 class 0x088000
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.5: reg 0x10: [mem 0xb1b14000-0xb1b17fff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.6: [8086:342b] type 00 class 0x088000
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.6: reg 0x10: [mem 0xb1b18000-0xb1b1bfff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.7: [8086:342c] type 00 class 0x088000
Jul 28 12:12:34 revelation kernel: pci 0000:00:16.7: reg 0x10: [mem 0xb1b1c000-0xb1b1ffff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.0: [8086:3a37] type 00 class 0x0c0300
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.0: reg 0x20: [io  0x30c0-0x30df]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.1: [8086:3a38] type 00 class 0x0c0300
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.1: reg 0x20: [io  0x30a0-0x30bf]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.2: [8086:3a39] type 00 class 0x0c0300
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.2: reg 0x20: [io  0x3080-0x309f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.7: [8086:3a3c] type 00 class 0x0c0320
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xb1b21000-0xb1b213ff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: [8086:3a40] type 01 class 0x060400
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4: [8086:3a48] type 01 class 0x060400
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: [8086:3a4a] type 01 class 0x060400
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.0: [8086:3a34] type 00 class 0x0c0300
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.0: reg 0x20: [io  0x3060-0x307f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.1: [8086:3a35] type 00 class 0x0c0300
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.1: reg 0x20: [io  0x3040-0x305f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.2: [8086:3a36] type 00 class 0x0c0300
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.2: reg 0x20: [io  0x3020-0x303f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.7: [8086:3a3a] type 00 class 0x0c0320
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xb1b20000-0xb1b203ff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.0: [8086:3a16] type 00 class 0x060100
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.0: quirk: [io  0x0400-0x047f] claimed by ICH6 ACPI/GPIO/TCO
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.0: quirk: [io  0x0500-0x053f] claimed by ICH6 GPIO
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0680 (mask 000f)
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0ca0 (mask 000f)
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 0600 (mask 001f)
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.2: [8086:3a20] type 00 class 0x01018f
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.2: reg 0x10: [io  0x3138-0x313f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.2: reg 0x14: [io  0x314c-0x314f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.2: reg 0x18: [io  0x3130-0x3137]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x3148-0x314b]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.2: reg 0x20: [io  0x3110-0x311f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.2: reg 0x24: [io  0x3100-0x310f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.3: [8086:3a30] type 00 class 0x0c0500
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xb1b22000-0xb1b220ff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.3: reg 0x20: [io  0x3000-0x301f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.5: [8086:3a26] type 00 class 0x010185
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.5: reg 0x10: [io  0x3128-0x312f]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.5: reg 0x14: [io  0x3144-0x3147]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.5: reg 0x18: [io  0x3120-0x3127]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.5: reg 0x1c: [io  0x3140-0x3143]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.5: reg 0x20: [io  0x30f0-0x30ff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1f.5: reg 0x24: [io  0x30e0-0x30ef]
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.0: [8086:10a7] type 00 class 0x020000
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.0: reg 0x10: [mem 0xb1a20000-0xb1a3ffff]
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.0: reg 0x18: [io  0x2020-0x203f]
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xb1a44000-0xb1a47fff]
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.1: [8086:10a7] type 00 class 0x020000
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.1: reg 0x10: [mem 0xb1a00000-0xb1a1ffff]
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.1: reg 0x18: [io  0x2000-0x201f]
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.1: reg 0x1c: [mem 0xb1a40000-0xb1a43fff]
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
Jul 28 12:12:34 revelation kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jul 28 12:12:34 revelation kernel: pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:01.0:   bridge window [mem 0xb1a00000-0xb1afffff]
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: [1000:0073] type 00 class 0x010400
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: reg 0x10: [io  0x1000-0x10ff]
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: reg 0x14: [mem 0xb1940000-0xb1943fff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: reg 0x1c: [mem 0xb1900000-0xb193ffff 64bit]
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: supports D1 D2
Jul 28 12:12:34 revelation kernel: pci 0000:00:03.0: PCI bridge to [bus 02]
Jul 28 12:12:34 revelation kernel: pci 0000:00:03.0:   bridge window [io  0x1000-0x1fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:03.0:   bridge window [mem 0xb1900000-0xb19fffff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:07.0: PCI bridge to [bus 03]
Jul 28 12:12:34 revelation kernel: pci 0000:00:09.0: PCI bridge to [bus 04]
Jul 28 12:12:34 revelation kernel: pci 0000:00:0a.0: PCI bridge to [bus 05]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: PCI bridge to [bus 06]
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: [102b:0522] type 00 class 0x030000
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: reg 0x10: [mem 0xb0000000-0xb0ffffff pref]
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: reg 0x14: [mem 0xb1800000-0xb1803fff]
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: reg 0x18: [mem 0xb1000000-0xb17fffff]
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4: PCI bridge to [bus 07]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb1000000-0xb18fffff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:09: extended config space not accessible
Jul 28 12:12:34 revelation kernel: pci 0000:00:1e.0: PCI bridge to [bus 09] (subtractive decode)
Jul 28 12:12:34 revelation kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Jul 28 12:12:34 revelation kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Jul 28 12:12:34 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Jul 28 12:12:34 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfedfffff window] (subtractive decode)
Jul 28 12:12:34 revelation kernel: pci 0000:00:1e.0:   bridge window [mem 0xb0000000-0xfdffffff window] (subtractive decode)
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 9
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 5
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKE disabled
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKG disabled
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Jul 28 12:12:34 revelation kernel: ACPI: PCI: Interrupt link LNKH disabled
Jul 28 12:12:34 revelation kernel: iommu: Default domain type: Translated 
Jul 28 12:12:34 revelation kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Jul 28 12:12:34 revelation kernel: SCSI subsystem initialized
Jul 28 12:12:34 revelation kernel: ACPI: bus type USB registered
Jul 28 12:12:34 revelation kernel: usbcore: registered new interface driver usbfs
Jul 28 12:12:34 revelation kernel: usbcore: registered new interface driver hub
Jul 28 12:12:34 revelation kernel: usbcore: registered new device driver usb
Jul 28 12:12:34 revelation kernel: pps_core: LinuxPPS API ver. 1 registered
Jul 28 12:12:34 revelation kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jul 28 12:12:34 revelation kernel: PTP clock support registered
Jul 28 12:12:34 revelation kernel: EDAC MC: Ver: 3.0.0
Jul 28 12:12:34 revelation kernel: NetLabel: Initializing
Jul 28 12:12:34 revelation kernel: NetLabel:  domain hash size = 128
Jul 28 12:12:34 revelation kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jul 28 12:12:34 revelation kernel: NetLabel:  unlabeled traffic allowed by default
Jul 28 12:12:34 revelation kernel: PCI: Using ACPI for IRQ routing
Jul 28 12:12:34 revelation kernel: PCI: Discovered peer bus fe
Jul 28 12:12:34 revelation kernel: PCI host bridge to bus 0000:fe
Jul 28 12:12:34 revelation kernel: pci_bus 0000:fe: Unknown NUMA node; performance will be reduced
Jul 28 12:12:34 revelation kernel: pci_bus 0000:fe: root bus resource [io  0x0000-0xffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:fe: root bus resource [mem 0x00000000-0xffffffffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:fe: No busn resource found for root bus, will use [bus fe-ff]
Jul 28 12:12:34 revelation kernel: pci 0000:fe:00.0: [8086:2c70] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:00.1: [8086:2d81] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:02.0: [8086:2d90] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:02.1: [8086:2d91] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:02.2: [8086:2d92] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:02.3: [8086:2d93] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:02.4: [8086:2d94] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:02.5: [8086:2d95] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:03.0: [8086:2d98] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:03.1: [8086:2d99] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:03.2: [8086:2d9a] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:03.4: [8086:2d9c] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:04.0: [8086:2da0] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:04.1: [8086:2da1] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:04.2: [8086:2da2] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:04.3: [8086:2da3] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:05.0: [8086:2da8] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:05.1: [8086:2da9] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:05.2: [8086:2daa] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:05.3: [8086:2dab] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:06.0: [8086:2db0] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:06.1: [8086:2db1] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:06.2: [8086:2db2] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:fe:06.3: [8086:2db3] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci_bus 0000:fe: busn_res: [bus fe-ff] end is updated to fe
Jul 28 12:12:34 revelation kernel: PCI: Discovered peer bus ff
Jul 28 12:12:34 revelation kernel: PCI host bridge to bus 0000:ff
Jul 28 12:12:34 revelation kernel: pci_bus 0000:ff: Unknown NUMA node; performance will be reduced
Jul 28 12:12:34 revelation kernel: pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:ff: root bus resource [mem 0x00000000-0xffffffffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
Jul 28 12:12:34 revelation kernel: pci 0000:ff:00.0: [8086:2c70] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:00.1: [8086:2d81] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:02.0: [8086:2d90] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:02.1: [8086:2d91] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:02.2: [8086:2d92] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:02.3: [8086:2d93] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:02.4: [8086:2d94] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:02.5: [8086:2d95] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:03.0: [8086:2d98] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:03.1: [8086:2d99] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:03.2: [8086:2d9a] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:03.4: [8086:2d9c] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:04.0: [8086:2da0] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:04.1: [8086:2da1] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:04.2: [8086:2da2] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:04.3: [8086:2da3] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:05.0: [8086:2da8] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:05.1: [8086:2da9] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:05.2: [8086:2daa] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:05.3: [8086:2dab] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:06.0: [8086:2db0] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:06.1: [8086:2db1] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:06.2: [8086:2db2] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci 0000:ff:06.3: [8086:2db3] type 00 class 0x060000
Jul 28 12:12:34 revelation kernel: pci_bus 0000:ff: busn_res: [bus ff] end is updated to ff
Jul 28 12:12:34 revelation kernel: Expanded resource Reserved due to conflict with PCI Bus 0000:00
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: vgaarb: setting as boot VGA device
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: vgaarb: bridge control possible
Jul 28 12:12:34 revelation kernel: pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jul 28 12:12:34 revelation kernel: vgaarb: loaded
Jul 28 12:12:34 revelation kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Jul 28 12:12:34 revelation kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Jul 28 12:12:34 revelation kernel: clocksource: Switched to clocksource tsc-early
Jul 28 12:12:34 revelation kernel: VFS: Disk quotas dquot_6.6.0
Jul 28 12:12:34 revelation kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jul 28 12:12:34 revelation kernel: pnp: PnP ACPI init
Jul 28 12:12:34 revelation kernel: system 00:01: [io  0x0500-0x057f] could not be reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [io  0x0400-0x047f] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [io  0x0800-0x081f] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [io  0x0ca2-0x0ca3] could not be reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [io  0x0600-0x061f] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [io  0x0880-0x0883] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [io  0x0ca4-0x0ca5] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [mem 0xfed1c000-0xfed3fffe] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [mem 0xff000000-0xffffffff] could not be reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [mem 0xfe900000-0xfe90001f] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [mem 0xfea00000-0xfea0001f] has been reserved
Jul 28 12:12:34 revelation kernel: system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jul 28 12:12:34 revelation kernel: pnp: PnP ACPI: found 4 devices
Jul 28 12:12:34 revelation kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jul 28 12:12:34 revelation kernel: NET: Registered PF_INET protocol family
Jul 28 12:12:34 revelation kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: tcp_listen_portaddr_hash hash table entries: 32768 (order: 7, 524288 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
Jul 28 12:12:34 revelation kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: TCP: Hash tables configured (established 524288 bind 65536)
Jul 28 12:12:34 revelation kernel: MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: UDP hash table entries: 32768 (order: 8, 1048576 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: UDP-Lite hash table entries: 32768 (order: 8, 1048576 bytes, vmalloc)
Jul 28 12:12:34 revelation kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jul 28 12:12:34 revelation kernel: NET: Registered PF_XDP protocol family
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000 add_align 100000
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 06] add_size 200000 add_align 100000
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: bridge window [io  0x1000-0x0fff] to [bus 08] add_size 1000
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000 add_align 100000
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff] to [bus 08] add_size 200000 add_align 100000
Jul 28 12:12:34 revelation kernel: clipped [mem size 0x000c0000] to [mem size 0x000bb000] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xb1c00000-0xb1dfffff]
Jul 28 12:12:34 revelation kernel: clipped [mem size 0x00000000 64bit pref] to [mem size 0xffffffffffffb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 12:12:34 revelation kernel: clipped [mem size 0x000c0000 64bit pref] to [mem size 0x000bb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 12:12:34 revelation kernel: clipped [mem size 0x000c0000] to [mem size 0x000bb000] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: BAR 14: assigned [mem 0xb2000000-0xb21fffff]
Jul 28 12:12:34 revelation kernel: clipped [mem size 0x00000000 64bit pref] to [mem size 0xffffffffffffb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 12:12:34 revelation kernel: clipped [mem size 0x000c0000 64bit pref] to [mem size 0x000bb000 64bit pref] for e820 entry [mem 0xfed1c000-0xfed44fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: BAR 15: assigned [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4: BAR 13: assigned [io  0x5000-0x5fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: BAR 13: assigned [io  0x6000-0x6fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jul 28 12:12:34 revelation kernel: pci 0000:00:01.0:   bridge window [io  0x2000-0x2fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:01.0:   bridge window [mem 0xb1a00000-0xb1afffff]
Jul 28 12:12:34 revelation kernel: pci 0000:02:00.0: BAR 6: assigned [mem 0xb1960000-0xb197ffff pref]
Jul 28 12:12:34 revelation kernel: pci 0000:00:03.0: PCI bridge to [bus 02]
Jul 28 12:12:34 revelation kernel: pci 0000:00:03.0:   bridge window [io  0x1000-0x1fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:03.0:   bridge window [mem 0xb1900000-0xb19fffff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:07.0: PCI bridge to [bus 03]
Jul 28 12:12:34 revelation kernel: pci 0000:00:09.0: PCI bridge to [bus 04]
Jul 28 12:12:34 revelation kernel: pci 0000:00:0a.0: PCI bridge to [bus 05]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0: PCI bridge to [bus 06]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0:   bridge window [mem 0xb1c00000-0xb1dfffff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.0:   bridge window [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4: PCI bridge to [bus 07]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4:   bridge window [io  0x5000-0x5fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb1000000-0xb18fffff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.4:   bridge window [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5:   bridge window [io  0x6000-0x6fff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5:   bridge window [mem 0xb2000000-0xb21fffff]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1c.5:   bridge window [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 12:12:34 revelation kernel: pci 0000:00:1e.0: PCI bridge to [bus 09]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: resource 7 [mem 0xfed40000-0xfedfffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:00: resource 8 [mem 0xb0000000-0xfdffffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:01: resource 1 [mem 0xb1a00000-0xb1afffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:02: resource 1 [mem 0xb1900000-0xb19fffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:06: resource 0 [io  0x4000-0x4fff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:06: resource 1 [mem 0xb1c00000-0xb1dfffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:06: resource 2 [mem 0xb1e00000-0xb1ffffff 64bit pref]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:07: resource 0 [io  0x5000-0x5fff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:07: resource 1 [mem 0xb1000000-0xb18fffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:07: resource 2 [mem 0xb0000000-0xb0ffffff 64bit pref]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:08: resource 0 [io  0x6000-0x6fff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:08: resource 1 [mem 0xb2000000-0xb21fffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:08: resource 2 [mem 0xb2200000-0xb23fffff 64bit pref]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:09: resource 4 [io  0x0000-0x0cf7 window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:09: resource 5 [io  0x0d00-0xffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:09: resource 6 [mem 0x000a0000-0x000bffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:09: resource 7 [mem 0xfed40000-0xfedfffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:09: resource 8 [mem 0xb0000000-0xfdffffff window]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:fe: resource 4 [io  0x0000-0xffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:fe: resource 5 [mem 0x00000000-0xffffffffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:ff: resource 4 [io  0x0000-0xffff]
Jul 28 12:12:34 revelation kernel: pci_bus 0000:ff: resource 5 [mem 0x00000000-0xffffffffff]
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.0: Disabling L0s
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.1: Disabling L0s
Jul 28 12:12:34 revelation kernel: pci 0000:01:00.1: can't disable ASPM; OS doesn't have ASPM control
Jul 28 12:12:34 revelation kernel: PCI: CLS 64 bytes, default 64
Jul 28 12:12:34 revelation kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jul 28 12:12:34 revelation kernel: Trying to unpack rootfs image as initramfs...
Jul 28 12:12:34 revelation kernel: software IO TLB: mapped [mem 0x0000000076000000-0x000000007a000000] (64MB)
Jul 28 12:12:34 revelation kernel: ACPI: bus type thunderbolt registered
Jul 28 12:12:34 revelation kernel: Initialise system trusted keyrings
Jul 28 12:12:34 revelation kernel: Key type blacklist registered
Jul 28 12:12:34 revelation kernel: workingset: timestamp_bits=36 max_order=24 bucket_order=0
Jul 28 12:12:34 revelation kernel: zbud: loaded
Jul 28 12:12:34 revelation kernel: integrity: Platform Keyring initialized
Jul 28 12:12:34 revelation kernel: NET: Registered PF_ALG protocol family
Jul 28 12:12:34 revelation kernel: xor: measuring software checksum speed
Jul 28 12:12:34 revelation kernel:   prefetch64-sse  : 19190 MB/sec
Jul 28 12:12:34 revelation kernel:   generic_sse     : 16316 MB/sec
Jul 28 12:12:34 revelation kernel: xor: using function: prefetch64-sse (19190 MB/sec)
Jul 28 12:12:34 revelation kernel: Key type asymmetric registered
Jul 28 12:12:34 revelation kernel: Asymmetric key parser 'x509' registered
Jul 28 12:12:34 revelation kernel: Running certificate verification selftests
Jul 28 12:12:34 revelation kernel: Loaded X.509 cert 'Certificate verification self-testing key: f58703bb33ce1b73ee02eccdee5b8817518fe3db'
Jul 28 12:12:34 revelation kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Jul 28 12:12:34 revelation kernel: io scheduler mq-deadline registered
Jul 28 12:12:34 revelation kernel: io scheduler kyber registered
Jul 28 12:12:34 revelation kernel: io scheduler bfq registered
Jul 28 12:12:34 revelation kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 25
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:01.0: AER: enabled with IRQ 25
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:03.0: PME: Signaling with IRQ 27
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:03.0: AER: enabled with IRQ 27
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:07.0: PME: Signaling with IRQ 29
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:07.0: AER: enabled with IRQ 29
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:09.0: PME: Signaling with IRQ 31
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:09.0: AER: enabled with IRQ 31
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:0a.0: PME: Signaling with IRQ 33
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:0a.0: AER: enabled with IRQ 33
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 34
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:1c.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 35
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:1c.4: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:1c.5: PME: Signaling with IRQ 36
Jul 28 12:12:34 revelation kernel: pcieport 0000:00:1c.5: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jul 28 12:12:34 revelation kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jul 28 12:12:34 revelation kernel: ACPI: \_PR_.CPU0: Found 2 idle states
Jul 28 12:12:34 revelation kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
Jul 28 12:12:34 revelation kernel: ACPI: button: Sleep Button [SLPB]
Jul 28 12:12:34 revelation kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Jul 28 12:12:34 revelation kernel: ACPI: button: Power Button [PWRF]
Jul 28 12:12:34 revelation kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Jul 28 12:12:34 revelation kernel: pstore: Registered erst as persistent store backend
Jul 28 12:12:34 revelation kernel: GHES: APEI firmware first mode is enabled by WHEA _OSC.
Jul 28 12:12:34 revelation kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Jul 28 12:12:34 revelation kernel: 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jul 28 12:12:34 revelation kernel: 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Jul 28 12:12:34 revelation kernel: Non-volatile memory driver v1.3
Jul 28 12:12:34 revelation kernel: rdac: device handler registered
Jul 28 12:12:34 revelation kernel: hp_sw: device handler registered
Jul 28 12:12:34 revelation kernel: emc: device handler registered
Jul 28 12:12:34 revelation kernel: alua: device handler registered
Jul 28 12:12:34 revelation kernel: libphy: Fixed MDIO Bus: probed
Jul 28 12:12:34 revelation kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jul 28 12:12:34 revelation kernel: ehci-pci: EHCI PCI platform driver
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1a.7: debug port 1
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1a.7: irq 19, io mem 0xb1b21000
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jul 28 12:12:34 revelation kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Jul 28 12:12:34 revelation kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 12:12:34 revelation kernel: usb usb1: Product: EHCI Host Controller
Jul 28 12:12:34 revelation kernel: usb usb1: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 ehci_hcd
Jul 28 12:12:34 revelation kernel: usb usb1: SerialNumber: 0000:00:1a.7
Jul 28 12:12:34 revelation kernel: hub 1-0:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 1-0:1.0: 6 ports detected
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1d.7: debug port 1
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1d.7: irq 16, io mem 0xb1b20000
Jul 28 12:12:34 revelation kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jul 28 12:12:34 revelation kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Jul 28 12:12:34 revelation kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 12:12:34 revelation kernel: usb usb2: Product: EHCI Host Controller
Jul 28 12:12:34 revelation kernel: usb usb2: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 ehci_hcd
Jul 28 12:12:34 revelation kernel: usb usb2: SerialNumber: 0000:00:1d.7
Jul 28 12:12:34 revelation kernel: hub 2-0:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 2-0:1.0: 6 ports detected
Jul 28 12:12:34 revelation kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jul 28 12:12:34 revelation kernel: ohci-pci: OHCI PCI platform driver
Jul 28 12:12:34 revelation kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.0: irq 19, io port 0x000030c0
Jul 28 12:12:34 revelation kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 12:12:34 revelation kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 12:12:34 revelation kernel: usb usb3: Product: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: usb usb3: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 12:12:34 revelation kernel: usb usb3: SerialNumber: 0000:00:1a.0
Jul 28 12:12:34 revelation kernel: hub 3-0:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 3-0:1.0: 2 ports detected
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.1: irq 19, io port 0x000030a0
Jul 28 12:12:34 revelation kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 12:12:34 revelation kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 12:12:34 revelation kernel: usb usb4: Product: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: usb usb4: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 12:12:34 revelation kernel: usb usb4: SerialNumber: 0000:00:1a.1
Jul 28 12:12:34 revelation kernel: hub 4-0:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 4-0:1.0: 2 ports detected
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.2: detected 2 ports
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1a.2: irq 19, io port 0x00003080
Jul 28 12:12:34 revelation kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 12:12:34 revelation kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 12:12:34 revelation kernel: usb usb5: Product: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: usb usb5: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 12:12:34 revelation kernel: usb usb5: SerialNumber: 0000:00:1a.2
Jul 28 12:12:34 revelation kernel: hub 5-0:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 5-0:1.0: 2 ports detected
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.0: irq 16, io port 0x00003060
Jul 28 12:12:34 revelation kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 12:12:34 revelation kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 12:12:34 revelation kernel: usb usb6: Product: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: usb usb6: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 12:12:34 revelation kernel: usb usb6: SerialNumber: 0000:00:1d.0
Jul 28 12:12:34 revelation kernel: hub 6-0:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 6-0:1.0: 2 ports detected
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.1: irq 16, io port 0x00003040
Jul 28 12:12:34 revelation kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 12:12:34 revelation kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 12:12:34 revelation kernel: usb usb7: Product: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: usb usb7: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 12:12:34 revelation kernel: usb usb7: SerialNumber: 0000:00:1d.1
Jul 28 12:12:34 revelation kernel: hub 7-0:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 7-0:1.0: 2 ports detected
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
Jul 28 12:12:34 revelation kernel: uhci_hcd 0000:00:1d.2: irq 16, io port 0x00003020
Jul 28 12:12:34 revelation kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.14
Jul 28 12:12:34 revelation kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul 28 12:12:34 revelation kernel: usb usb8: Product: UHCI Host Controller
Jul 28 12:12:34 revelation kernel: usb usb8: Manufacturer: Linux 5.14.0-284.18.1.el9_2.x86_64 uhci_hcd
Jul 28 12:12:34 revelation kernel: usb usb8: SerialNumber: 0000:00:1d.2
Jul 28 12:12:34 revelation kernel: hub 8-0:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 8-0:1.0: 2 ports detected
Jul 28 12:12:34 revelation kernel: usbcore: registered new interface driver usbserial_generic
Jul 28 12:12:34 revelation kernel: usbserial: USB Serial support registered for generic
Jul 28 12:12:34 revelation kernel: i8042: PNP: No PS/2 controller found.
Jul 28 12:12:34 revelation kernel: mousedev: PS/2 mouse device common for all mice
Jul 28 12:12:34 revelation kernel: rtc_cmos 00:00: RTC can wake from S4
Jul 28 12:12:34 revelation kernel: rtc_cmos 00:00: registered as rtc0
Jul 28 12:12:34 revelation kernel: rtc_cmos 00:00: setting system clock to 2023-07-28T11:12:33 UTC (1690542753)
Jul 28 12:12:34 revelation kernel: rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jul 28 12:12:34 revelation kernel: intel_pstate: CPU model not supported
Jul 28 12:12:34 revelation kernel: hid: raw HID events driver (C) Jiri Kosina
Jul 28 12:12:34 revelation kernel: usbcore: registered new interface driver usbhid
Jul 28 12:12:34 revelation kernel: usbhid: USB HID core driver
Jul 28 12:12:34 revelation kernel: drop_monitor: Initializing network drop monitor service
Jul 28 12:12:34 revelation kernel: Initializing XFRM netlink socket
Jul 28 12:12:34 revelation kernel: NET: Registered PF_INET6 protocol family
Jul 28 12:12:34 revelation kernel: Segment Routing with IPv6
Jul 28 12:12:34 revelation kernel: NET: Registered PF_PACKET protocol family
Jul 28 12:12:34 revelation kernel: mpls_gso: MPLS GSO support
Jul 28 12:12:34 revelation kernel: microcode: sig=0x206c2, pf=0x1, revision=0x1f
Jul 28 12:12:34 revelation kernel: microcode: Microcode Update Driver: v2.2.
Jul 28 12:12:34 revelation kernel: IPI shorthand broadcast: enabled
Jul 28 12:12:34 revelation kernel: SSE version of gcm_enc/dec engaged.
Jul 28 12:12:34 revelation kernel: sched_clock: Marking stable (697888763, 31626660)->(796910183, -67394760)
Jul 28 12:12:34 revelation kernel: registered taskstats version 1
Jul 28 12:12:34 revelation kernel: Loading compiled-in X.509 certificates
Jul 28 12:12:34 revelation kernel: Loaded X.509 cert 'Rocky kernel signing key: d64d6c663c66627385ebffd5cb5e33bb7f0b4a98'
Jul 28 12:12:34 revelation kernel: Loaded X.509 cert 'Rocky Enterprise Software Foundation: Rocky Linux Driver Signing Cert 101: ce537f0c615c038114acbb01233a5b62b93a1971'
Jul 28 12:12:34 revelation kernel: Loaded X.509 cert 'Rocky Enterprise Software Foundation: Rocky Linux Kpatch Signing Cert 101: b5ee07c737e57ecbeaed493a51379763b06312c5'
Jul 28 12:12:34 revelation kernel: zswap: loaded using pool lzo/zbud
Jul 28 12:12:34 revelation kernel: page_owner is disabled
Jul 28 12:12:34 revelation kernel: pstore: Using crash dump compression: deflate
Jul 28 12:12:34 revelation kernel: Key type big_key registered
Jul 28 12:12:34 revelation kernel: usb 1-2: new high-speed USB device number 2 using ehci-pci
Jul 28 12:12:34 revelation kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Jul 28 12:12:34 revelation kernel: usb 1-2: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= b.b3
Jul 28 12:12:34 revelation kernel: usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jul 28 12:12:34 revelation kernel: hub 1-2:1.0: USB hub found
Jul 28 12:12:34 revelation kernel: hub 1-2:1.0: 4 ports detected
Jul 28 12:12:34 revelation kernel: usb 2-1: New USB device found, idVendor=05e3, idProduct=0719, bcdDevice= 0.09
Jul 28 12:12:34 revelation kernel: usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=2
Jul 28 12:12:34 revelation kernel: usb 2-1: Product: USB Storage
Jul 28 12:12:34 revelation kernel: usb 2-1: SerialNumber: 000000000033
Jul 28 12:12:34 revelation kernel: Freeing initrd memory: 54396K
Jul 28 12:12:34 revelation kernel: usb 1-3: new high-speed USB device number 3 using ehci-pci
Jul 28 12:12:34 revelation kernel: Key type encrypted registered
Jul 28 12:12:34 revelation kernel: ima: No TPM chip found, activating TPM-bypass!
Jul 28 12:12:34 revelation kernel: Loading compiled-in module X.509 certificates
Jul 28 12:12:34 revelation kernel: Loaded X.509 cert 'Rocky kernel signing key: d64d6c663c66627385ebffd5cb5e33bb7f0b4a98'
Jul 28 12:12:34 revelation kernel: ima: Allocated hash algorithm: sha256
Jul 28 12:12:34 revelation kernel: ima: No architecture policies found
Jul 28 12:12:34 revelation kernel: evm: Initialising EVM extended attributes:
Jul 28 12:12:34 revelation kernel: evm: security.selinux
Jul 28 12:12:34 revelation kernel: evm: security.SMACK64 (disabled)
Jul 28 12:12:34 revelation kernel: evm: security.SMACK64EXEC (disabled)
Jul 28 12:12:34 revelation kernel: evm: security.SMACK64TRANSMUTE (disabled)
Jul 28 12:12:34 revelation kernel: evm: security.SMACK64MMAP (disabled)
Jul 28 12:12:34 revelation kernel: evm: security.apparmor (disabled)
Jul 28 12:12:34 revelation kernel: evm: security.ima
Jul 28 12:12:34 revelation kernel: evm: security.capability
Jul 28 12:12:34 revelation kernel: evm: HMAC attrs: 0x1
Jul 28 12:12:34 revelation kernel: usb 7-1: new low-speed USB device number 2 using uhci_hcd
Jul 28 12:12:34 revelation kernel: usb 1-3: New USB device found, idVendor=148f, idProduct=3070, bcdDevice= 1.01
Jul 28 12:12:34 revelation kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 12:12:34 revelation kernel: usb 1-3: Product: 802.11 n WLAN
Jul 28 12:12:34 revelation kernel: usb 1-3: Manufacturer: Ralink
Jul 28 12:12:34 revelation kernel: usb 1-3: SerialNumber: 1.0
Jul 28 12:12:34 revelation kernel: Freeing unused decrypted memory: 2036K
Jul 28 12:12:34 revelation kernel: Freeing unused kernel image (initmem) memory: 2792K
Jul 28 12:12:34 revelation kernel: usb 1-2.2: new high-speed USB device number 4 using ehci-pci
Jul 28 12:12:34 revelation kernel: Write protecting the kernel read-only data: 26624k
Jul 28 12:12:34 revelation kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
Jul 28 12:12:34 revelation kernel: Freeing unused kernel image (rodata/data gap) memory: 60K
Jul 28 12:12:34 revelation kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jul 28 12:12:34 revelation kernel: x86/mm: Checking user space page tables
Jul 28 12:12:34 revelation kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jul 28 12:12:34 revelation kernel: Run /init as init process
Jul 28 12:12:34 revelation kernel: usb 1-2.2: New USB device found, idVendor=03f0, idProduct=5a07, bcdDevice=11.00
Jul 28 12:12:34 revelation kernel: usb 1-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 12:12:34 revelation kernel: usb 1-2.2: Product: v220b
Jul 28 12:12:34 revelation kernel: usb 1-2.2: Manufacturer: HP
Jul 28 12:12:34 revelation kernel: usb 1-2.2: SerialNumber: 0323515010011859
Jul 28 12:12:34 revelation kernel: usb 7-1: New USB device found, idVendor=046d, idProduct=c05a, bcdDevice=63.00
Jul 28 12:12:34 revelation kernel: usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jul 28 12:12:34 revelation kernel: usb 7-1: Product: USB Optical Mouse
Jul 28 12:12:34 revelation kernel: usb 7-1: Manufacturer: Logitech
Jul 28 12:12:34 revelation systemd[1]: systemd 252-14.el9_2.1 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jul 28 12:12:34 revelation systemd[1]: Detected architecture x86-64.
Jul 28 12:12:34 revelation systemd[1]: Running in initrd.
Jul 28 12:12:34 revelation systemd[1]: Hostname set to <revelation>.
Jul 28 12:12:34 revelation kernel: input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/0003:046D:C05A.0001/input/input2
Jul 28 12:12:34 revelation kernel: hid-generic 0003:046D:C05A.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.1-1/input0
Jul 28 12:12:34 revelation kernel: tsc: Refined TSC clocksource calibration: 3458.389 MHz
Jul 28 12:12:34 revelation kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31d9c4802aa, max_idle_ns: 440795229719 ns
Jul 28 12:12:34 revelation kernel: clocksource: Switched to clocksource tsc
Jul 28 12:12:34 revelation systemd[1]: Queued start job for default target Initrd Default Target.
Jul 28 12:12:34 revelation systemd[1]: Created slice Slice /system/systemd-hibernate-resume.
Jul 28 12:12:34 revelation systemd[1]: Reached target Initrd /usr File System.
Jul 28 12:12:34 revelation systemd[1]: Reached target Slice Units.
Jul 28 12:12:34 revelation systemd[1]: Reached target Swaps.
Jul 28 12:12:34 revelation systemd[1]: Reached target Timer Units.
Jul 28 12:12:34 revelation systemd[1]: Listening on D-Bus System Message Bus Socket.
Jul 28 12:12:34 revelation systemd[1]: Listening on Journal Socket (/dev/log).
Jul 28 12:12:34 revelation systemd[1]: Listening on Journal Socket.
Jul 28 12:12:34 revelation systemd[1]: Listening on udev Control Socket.
Jul 28 12:12:34 revelation systemd[1]: Listening on udev Kernel Socket.
Jul 28 12:12:34 revelation systemd[1]: Reached target Socket Units.
Jul 28 12:12:34 revelation systemd[1]: Starting Create List of Static Device Nodes...
Jul 28 12:12:34 revelation systemd[1]: Starting Journal Service...
Jul 28 12:12:34 revelation systemd[1]: Starting Load Kernel Modules...
Jul 28 12:12:34 revelation systemd[1]: Starting Create System Users...
Jul 28 12:12:34 revelation systemd[1]: Starting Setup Virtual Console...
Jul 28 12:12:34 revelation systemd[1]: Finished Create List of Static Device Nodes.
Jul 28 12:12:34 revelation systemd[1]: Finished Create System Users.
Jul 28 12:12:34 revelation systemd[1]: Starting Create Static Device Nodes in /dev...
Jul 28 12:12:34 revelation kernel: fuse: init (API version 7.36)
Jul 28 12:12:34 revelation systemd[1]: Finished Load Kernel Modules.
Jul 28 12:12:34 revelation systemd[1]: Starting Apply Kernel Variables...
Jul 28 12:12:34 revelation systemd[1]: Finished Create Static Device Nodes in /dev.
Jul 28 12:12:34 revelation systemd[1]: Finished Apply Kernel Variables.
Jul 28 12:12:34 revelation systemd-journald[396]: Journal started
Jul 28 12:12:34 revelation systemd-journald[396]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 12:12:34 revelation systemd-sysusers[398]: Creating group 'nobody' with GID 65534.
Jul 28 12:12:34 revelation systemd-sysusers[398]: Creating group 'users' with GID 100.
Jul 28 12:12:34 revelation systemd-sysusers[398]: Creating group 'dbus' with GID 81.
Jul 28 12:12:34 revelation systemd-sysusers[398]: Creating user 'dbus' (System Message Bus) with UID 81 and GID 81.
Jul 28 12:12:34 revelation systemd-modules-load[397]: Inserted module 'fuse'
Jul 28 12:12:34 revelation systemd-modules-load[397]: Module 'msr' is built in
Jul 28 12:12:34 revelation systemd-sysctl[411]: Couldn't write '1' to 'net/netfilter/nf_conntrack_acct', ignoring: No such file or directory
Jul 28 12:12:34 revelation systemd[1]: Started Journal Service.
Jul 28 12:12:34 revelation systemd[1]: Starting Create Volatile Files and Directories...
Jul 28 12:12:34 revelation systemd[1]: Finished Create Volatile Files and Directories.
Jul 28 12:12:34 revelation systemd[1]: Finished Setup Virtual Console.
Jul 28 12:12:34 revelation systemd[1]: dracut ask for additional cmdline parameters was skipped because no trigger condition checks were met.
Jul 28 12:12:34 revelation systemd[1]: Starting dracut cmdline hook...
Jul 28 12:12:34 revelation dracut-cmdline[418]: dracut-9.2 (Blue Onyx) dracut-057-21.git20230214.el9
Jul 28 12:12:34 revelation dracut-cmdline[418]: Using kernel command line parameters:    BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 12:12:34 revelation kernel: usb 5-1: new full-speed USB device number 2 using uhci_hcd
Jul 28 12:12:34 revelation systemd[1]: Finished dracut cmdline hook.
Jul 28 12:12:34 revelation systemd[1]: Starting dracut pre-udev hook...
Jul 28 12:12:34 revelation kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
Jul 28 12:12:34 revelation kernel: device-mapper: uevent: version 1.0.3
Jul 28 12:12:34 revelation kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
Jul 28 12:12:34 revelation systemd[1]: Finished dracut pre-udev hook.
Jul 28 12:12:34 revelation systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jul 28 12:12:34 revelation systemd-udevd[531]: Using default interface naming scheme 'rhel-9.0'.
Jul 28 12:12:34 revelation systemd[1]: Started Rule-based Manager for Device Events and Files.
Jul 28 12:12:34 revelation systemd[1]: dracut pre-trigger hook was skipped because no trigger condition checks were met.
Jul 28 12:12:34 revelation systemd[1]: Starting Coldplug All udev Devices...
Jul 28 12:12:34 revelation kernel: usb 5-1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
Jul 28 12:12:34 revelation kernel: usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jul 28 12:12:34 revelation kernel: usb 5-1: Product: Virtual Keyboard and Mouse
Jul 28 12:12:34 revelation kernel: usb 5-1: Manufacturer: American Megatrends Inc.
Jul 28 12:12:34 revelation kernel: usb 5-1: SerialNumber: serial
Jul 28 12:12:34 revelation kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.0/0003:046B:FF10.0002/input/input3
Jul 28 12:12:34 revelation kernel: hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1/input0
Jul 28 12:12:34 revelation kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.1/0003:046B:FF10.0003/input/input4
Jul 28 12:12:34 revelation kernel: hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1/input1
Jul 28 12:12:34 revelation systemd[1]: sys-module-fuse.device: Failed to enqueue SYSTEMD_WANTS= job, ignoring: Unit sys-fs-fuse-connections.mount not found.
Jul 28 12:12:34 revelation systemd[1]: Finished Coldplug All udev Devices.
Jul 28 12:12:34 revelation systemd[1]: nm-initrd.service was skipped because of an unmet condition check (ConditionPathExists=/run/NetworkManager/initrd/neednet).
Jul 28 12:12:34 revelation systemd[1]: Reached target Network.
Jul 28 12:12:34 revelation systemd[1]: nm-wait-online-initrd.service was skipped because of an unmet condition check (ConditionPathExists=/run/NetworkManager/initrd/neednet).
Jul 28 12:12:34 revelation kernel: dca service started, version 1.12.1
Jul 28 12:12:34 revelation systemd[1]: Starting dracut initqueue hook...
Jul 28 12:12:34 revelation systemd[1]: Starting Show Plymouth Boot Screen...
Jul 28 12:12:34 revelation kernel: megaraid_sas: loading out-of-tree module taints kernel.
Jul 28 12:12:34 revelation kernel: megaraid_sas: module verification failed: signature and/or required key missing - tainting kernel
Jul 28 12:12:34 revelation systemd[1]: Received SIGRTMIN+20 from PID 561 (plymouthd).
Jul 28 12:12:34 revelation kernel: megasas: 07.719.03.00-rc1
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: FW now in Ready state
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: 63 bit DMA mask and 32 bit consistent mask
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: requested/available msix 1/1 poll_queue 0
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: current msix/online cpus#011: (1/24)
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: RDPQ mode#011: (disabled)
Jul 28 12:12:34 revelation kernel: usb 8-2: new low-speed USB device number 2 using uhci_hcd
Jul 28 12:12:34 revelation systemd[1]: Started Show Plymouth Boot Screen.
Jul 28 12:12:34 revelation systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Jul 28 12:12:34 revelation systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Jul 28 12:12:34 revelation systemd[1]: Reached target Path Units.
Jul 28 12:12:34 revelation kernel: igb: Intel(R) Gigabit Ethernet Network Driver
Jul 28 12:12:34 revelation kernel: igb: Copyright (c) 2007-2014 Intel Corporation.
Jul 28 12:12:34 revelation kernel: ACPI: bus type drm_connector registered
Jul 28 12:12:34 revelation kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: controller type#011: iMR(0MB)
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: Online Controller Reset(OCR)#011: Enabled
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: Secure JBOD support#011: No
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: NVMe passthru support#011: No
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: FW provided TM TaskAbort/Reset timeout#011: 0 secs/0 secs
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map support#011: No
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: PCI Lane Margining support#011: No
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: megasas_init_mfi: fw_support_ieee=67108864
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: INIT adapter done
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map is disabled megasas_setup_jbod_map 5839
Jul 28 12:12:34 revelation kernel: mgag200 0000:07:00.0: vgaarb: deactivate vga console
Jul 28 12:12:34 revelation kernel: Console: switching to colour dummy device 80x25
Jul 28 12:12:34 revelation kernel: [drm] Initialized mgag200 1.0.0 20110418 for 0000:07:00.0 on minor 0
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: pci id#011#011: (0x1000)/(0x0073)/(0x1000)/(0x9241)
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: unevenspan support#011: no
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: firmware crash dump#011: no
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: JBOD sequence map#011: disabled
Jul 28 12:12:34 revelation kernel: megaraid_sas 0000:02:00.0: Max firmware commands: 30 shared with default hw_queues = 1 poll_queues 0
Jul 28 12:12:34 revelation kernel: scsi host0: Avago SAS based MegaRAID driver
Jul 28 12:12:34 revelation kernel: scsi 0:2:0:0: Direct-Access     LSI      MR9240-4i        2.12 PQ: 0 ANSI: 5
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 12:12:34 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 12:12:34 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 12:12:34 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 12:12:34 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 12:12:34 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 12:12:34 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 12:12:34 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 12:12:34 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 12:12:34 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 12:12:34 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 12:12:34 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 12:12:34 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 12:12:34 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 12:12:34 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 12:12:34 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 12:12:34 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 12:12:34 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 12:12:34 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:12:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 12:12:34 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: fbcon: mgag200drmfb (fb0) is primary device
Jul 28 12:12:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:12:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:34 revelation kernel: random: fast init done
Jul 28 12:12:34 revelation kernel: scsi 0:2:0:0: Attached scsi generic sg0 type 0
Jul 28 12:12:34 revelation kernel: sd 0:2:0:0: [sda] 1169920000 512-byte logical blocks: (599 GB/558 GiB)
Jul 28 12:12:34 revelation kernel: sd 0:2:0:0: [sda] Write Protect is off
Jul 28 12:12:34 revelation kernel: sd 0:2:0:0: [sda] Write cache: disabled, read cache: disabled, supports DPO and FUA
Jul 28 12:12:35 revelation kernel: sda: sda1 sda2 sda3
Jul 28 12:12:35 revelation kernel: sd 0:2:0:0: [sda] Attached SCSI disk
Jul 28 12:12:35 revelation kernel: usb 8-2: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00
Jul 28 12:12:35 revelation kernel: usb 8-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jul 28 12:12:35 revelation kernel: usb 8-2: Product: USB Keyboard
Jul 28 12:12:35 revelation kernel: usb 8-2: Manufacturer: Logitech
Jul 28 12:12:35 revelation kernel: igb 0000:01:00.0: Intel(R) Gigabit Ethernet Network Connection
Jul 28 12:12:35 revelation kernel: igb 0000:01:00.0: eth0: (PCIe:2.5Gb/s:Width x4) 00:1e:67:08:e3:f8
Jul 28 12:12:35 revelation kernel: igb 0000:01:00.0: eth0: PBA No: Unknown
Jul 28 12:12:35 revelation kernel: igb 0000:01:00.0: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Jul 28 12:12:35 revelation kernel: scsi host1: ata_piix
Jul 28 12:12:35 revelation kernel: scsi host2: ata_piix
Jul 28 12:12:35 revelation kernel: ata1: SATA max UDMA/133 cmd 0x3138 ctl 0x314c bmdma 0x3110 irq 18
Jul 28 12:12:35 revelation kernel: ata2: SATA max UDMA/133 cmd 0x3130 ctl 0x3148 bmdma 0x3118 irq 18
Jul 28 12:12:35 revelation kernel: ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
Jul 28 12:12:35 revelation kernel: input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/0003:046D:C31C.0004/input/input5
Jul 28 12:12:35 revelation kernel: Console: switching to colour frame buffer device 160x50
Jul 28 12:12:35 revelation kernel: hid-generic 0003:046D:C31C.0004: input,hidraw3: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.2-2/input0
Jul 28 12:12:35 revelation kernel: input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input6
Jul 28 12:12:35 revelation kernel: mgag200 0000:07:00.0: [drm] fb0: mgag200drmfb frame buffer device
Jul 28 12:12:35 revelation kernel: input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input7
Jul 28 12:12:35 revelation kernel: hid-generic 0003:046D:C31C.0005: input,hidraw4: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.2-2/input1
Jul 28 12:12:35 revelation kernel: scsi host3: ata_piix
Jul 28 12:12:35 revelation kernel: scsi host4: ata_piix
Jul 28 12:12:35 revelation kernel: ata3: SATA max UDMA/133 cmd 0x3128 ctl 0x3144 bmdma 0x30f0 irq 21
Jul 28 12:12:35 revelation kernel: ata4: SATA max UDMA/133 cmd 0x3120 ctl 0x3140 bmdma 0x30f8 irq 21
Jul 28 12:12:35 revelation kernel: igb 0000:01:00.1: Intel(R) Gigabit Ethernet Network Connection
Jul 28 12:12:35 revelation kernel: igb 0000:01:00.1: eth1: (PCIe:2.5Gb/s:Width x4) 00:1e:67:08:e3:f9
Jul 28 12:12:35 revelation kernel: igb 0000:01:00.1: eth1: PBA No: Unknown
Jul 28 12:12:35 revelation kernel: igb 0000:01:00.1: Using MSI-X interrupts. 4 rx queue(s), 4 tx queue(s)
Jul 28 12:12:35 revelation systemd-udevd[593]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 12:12:35 revelation systemd-udevd[578]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 12:12:35 revelation kernel: usb-storage 2-1:1.0: USB Mass Storage device detected
Jul 28 12:12:35 revelation kernel: scsi host5: usb-storage 2-1:1.0
Jul 28 12:12:35 revelation kernel: usb-storage 1-2.2:1.0: USB Mass Storage device detected
Jul 28 12:12:35 revelation kernel: scsi host6: usb-storage 1-2.2:1.0
Jul 28 12:12:35 revelation kernel: usbcore: registered new interface driver usb-storage
Jul 28 12:12:35 revelation kernel: usbcore: registered new interface driver uas
Jul 28 12:12:35 revelation kernel: ata3: SATA link down (SStatus 4 SControl 300)
Jul 28 12:12:35 revelation kernel: ata4: SATA link down (SStatus 0 SControl 300)
Jul 28 12:12:35 revelation kernel: ata1.00: SATA link down (SStatus 0 SControl 300)
Jul 28 12:12:35 revelation kernel: ata1.01: SATA link down (SStatus 0 SControl 300)
Jul 28 12:12:35 revelation kernel: ata2.00: SATA link down (SStatus 0 SControl 300)
Jul 28 12:12:35 revelation kernel: ata2.01: SATA link down (SStatus 0 SControl 300)
Jul 28 12:12:36 revelation kernel: random: crng init done
Jul 28 12:12:36 revelation dracut-initqueue[697]: Scanning devices sda2  for LVM logical volumes vg_revelationr9/root
Jul 28 12:12:36 revelation dracut-initqueue[697]: vg_revelationr9/swap
Jul 28 12:12:36 revelation dracut-initqueue[697]:  vg_revelationr9/root linear
Jul 28 12:12:36 revelation dracut-initqueue[697]:  vg_revelationr9/swap linear
Jul 28 12:12:36 revelation kernel: scsi 5:0:0:0: CD-ROM            TEAC     DV-28S-W         1.2A PQ: 0 ANSI: 0
Jul 28 12:12:36 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-root.
Jul 28 12:12:36 revelation systemd[1]: Reached target Initrd Root Device.
Jul 28 12:12:36 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-swap.
Jul 28 12:12:36 revelation systemd[1]: Starting Resume from hibernation using device /dev/mapper/vg_revelationr9-swap...
Jul 28 12:12:36 revelation systemd-hibernate-resume[733]: Could not resume from '/dev/mapper/vg_revelationr9-swap' (253:1).
Jul 28 12:12:36 revelation systemd[1]: systemd-hibernate-resume@dev-mapper-vg_revelationr9\x2dswap.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Finished Resume from hibernation using device /dev/mapper/vg_revelationr9-swap.
Jul 28 12:12:36 revelation systemd[1]: Reached target Preparation for Local File Systems.
Jul 28 12:12:36 revelation systemd[1]: Reached target Local File Systems.
Jul 28 12:12:36 revelation systemd[1]: Reached target System Initialization.
Jul 28 12:12:36 revelation systemd[1]: Reached target Basic System.
Jul 28 12:12:36 revelation systemd[1]: Finished dracut initqueue hook.
Jul 28 12:12:36 revelation systemd[1]: Reached target Preparation for Remote File Systems.
Jul 28 12:12:36 revelation systemd[1]: Reached target Remote File Systems.
Jul 28 12:12:36 revelation systemd[1]: dracut pre-mount hook was skipped because no trigger condition checks were met.
Jul 28 12:12:36 revelation systemd[1]: Starting File System Check on /dev/mapper/vg_revelationr9-root...
Jul 28 12:12:36 revelation systemd-fsck[744]: revr9root: clean, 618909/4587520 files, 5981097/18350080 blocks
Jul 28 12:12:36 revelation kernel: scsi 6:0:0:0: Direct-Access     hp       v220b            1100 PQ: 0 ANSI: 4
Jul 28 12:12:36 revelation kernel: scsi 6:0:0:0: alua: supports implicit and explicit TPGS
Jul 28 12:12:36 revelation kernel: scsi 6:0:0:0: alua: No target port descriptors found
Jul 28 12:12:36 revelation kernel: sd 6:0:0:0: Attached scsi generic sg1 type 0
Jul 28 12:12:36 revelation kernel: scsi 5:0:0:0: Attached scsi generic sg2 type 5
Jul 28 12:12:36 revelation kernel: sd 6:0:0:0: [sdb] 31506432 512-byte logical blocks: (16.1 GB/15.0 GiB)
Jul 28 12:12:36 revelation kernel: sd 6:0:0:0: [sdb] Write Protect is off
Jul 28 12:12:36 revelation kernel: sd 6:0:0:0: [sdb] No Caching mode page found
Jul 28 12:12:36 revelation kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
Jul 28 12:12:36 revelation systemd[1]: Finished File System Check on /dev/mapper/vg_revelationr9-root.
Jul 28 12:12:36 revelation systemd[1]: Mounting /sysroot...
Jul 28 12:12:36 revelation kernel: sdb: sdb1 sdb2 sdb3 sdb4
Jul 28 12:12:36 revelation kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Jul 28 12:12:36 revelation kernel: sr 5:0:0:0: [sr0] scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray
Jul 28 12:12:36 revelation kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jul 28 12:12:36 revelation kernel: EXT4-fs (dm-0): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 12:12:36 revelation systemd[1]: Mounted /sysroot.
Jul 28 12:12:36 revelation systemd[1]: Reached target Initrd Root File System.
Jul 28 12:12:36 revelation systemd[1]: Starting Mountpoints Configured in the Real Root...
Jul 28 12:12:36 revelation systemd[1]: initrd-parse-etc.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Finished Mountpoints Configured in the Real Root.
Jul 28 12:12:36 revelation systemd[1]: Reached target Initrd File Systems.
Jul 28 12:12:36 revelation systemd[1]: Reached target Initrd Default Target.
Jul 28 12:12:36 revelation systemd[1]: dracut mount hook was skipped because no trigger condition checks were met.
Jul 28 12:12:36 revelation systemd[1]: Starting dracut pre-pivot and cleanup hook...
Jul 28 12:12:36 revelation systemd[1]: Finished dracut pre-pivot and cleanup hook.
Jul 28 12:12:36 revelation systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Jul 28 12:12:36 revelation systemd[1]: Stopped target Network.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Timer Units.
Jul 28 12:12:36 revelation systemd[1]: dbus.socket: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Closed D-Bus System Message Bus Socket.
Jul 28 12:12:36 revelation systemd[1]: dracut-pre-pivot.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped dracut pre-pivot and cleanup hook.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Initrd Default Target.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Basic System.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Initrd Root Device.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Initrd /usr File System.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Path Units.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Remote File Systems.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Preparation for Remote File Systems.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Slice Units.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Socket Units.
Jul 28 12:12:36 revelation systemd[1]: Stopped target System Initialization.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Local File Systems.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Preparation for Local File Systems.
Jul 28 12:12:36 revelation systemd[1]: Stopped target Swaps.
Jul 28 12:12:36 revelation systemd[1]: dracut-initqueue.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped dracut initqueue hook.
Jul 28 12:12:36 revelation systemd[1]: Starting Plymouth switch root service...
Jul 28 12:12:36 revelation systemd[1]: systemd-sysctl.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped Apply Kernel Variables.
Jul 28 12:12:36 revelation systemd[1]: systemd-modules-load.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped Load Kernel Modules.
Jul 28 12:12:36 revelation systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped Create Volatile Files and Directories.
Jul 28 12:12:36 revelation systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped Coldplug All udev Devices.
Jul 28 12:12:36 revelation systemd[1]: Stopping Rule-based Manager for Device Events and Files...
Jul 28 12:12:36 revelation systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup.service.mount: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: run-credentials-systemd\x2dsysctl.service.mount: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: initrd-cleanup.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
Jul 28 12:12:36 revelation systemd[1]: systemd-udevd.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped Rule-based Manager for Device Events and Files.
Jul 28 12:12:36 revelation systemd[1]: systemd-udevd.service: Consumed 1.709s CPU time.
Jul 28 12:12:36 revelation systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Closed udev Control Socket.
Jul 28 12:12:36 revelation systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Closed udev Kernel Socket.
Jul 28 12:12:36 revelation systemd[1]: dracut-pre-udev.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped dracut pre-udev hook.
Jul 28 12:12:36 revelation systemd[1]: dracut-cmdline.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped dracut cmdline hook.
Jul 28 12:12:36 revelation systemd[1]: Starting Cleanup udev Database...
Jul 28 12:12:36 revelation systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped Create Static Device Nodes in /dev.
Jul 28 12:12:36 revelation systemd[1]: kmod-static-nodes.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped Create List of Static Device Nodes.
Jul 28 12:12:36 revelation systemd[1]: systemd-sysusers.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Stopped Create System Users.
Jul 28 12:12:36 revelation systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dsetup\x2ddev.service.mount: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: run-credentials-systemd\x2dsysusers.service.mount: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
Jul 28 12:12:36 revelation systemd[1]: Finished Cleanup udev Database.
Jul 28 12:12:36 revelation systemd[1]: Reached target Switch Root.
Jul 28 12:12:37 revelation systemd[1]: Finished Plymouth switch root service.
Jul 28 12:12:37 revelation systemd[1]: Starting Switch Root...
Jul 28 12:12:37 revelation systemd[1]: Switching root.
Jul 28 12:12:37 revelation systemd-journald[396]: Journal stopped
Jul 28 12:12:39 revelation systemd-journald[396]: Received SIGTERM from PID 1 (systemd).
Jul 28 12:12:39 revelation kernel: audit: type=1404 audit(1690542757.625:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1
Jul 28 12:12:39 revelation kernel: SELinux:  policy capability network_peer_controls=1
Jul 28 12:12:39 revelation kernel: SELinux:  policy capability open_perms=1
Jul 28 12:12:39 revelation kernel: SELinux:  policy capability extended_socket_class=1
Jul 28 12:12:39 revelation kernel: SELinux:  policy capability always_check_network=0
Jul 28 12:12:39 revelation kernel: SELinux:  policy capability cgroup_seclabel=1
Jul 28 12:12:39 revelation kernel: SELinux:  policy capability nnp_nosuid_transition=1
Jul 28 12:12:39 revelation kernel: SELinux:  policy capability genfs_seclabel_symlinks=1
Jul 28 12:12:39 revelation kernel: audit: type=1403 audit(1690542757.752:3): auid=4294967295 ses=4294967295 lsm=selinux res=1
Jul 28 12:12:39 revelation systemd[1]: Successfully loaded SELinux policy in 142.355ms.
Jul 28 12:12:39 revelation systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 61.582ms.
Jul 28 12:12:39 revelation systemd[1]: systemd 252-14.el9_2.1 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jul 28 12:12:39 revelation systemd[1]: Detected architecture x86-64.
Jul 28 12:12:39 revelation systemd-rc-local-generator[806]: /etc/rc.d/rc.local is not marked executable, skipping.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd-fstab-generator[801]: Mount point none is not a valid path, ignoring.
Jul 28 12:12:39 revelation systemd[1]: initrd-switch-root.service: Deactivated successfully.
Jul 28 12:12:39 revelation systemd[1]: Stopped Switch Root.
Jul 28 12:12:39 revelation systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Jul 28 12:12:39 revelation systemd[1]: Created slice Slice /system/getty.
Jul 28 12:12:39 revelation systemd[1]: Created slice Slice /system/modprobe.
Jul 28 12:12:39 revelation systemd[1]: Created slice Slice /system/sshd-keygen.
Jul 28 12:12:39 revelation systemd[1]: Created slice Cryptsetup Units Slice.
Jul 28 12:12:39 revelation systemd[1]: Created slice Slice /system/systemd-fsck.
Jul 28 12:12:39 revelation systemd[1]: Created slice User and Session Slice.
Jul 28 12:12:39 revelation systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Jul 28 12:12:39 revelation systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jul 28 12:12:39 revelation systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jul 28 12:12:39 revelation systemd[1]: Reached target Login Prompts.
Jul 28 12:12:39 revelation systemd[1]: Stopped target Switch Root.
Jul 28 12:12:39 revelation systemd[1]: Stopped target Initrd File Systems.
Jul 28 12:12:39 revelation systemd[1]: Stopped target Initrd Root File System.
Jul 28 12:12:39 revelation systemd[1]: Reached target Local Integrity Protected Volumes.
Jul 28 12:12:39 revelation systemd[1]: Reached target Slice Units.
Jul 28 12:12:39 revelation systemd[1]: Reached target Local Verity Protected Volumes.
Jul 28 12:12:39 revelation systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jul 28 12:12:39 revelation systemd[1]: Listening on LVM2 poll daemon socket.
Jul 28 12:12:39 revelation systemd[1]: multipathd control socket was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
Jul 28 12:12:39 revelation systemd[1]: Listening on Process Core Dump Socket.
Jul 28 12:12:39 revelation systemd[1]: Listening on initctl Compatibility Named Pipe.
Jul 28 12:12:39 revelation systemd[1]: Listening on udev Control Socket.
Jul 28 12:12:39 revelation systemd[1]: Listening on udev Kernel Socket.
Jul 28 12:12:39 revelation systemd[1]: Mounting Huge Pages File System...
Jul 28 12:12:39 revelation systemd[1]: Mounting POSIX Message Queue File System...
Jul 28 12:12:39 revelation systemd[1]: Mounting Kernel Debug File System...
Jul 28 12:12:39 revelation systemd[1]: Mounting Kernel Trace File System...
Jul 28 12:12:39 revelation systemd[1]: Starting Create List of Static Device Nodes...
Jul 28 12:12:39 revelation systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jul 28 12:12:39 revelation systemd[1]: Starting Load Kernel Module configfs...
Jul 28 12:12:39 revelation systemd[1]: Starting Load Kernel Module drm...
Jul 28 12:12:39 revelation systemd[1]: Starting Load Kernel Module fuse...
Jul 28 12:12:39 revelation systemd[1]: Starting Read and set NIS domainname from /etc/sysconfig/network...
Jul 28 12:12:39 revelation systemd[1]: plymouth-switch-root.service: Deactivated successfully.
Jul 28 12:12:39 revelation systemd[1]: Stopped Plymouth switch root service.
Jul 28 12:12:39 revelation systemd[1]: Stopped Journal Service.
Jul 28 12:12:39 revelation systemd[1]: Starting Journal Service...
Jul 28 12:12:39 revelation systemd[1]: Starting Load Kernel Modules...
Jul 28 12:12:39 revelation systemd[1]: Starting Generate network units from Kernel command line...
Jul 28 12:12:39 revelation systemd[1]: Starting Remount Root and Kernel File Systems...
Jul 28 12:12:39 revelation systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Jul 28 12:12:39 revelation systemd[1]: Starting Coldplug All udev Devices...
Jul 28 12:12:39 revelation systemd[1]: Mounted Huge Pages File System.
Jul 28 12:12:39 revelation kernel: EXT4-fs (dm-0): re-mounted. Quota mode: none.
Jul 28 12:12:39 revelation systemd[1]: Mounted POSIX Message Queue File System.
Jul 28 12:12:39 revelation systemd[1]: Mounted Kernel Debug File System.
Jul 28 12:12:39 revelation systemd[1]: Mounted Kernel Trace File System.
Jul 28 12:12:39 revelation systemd[1]: Finished Create List of Static Device Nodes.
Jul 28 12:12:39 revelation systemd[1]: Finished Read and set NIS domainname from /etc/sysconfig/network.
Jul 28 12:12:39 revelation systemd[1]: modprobe@drm.service: Deactivated successfully.
Jul 28 12:12:39 revelation systemd[1]: Finished Load Kernel Module drm.
Jul 28 12:12:39 revelation systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jul 28 12:12:39 revelation systemd[1]: Finished Load Kernel Module configfs.
Jul 28 12:12:39 revelation systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jul 28 12:12:39 revelation systemd[1]: Finished Load Kernel Module fuse.
Jul 28 12:12:39 revelation systemd[1]: Finished Load Kernel Modules.
Jul 28 12:12:39 revelation systemd[1]: Finished Generate network units from Kernel command line.
Jul 28 12:12:39 revelation systemd-journald[834]: Journal started
Jul 28 12:12:39 revelation systemd-journald[834]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 12:12:39 revelation systemd[1]: Queued start job for default target Graphical Interface.
Jul 28 12:12:39 revelation systemd[1]: systemd-journald.service: Deactivated successfully.
Jul 28 12:12:39 revelation systemd-modules-load[835]: Module 'msr' is built in
Jul 28 12:12:39 revelation systemd[1]: Started Journal Service.
Jul 28 12:12:39 revelation systemd[1]: Finished Remount Root and Kernel File Systems.
Jul 28 12:12:39 revelation systemd[1]: Mounting FUSE Control File System...
Jul 28 12:12:40 revelation systemd[1]: Mounting Kernel Configuration File System...
Jul 28 12:12:40 revelation systemd[1]: Special handling of early boot iSCSI sessions was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session).
Jul 28 12:12:40 revelation systemd[1]: OSTree Remount OS/ Bind Mounts was skipped because of an unmet condition check (ConditionKernelCommandLine=ostree).
Jul 28 12:12:40 revelation systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jul 28 12:12:40 revelation systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Jul 28 12:12:40 revelation systemd[1]: Starting Flush Journal to Persistent Storage...
Jul 28 12:12:40 revelation systemd[1]: Starting Load/Save Random Seed...
Jul 28 12:12:40 revelation systemd[1]: Starting Apply Kernel Variables...
Jul 28 12:12:40 revelation systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Jul 28 12:12:40 revelation systemd[1]: Starting Create Static Device Nodes in /dev...
Jul 28 12:12:40 revelation systemd[1]: Mounted FUSE Control File System.
Jul 28 12:12:40 revelation systemd[1]: Mounted Kernel Configuration File System.
Jul 28 12:12:40 revelation systemd[1]: Finished Coldplug All udev Devices.
Jul 28 12:12:40 revelation systemd[1]: Starting Wait for udev To Complete Device Initialization...
Jul 28 12:12:40 revelation systemd-journald[834]: Runtime Journal (/run/log/journal/48d8a0c1b7554effb9303ff6ee9e0e84) is 8.0M, max 958.4M, 950.4M free.
Jul 28 12:12:40 revelation systemd-journald[834]: Received client request to flush runtime journal.
Jul 28 12:12:40 revelation systemd[1]: Finished Load/Save Random Seed.
Jul 28 12:12:40 revelation udevadm[850]: systemd-udev-settle.service is deprecated. Please fix multipathd.service not to pull it in.
Jul 28 12:12:40 revelation lvm[829]:  2 logical volume(s) in volume group "vg_revelationr9" monitored
Jul 28 12:12:40 revelation systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jul 28 12:12:40 revelation systemd[1]: Starting Cryptography Setup for swap...
Jul 28 12:12:40 revelation systemd[1]: Finished Flush Journal to Persistent Storage.
Jul 28 12:12:40 revelation systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jul 28 12:12:40 revelation systemd-sysctl[845]: Couldn't write '1' to 'net/netfilter/nf_conntrack_acct', ignoring: No such file or directory
Jul 28 12:12:40 revelation systemd[1]: Finished Apply Kernel Variables.
Jul 28 12:12:40 revelation systemd-cryptsetup[851]: Set cipher aes, mode xts-essiv:sha256, key size 256 bits for device /dev/vg_revelationr9/swap.
Jul 28 12:12:40 revelation kernel: alg: No test for essiv(xts(aes),sha256) (essiv(xts-aes-aesni,sha256-ssse3))
Jul 28 12:12:40 revelation systemd[1]: Finished Create Static Device Nodes in /dev.
Jul 28 12:12:40 revelation systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jul 28 12:12:40 revelation systemd-udevd[862]: Using default interface naming scheme 'rhel-9.0'.
Jul 28 12:12:40 revelation systemd[1]: Started Rule-based Manager for Device Events and Files.
Jul 28 12:12:40 revelation systemd[1]: Starting Load Kernel Module configfs...
Jul 28 12:12:40 revelation systemd[1]: Starting Load Kernel Module fuse...
Jul 28 12:12:40 revelation systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jul 28 12:12:40 revelation systemd[1]: Finished Load Kernel Module configfs.
Jul 28 12:12:40 revelation systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jul 28 12:12:40 revelation systemd[1]: Finished Load Kernel Module fuse.
Jul 28 12:12:41 revelation kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
Jul 28 12:12:41 revelation kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000428-0x000000000000042F (\GPE0) (20211217/utaddress-204)
Jul 28 12:12:41 revelation kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jul 28 12:12:41 revelation kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000052F (\_SI.SIOR) (20211217/utaddress-204)
Jul 28 12:12:41 revelation kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jul 28 12:12:41 revelation kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Jul 28 12:12:41 revelation kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Jul 28 12:12:41 revelation kernel: EDAC MC1: Giving out device to module i7core_edac.c controller i7 core #1: DEV 0000:fe:03.0 (INTERRUPT)
Jul 28 12:12:41 revelation kernel: EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:fe:03.0 (POLLED)
Jul 28 12:12:41 revelation kernel: EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (INTERRUPT)
Jul 28 12:12:41 revelation kernel: EDAC PCI1: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jul 28 12:12:41 revelation kernel: EDAC i7core: Driver loaded, 2 memory controller(s) found.
Jul 28 12:12:41 revelation kernel: ioatdma: Intel(R) QuickData Technology Driver 5.00
Jul 28 12:12:41 revelation kernel: IPMI message handler: version 39.2
Jul 28 12:12:41 revelation kernel: igb 0000:01:00.0: DCA enabled
Jul 28 12:12:41 revelation kernel: igb 0000:01:00.1: DCA enabled
Jul 28 12:12:41 revelation kernel: ipmi device interface
Jul 28 12:12:41 revelation kernel: gpio_ich gpio_ich.2.auto: GPIO from 963 to 1023
Jul 28 12:12:41 revelation kernel: iTCO_vendor_support: vendor-support=0
Jul 28 12:12:41 revelation kernel: iTCO_wdt iTCO_wdt.1.auto: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
Jul 28 12:12:41 revelation kernel: ipmi_si: IPMI System Interface driver
Jul 28 12:12:41 revelation kernel: ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
Jul 28 12:12:41 revelation kernel: ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Jul 28 12:12:41 revelation kernel: ipmi_si: Adding SMBIOS-specified kcs state machine
Jul 28 12:12:41 revelation kernel: ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
Jul 28 12:12:41 revelation kernel: ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
Jul 28 12:12:41 revelation kernel: ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
Jul 28 12:12:41 revelation kernel: ipmi_si: Adding ACPI-specified kcs state machine
Jul 28 12:12:41 revelation kernel: ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
Jul 28 12:12:41 revelation mtp-probe[950]: checking bus 7, device 2: "/sys/devices/pci0000:00/0000:00:1d.1/usb7/7-1"
Jul 28 12:12:41 revelation mtp-probe[948]: checking bus 5, device 2: "/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1"
Jul 28 12:12:41 revelation mtp-probe[949]: checking bus 8, device 2: "/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2"
Jul 28 12:12:41 revelation mtp-probe[951]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2.2"
Jul 28 12:12:41 revelation mtp-probe[945]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1"
Jul 28 12:12:41 revelation mtp-probe[950]: bus: 7, device: 2 was not an MTP device
Jul 28 12:12:41 revelation mtp-probe[949]: bus: 8, device: 2 was not an MTP device
Jul 28 12:12:41 revelation mtp-probe[951]: bus: 1, device: 4 was not an MTP device
Jul 28 12:12:41 revelation mtp-probe[948]: bus: 5, device: 2 was not an MTP device
Jul 28 12:12:41 revelation mtp-probe[945]: bus: 2, device: 2 was not an MTP device
Jul 28 12:12:41 revelation mtp-probe[956]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-3"
Jul 28 12:12:41 revelation mtp-probe[956]: bus: 1, device: 3 was not an MTP device
Jul 28 12:12:41 revelation systemd-udevd[929]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 12:12:41 revelation systemd-udevd[906]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 12:12:41 revelation kernel: ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000157, prod_id: 0x003e, dev_id: 0x21)
Jul 28 12:12:41 revelation systemd-makefs[975]: Setting up swapspace version 1, size = 25 GiB (26843541504 bytes)
Jul 28 12:12:41 revelation systemd-makefs[975]: LABEL=swap, UUID=462e1c15-8f00-472a-8fd4-6095d3da76b5
Jul 28 12:12:41 revelation systemd-makefs[955]: /dev/mapper/swap successfully formatted as swap (label "swap", uuid 462e1c15-8f00-472a-8fd4-6095d3da76b5)
Jul 28 12:12:41 revelation systemd[1]: Finished Cryptography Setup for swap.
Jul 28 12:12:41 revelation systemd[1]: Reached target Block Device Preparation for /dev/mapper/swap.
Jul 28 12:12:41 revelation systemd[1]: Reached target Local Encrypted Volumes.
Jul 28 12:12:41 revelation systemd[1]: Found device /dev/mapper/swap.
Jul 28 12:12:41 revelation systemd[1]: Activating swap /dev/mapper/swap...
Jul 28 12:12:41 revelation systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jul 28 12:12:41 revelation kernel: ipmi_si IPI0001:00: IPMI kcs interface initialized
Jul 28 12:12:41 revelation kernel: Adding 26214396k swap on /dev/mapper/swap.  Priority:-2 extents:1 across:26214396k FS
Jul 28 12:12:41 revelation systemd[1]: Activated swap /dev/mapper/swap.
Jul 28 12:12:41 revelation systemd[1]: Reached target Swaps.
Jul 28 12:12:41 revelation lvm[990]: PV /dev/sda2 online, VG vg_revelationr9 is complete.
Jul 28 12:12:41 revelation kernel: ipmi_ssif: IPMI SSIF Interface driver
Jul 28 12:12:41 revelation kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jul 28 12:12:41 revelation kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jul 28 12:12:41 revelation systemd[1]: Started /usr/sbin/lvm vgchange -aay --autoactivation event vg_revelationr9.
Jul 28 12:12:41 revelation systemd[1]: Condition check resulted in MR9240-4i boot being skipped.
Jul 28 12:12:41 revelation kernel: kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jul 28 12:12:41 revelation lvm[996]:  3 logical volume(s) in volume group "vg_revelationr9" now active
Jul 28 12:12:41 revelation systemd[1]: Found device /dev/mapper/vg_revelationr9-home.
Jul 28 12:12:41 revelation systemd[1]: lvm-activate-vg_revelationr9.service: Deactivated successfully.
Jul 28 12:12:41 revelation kernel: usb 1-3: reset high-speed USB device number 3 using ehci-pci
Jul 28 12:12:42 revelation kernel: ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 3070, rev 0201 detected
Jul 28 12:12:42 revelation kernel: ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 0005 detected
Jul 28 12:12:42 revelation kernel: usbcore: registered new interface driver rt2800usb
Jul 28 12:12:42 revelation systemd[1]: Starting Load/Save RF Kill Switch Status...
Jul 28 12:12:42 revelation systemd-udevd[890]: Network interface NamePolicy= disabled on kernel command line.
Jul 28 12:12:42 revelation wireless[1060]: setting regulatory domain to GB based on timezone (Europe/London)
Jul 28 12:12:42 revelation systemd[1]: Finished Wait for udev To Complete Device Initialization.
Jul 28 12:12:42 revelation systemd[1]: Device-Mapper Multipath Device Controller was skipped because of an unmet condition check (ConditionPathExists=/etc/multipath.conf).
Jul 28 12:12:42 revelation systemd[1]: Reached target Preparation for Local File Systems.
Jul 28 12:12:42 revelation systemd[1]: Login and scanning of iSCSI devices was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes).
Jul 28 12:12:42 revelation systemd[1]: Reached target Preparation for Remote File Systems.
Jul 28 12:12:42 revelation systemd[1]: Reached target Remote File Systems.
Jul 28 12:12:42 revelation systemd[1]: Starting File System Check on /dev/disk/by-uuid/e46a2fbb-bf4f-48b9-bd78-23d813638af9...
Jul 28 12:12:42 revelation systemd[1]: Starting File System Check on /dev/mapper/vg_revelationr9-home...
Jul 28 12:12:42 revelation systemd[1]: Started Load/Save RF Kill Switch Status.
Jul 28 12:12:42 revelation systemd[1]: Finished File System Check on /dev/disk/by-uuid/e46a2fbb-bf4f-48b9-bd78-23d813638af9.
Jul 28 12:12:42 revelation systemd[1]: Mounting /boot...
Jul 28 12:12:42 revelation kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 12:12:42 revelation systemd[1]: Mounted /boot.
Jul 28 12:12:42 revelation systemd-fsck[1067]: revr9home: clean, 540220/30244864 files, 99994649/120950784 blocks
Jul 28 12:12:42 revelation systemd[1]: Finished File System Check on /dev/mapper/vg_revelationr9-home.
Jul 28 12:12:42 revelation systemd[1]: Mounting /home...
Jul 28 12:12:42 revelation kernel: EXT4-fs (dm-3): mounted filesystem with ordered data mode. Quota mode: none.
Jul 28 12:12:42 revelation systemd[1]: Mounted /home.
Jul 28 12:12:42 revelation systemd[1]: Reached target Local File Systems.
Jul 28 12:12:42 revelation systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Jul 28 12:12:42 revelation systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Jul 28 12:12:42 revelation systemd[1]: Mark the need to relabel after reboot was skipped because of an unmet condition check (ConditionSecurity=!selinux).
Jul 28 12:12:42 revelation systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Jul 28 12:12:42 revelation systemd[1]: Store a System Token in an EFI Variable was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/LoaderFeatures-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 12:12:42 revelation systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Jul 28 12:12:42 revelation systemd[1]: Starting Create Volatile Files and Directories...
Jul 28 12:12:42 revelation systemd[1]: Received SIGRTMIN+20 from PID 561 (plymouthd).
Jul 28 12:12:42 revelation systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Jul 28 12:12:42 revelation systemd[1]: Finished Create Volatile Files and Directories.
Jul 28 12:12:42 revelation systemd[1]: Starting Security Auditing Service...
Jul 28 12:12:42 revelation systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Jul 28 12:12:42 revelation systemd[1]: Starting Network Name Resolution...
Jul 28 12:12:42 revelation systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Jul 28 12:12:42 revelation auditd[1082]: audit dispatcher initialized with q_depth=1200 and 1 active plugins
Jul 28 12:12:42 revelation auditd[1082]: Init complete, auditd 3.0.7 listening for events (startup state enable)
Jul 28 12:12:42 revelation systemd-resolved[1081]: Positive Trust Anchors:
Jul 28 12:12:42 revelation systemd-resolved[1081]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Jul 28 12:12:42 revelation systemd-resolved[1081]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
Jul 28 12:12:42 revelation augenrules[1087]: /sbin/augenrules: No change
Jul 28 12:12:42 revelation systemd-resolved[1081]: Using system hostname 'revelation'.
Jul 28 12:12:42 revelation systemd[1]: Started Network Name Resolution.
Jul 28 12:12:42 revelation systemd[1]: Reached target Host and Network Name Lookups.
Jul 28 12:12:42 revelation augenrules[1097]: No rules
Jul 28 12:12:42 revelation augenrules[1097]: enabled 1
Jul 28 12:12:42 revelation augenrules[1097]: failure 1
Jul 28 12:12:42 revelation augenrules[1097]: pid 1082
Jul 28 12:12:42 revelation augenrules[1097]: rate_limit 0
Jul 28 12:12:42 revelation augenrules[1097]: backlog_limit 8192
Jul 28 12:12:42 revelation augenrules[1097]: lost 0
Jul 28 12:12:42 revelation augenrules[1097]: backlog 4
Jul 28 12:12:42 revelation augenrules[1097]: backlog_wait_time 60000
Jul 28 12:12:42 revelation augenrules[1097]: backlog_wait_time_actual 0
Jul 28 12:12:42 revelation augenrules[1097]: enabled 1
Jul 28 12:12:42 revelation augenrules[1097]: failure 1
Jul 28 12:12:42 revelation augenrules[1097]: pid 1082
Jul 28 12:12:42 revelation augenrules[1097]: rate_limit 0
Jul 28 12:12:42 revelation augenrules[1097]: backlog_limit 8192
Jul 28 12:12:42 revelation augenrules[1097]: lost 0
Jul 28 12:12:42 revelation augenrules[1097]: backlog 4
Jul 28 12:12:42 revelation augenrules[1097]: backlog_wait_time 60000
Jul 28 12:12:42 revelation augenrules[1097]: backlog_wait_time_actual 0
Jul 28 12:12:42 revelation augenrules[1097]: enabled 1
Jul 28 12:12:42 revelation augenrules[1097]: failure 1
Jul 28 12:12:42 revelation augenrules[1097]: pid 1082
Jul 28 12:12:42 revelation augenrules[1097]: rate_limit 0
Jul 28 12:12:42 revelation augenrules[1097]: backlog_limit 8192
Jul 28 12:12:42 revelation augenrules[1097]: lost 0
Jul 28 12:12:42 revelation augenrules[1097]: backlog 4
Jul 28 12:12:42 revelation augenrules[1097]: backlog_wait_time 60000
Jul 28 12:12:42 revelation augenrules[1097]: backlog_wait_time_actual 0
Jul 28 12:12:42 revelation systemd[1]: Started Security Auditing Service.
Jul 28 12:12:42 revelation systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jul 28 12:12:42 revelation systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jul 28 12:12:42 revelation systemd[1]: Reached target System Initialization.
Jul 28 12:12:42 revelation systemd[1]: Started CUPS Scheduler.
Jul 28 12:12:42 revelation systemd[1]: Started Daily rotation of log files.
Jul 28 12:12:42 revelation systemd[1]: Started Updates mlocate database every day.
Jul 28 12:12:42 revelation systemd[1]: Started Daily Cleanup of Temporary Directories.
Jul 28 12:12:42 revelation systemd[1]: Started daily update of the root trust anchor for DNSSEC.
Jul 28 12:12:42 revelation systemd[1]: Reached target Path Units.
Jul 28 12:12:42 revelation systemd[1]: Reached target Timer Units.
Jul 28 12:12:42 revelation systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Jul 28 12:12:42 revelation systemd[1]: Listening on CUPS Scheduler.
Jul 28 12:12:42 revelation systemd[1]: Listening on D-Bus System Message Bus Socket.
Jul 28 12:12:42 revelation systemd[1]: Listening on Open-iSCSI iscsid Socket.
Jul 28 12:12:42 revelation systemd[1]: Listening on Open-iSCSI iscsiuio Socket.
Jul 28 12:12:42 revelation systemd[1]: Listening on SSSD Kerberos Cache Manager responder socket.
Jul 28 12:12:42 revelation systemd[1]: Reached target Socket Units.
Jul 28 12:12:42 revelation systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 12:12:42 revelation systemd[1]: Reached target Basic System.
Jul 28 12:12:42 revelation systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Jul 28 12:12:43 revelation systemd[1]: Starting NTP client/server...
Jul 28 12:12:43 revelation systemd[1]: Starting Restore /run/initramfs on shutdown...
Jul 28 12:12:43 revelation systemd[1]: Starting IPv6 firewall with ip6tables...
Jul 28 12:12:43 revelation systemd[1]: Starting IPv4 firewall with iptables...
Jul 28 12:12:43 revelation systemd[1]: Started irqbalance daemon.
Jul 28 12:12:43 revelation systemd[1]: Starting Crash recovery kernel arming...
Jul 28 12:12:43 revelation systemd[1]: Started libstoragemgmt plug-in server daemon.
Jul 28 12:12:43 revelation systemd[1]: Starting Hardware Monitoring Sensors...
Jul 28 12:12:43 revelation systemd[1]: Low Memory Monitor was skipped because of an unmet condition check (ConditionPathExists=/proc/pressure).
Jul 28 12:12:43 revelation lm_sensors-modprobe-wrapper[1113]: No sensors with loadable kernel modules configured.
Jul 28 12:12:43 revelation lm_sensors-modprobe-wrapper[1113]: Please, run 'sensors-detect' as root in order to search for available sensors.
Jul 28 12:12:43 revelation systemd[1]: Started Machine Check Exception Logging Daemon.
Jul 28 12:12:43 revelation systemd[1]: Software RAID monitoring and management was skipped because of an unmet condition check (ConditionPathExists=/etc/mdadm.conf).
Jul 28 12:12:43 revelation systemd[1]: Starting Load CPU microcode update...
Jul 28 12:12:43 revelation systemd[1]: Auto-connect to subsystems on FC-NVME devices found during boot was skipped because of an unmet condition check (ConditionPathExists=/sys/class/fc/fc_udev_device/nvme_discovery).
Jul 28 12:12:43 revelation systemd[1]: Read-Only Sysroot Migration was skipped because of an unmet condition check (ConditionPathIsReadWrite=/sysroot).
Jul 28 12:12:43 revelation systemd[1]: Starting Authorization Manager...
Jul 28 12:12:43 revelation systemd[1]: Starting Postfix Mail Transport Agent...
Jul 28 12:12:43 revelation systemd[1]: Starting Power Profiles daemon...
Jul 28 12:12:43 revelation restorecon[1118]: /usr/sbin/restorecon: lstat(/var/spool/postfix/pid/master.pid) failed: No such file or directory
Jul 28 12:12:43 revelation avahi-daemon[1105]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70).
Jul 28 12:12:43 revelation systemd[1]: Starting System Logging Service...
Jul 28 12:12:43 revelation systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Jul 28 12:12:43 revelation systemd[1]: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Jul 28 12:12:43 revelation systemd[1]: OpenSSH ecdsa Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 12:12:43 revelation systemd[1]: OpenSSH ed25519 Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 12:12:43 revelation systemd[1]: OpenSSH rsa Server Key Generation was skipped because no trigger condition checks were met.
Jul 28 12:12:43 revelation systemd[1]: Reached target sshd-keygen.target.
Jul 28 12:12:43 revelation systemd[1]: Starting OpenSSH server daemon...
Jul 28 12:12:43 revelation systemd[1]: System Security Services Daemon was skipped because no trigger condition checks were met.
Jul 28 12:12:43 revelation systemd[1]: Reached target User and Group Name Lookups.
Jul 28 12:12:43 revelation systemd[1]: Starting Accounts Service...
Jul 28 12:12:43 revelation systemd[1]: Starting CUPS Scheduler...
Jul 28 12:12:43 revelation systemd[1]: Starting Switcheroo Control Proxy service...
Jul 28 12:12:43 revelation systemd[1]: Starting User Login Management...
Jul 28 12:12:43 revelation systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jul 28 12:12:43 revelation systemd[1]: Starting Permit User Sessions...
Jul 28 12:12:43 revelation systemd[1]: Starting Disk Manager...
Jul 28 12:12:43 revelation systemd[1]: Starting Daemon for power management...
Jul 28 12:12:43 revelation systemd[1]: VGAuth Service for open-vm-tools was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Jul 28 12:12:43 revelation systemd[1]: Service for virtual machines hosted on VMware was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Jul 28 12:12:43 revelation systemd[1]: Finished Restore /run/initramfs on shutdown.
Jul 28 12:12:43 revelation avahi-daemon[1105]: Successfully dropped root privileges.
Jul 28 12:12:43 revelation avahi-daemon[1105]: avahi-daemon 0.8 starting up.
Jul 28 12:12:43 revelation systemd[1]: Starting D-Bus System Message Bus...
Jul 28 12:12:43 revelation systemd[1]: Finished Permit User Sessions.
Jul 28 12:12:43 revelation systemd[1]: Started Deferred execution scheduler.
Jul 28 12:12:43 revelation systemd[1]: Started Command Scheduler.
Jul 28 12:12:43 revelation systemd[1]: Starting GNOME Display Manager...
Jul 28 12:12:43 revelation systemd[1]: Starting Hold until boot process finishes up...
Jul 28 12:12:43 revelation systemd-logind[1162]: New seat seat0.
Jul 28 12:12:43 revelation systemd-logind[1162]: Watching system buttons on /dev/input/event1 (Power Button)
Jul 28 12:12:43 revelation systemd-logind[1162]: Watching system buttons on /dev/input/event0 (Sleep Button)
Jul 28 12:12:43 revelation systemd-logind[1162]: Watching system buttons on /dev/input/event5 (Logitech USB Keyboard)
Jul 28 12:12:43 revelation systemd-logind[1162]: Watching system buttons on /dev/input/event7 (Logitech USB Keyboard System Control)
Jul 28 12:12:43 revelation chronyd[1201]: chronyd version 4.3 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +NTS +SECHASH +IPV6 +DEBUG)
Jul 28 12:12:43 revelation systemd[1]: Finished Hardware Monitoring Sensors.
Jul 28 12:12:43 revelation kernel: Warning: Deprecated Driver is detected: nft_compat will not be maintained in a future major release and may be disabled
Jul 28 12:12:43 revelation smartd[1150]: smartd 7.2 2020-12-30 r5155 [x86_64-linux-5.14.0-284.18.1.el9_2.x86_64] (local build)
Jul 28 12:12:43 revelation smartd[1150]: Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org
Jul 28 12:12:43 revelation smartd[1150]: Opened configuration file /etc/smartmontools/smartd.conf
Jul 28 12:12:43 revelation chronyd[1201]: Frequency 30.254 +/- 1.084 ppm read from /var/lib/chrony/drift
Jul 28 12:12:43 revelation chronyd[1201]: Using right/UTC timezone to obtain leap second data
Jul 28 12:12:43 revelation chronyd[1201]: Loaded seccomp filter (level 2)
Jul 28 12:12:43 revelation systemd[1]: Started NTP client/server.
Jul 28 12:12:43 revelation sshd[1151]: main: sshd: ssh-rsa algorithm is disabled
Jul 28 12:12:43 revelation smartd[1150]: Configuration file /etc/smartmontools/smartd.conf was parsed, found DEVICESCAN, scanning devices
Jul 28 12:12:43 revelation smartd[1150]: Device: /dev/bus/0 [megaraid_disk_15], opened
Jul 28 12:12:43 revelation rsyslogd[1131]: [origin software="rsyslogd" swVersion="8.2102.0-113.el9_2" x-pid="1131" x-info="https://www.rsyslog.com"] start
Jul 28 12:12:43 revelation systemd[1]: Started System Logging Service.
Jul 28 12:12:43 revelation smartd[1150]: Device: /dev/bus/0 [megaraid_disk_15], [SEAGATE  ST9600205SS      0004], lu id: 0x5000c5005fa39de7, S/N: 6XR49EGA0000M328HZ2Z, 600 GB
Jul 28 12:12:43 revelation cupsd[1160]: Listening to [v1.::1]:631 (IPv6)
Jul 28 12:12:43 revelation cupsd[1160]: Listening to 127.0.0.1:631 (IPv4)
Jul 28 12:12:43 revelation cupsd[1160]: Listening to /run/cups/cups.sock (Domain)
Jul 28 12:12:43 revelation cupsd[1160]: Remote access is disabled.
Jul 28 12:12:43 revelation cupsd[1160]: Loaded configuration file "/etc/cups/cupsd.conf"
Jul 28 12:12:43 revelation cupsd[1160]: Using default TempDir of /var/spool/cups/tmp...
Jul 28 12:12:43 revelation cupsd[1160]: Configured for up to 100 clients.
Jul 28 12:12:43 revelation cupsd[1160]: Allowing up to 100 client connections per host.
Jul 28 12:12:43 revelation cupsd[1160]: Using policy "default" as the default.
Jul 28 12:12:43 revelation cupsd[1160]: Full reload is required.
Jul 28 12:12:44 revelation systemd[1]: Started OpenSSH server daemon.
Jul 28 12:12:44 revelation systemd[1]: microcode.service: Deactivated successfully.
Jul 28 12:12:44 revelation systemd[1]: Finished Load CPU microcode update.
Jul 28 12:12:44 revelation ip6tables.init[1108]: ip6tables: Applying firewall rules: [  OK  ]
Jul 28 12:12:44 revelation polkitd[1117]: Started polkitd version 0.117
Jul 28 12:12:44 revelation systemd[1]: Finished IPv6 firewall with ip6tables.
Jul 28 12:12:44 revelation journal[1164]: udisks daemon version 2.9.4 starting
Jul 28 12:12:44 revelation cupsd[1160]: Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 40 types, 56 filters...
Jul 28 12:12:44 revelation smartd[1150]: Device: /dev/bus/0 [megaraid_disk_15], is SMART capable. Adding to "monitor" list.
Jul 28 12:12:44 revelation smartd[1150]: Device: /dev/bus/0 [megaraid_disk_16], opened
Jul 28 12:12:44 revelation smartd[1150]: Device: /dev/bus/0 [megaraid_disk_16], [SEAGATE  ST9600205SS      0004], lu id: 0x5000c5006851d64f, S/N: 6XR4KQV40000M345FLAP, 600 GB
Jul 28 12:12:45 revelation smartd[1150]: Device: /dev/bus/0 [megaraid_disk_16], is SMART capable. Adding to "monitor" list.
Jul 28 12:12:45 revelation smartd[1150]: Device: /dev/bus/0 [megaraid_disk_15], --capabilites is set, mail notification may not work.
Jul 28 12:12:45 revelation smartd[1150]: Device: /dev/bus/0 [megaraid_disk_16], --capabilites is set, mail notification may not work.
Jul 28 12:12:45 revelation smartd[1150]: Monitoring 0 ATA/SATA, 2 SCSI/SAS and 0 NVMe devices
Jul 28 12:12:45 revelation cupsd[1160]: Printer drivers are deprecated and will stop working in a future version of CUPS. See https://github.com/OpenPrinting/cups/issues/103
Jul 28 12:12:45 revelation cupsd[1160]: Loading job cache file "/var/cache/cups/job.cache"...
Jul 28 12:12:45 revelation iptables.init[1109]: iptables: Applying firewall rules: [  OK  ]
Jul 28 12:12:45 revelation systemd[1]: Finished IPv4 firewall with iptables.
Jul 28 12:12:45 revelation systemd[1]: Reached target Preparation for Network.
Jul 28 12:12:45 revelation systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Jul 28 12:12:45 revelation cupsd[1160]: Full reload complete.
Jul 28 12:12:45 revelation cupsd[1160]: Cleaning out old files in "/var/spool/cups/tmp".
Jul 28 12:12:45 revelation cupsd[1160]: Cleaning out old files in "/var/cache/cups".
Jul 28 12:12:45 revelation systemd[1]: Started Postfix Mail Transport Agent.
Jul 28 12:12:45 revelation systemd[1]: Started D-Bus System Message Bus.
Jul 28 12:12:45 revelation journal[1169]: Ready
Jul 28 12:12:45 revelation avahi-daemon[1105]: Successfully called chroot().
Jul 28 12:12:45 revelation systemd[1]: Started RealtimeKit Scheduling Policy Service.
Jul 28 12:12:45 revelation avahi-daemon[1105]: Successfully dropped remaining capabilities.
Jul 28 12:12:45 revelation systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Jul 28 12:12:45 revelation systemd[1]: Started Switcheroo Control Proxy service.
Jul 28 12:12:45 revelation systemd[1]: Started User Login Management.
Jul 28 12:12:45 revelation systemd[1]: Received SIGRTMIN+21 from PID 561 (plymouthd).
Jul 28 12:12:45 revelation systemd[1]: Started GNOME Display Manager.
Jul 28 12:12:45 revelation systemd[1]: Created slice User Slice of UID 1000.
Jul 28 12:12:45 revelation systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jul 28 12:12:45 revelation systemd[1]: Starting User Runtime Directory /run/user/1000...
Jul 28 12:12:45 revelation avahi-daemon[1105]: No service file found in /etc/avahi/services.
Jul 28 12:12:45 revelation systemd[1]: Started Daemon for power management.
Jul 28 12:12:45 revelation avahi-daemon[1105]: *** WARNING: Detected another IPv4 mDNS stack running on this host. This makes mDNS unreliable and is thus not recommended. ***
Jul 28 12:12:45 revelation avahi-daemon[1105]: *** WARNING: Detected another IPv6 mDNS stack running on this host. This makes mDNS unreliable and is thus not recommended. ***
Jul 28 12:12:45 revelation avahi-daemon[1105]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Jul 28 12:12:45 revelation avahi-daemon[1105]: New relevant interface lo.IPv6 for mDNS.
Jul 28 12:12:45 revelation avahi-daemon[1105]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Jul 28 12:12:45 revelation avahi-daemon[1105]: New relevant interface lo.IPv4 for mDNS.
Jul 28 12:12:45 revelation avahi-daemon[1105]: Network interface enumeration completed.
Jul 28 12:12:45 revelation avahi-daemon[1105]: Registering new address record for ::1 on lo.*.
Jul 28 12:12:45 revelation avahi-daemon[1105]: Registering new address record for 127.0.0.1 on lo.IPv4.
Jul 28 12:12:46 revelation systemd[1]: Finished User Runtime Directory /run/user/1000.
Jul 28 12:12:46 revelation systemd[1]: Starting User Manager for UID 1000...
Jul 28 12:12:46 revelation systemd[1]: Started Manage, Install and Generate Color Profiles.
Jul 28 12:12:46 revelation cupsd[1160]: Registering ICC color profiles for "EPSON_ET-4500_Series".
Jul 28 12:12:46 revelation cupsd[1160]: Listening to [v1.::1]:631 on fd 7...
Jul 28 12:12:46 revelation cupsd[1160]: Listening to 127.0.0.1:631 on fd 8...
Jul 28 12:12:46 revelation cupsd[1160]: Listening to /run/cups/cups.sock on fd 3...
Jul 28 12:12:46 revelation cupsd[1160]: Resuming new connection processing...
Jul 28 12:12:46 revelation systemd[1]: Started CUPS Scheduler.
Jul 28 12:12:46 revelation systemd[1]: Started Authorization Manager.
Jul 28 12:12:46 revelation accounts-daemon[1159]: started daemon version 0.6.55
Jul 28 12:12:46 revelation systemd[1]: Starting Modem Manager...
Jul 28 12:12:46 revelation systemd[1]: Started Accounts Service.
Jul 28 12:12:46 revelation systemd[1]: Started Power Profiles daemon.
Jul 28 12:12:46 revelation avahi-daemon[1105]: Server startup complete. Host name is revelation.local. Local service cookie is 346371573.
Jul 28 12:12:47 revelation systemd[1]: Created slice User Slice of UID 42.
Jul 28 12:12:47 revelation systemd[1]: Starting User Runtime Directory /run/user/42...
Jul 28 12:12:47 revelation systemd-logind[1162]: New session c1 of user gdm.
Jul 28 12:12:47 revelation systemd[1]: Finished User Runtime Directory /run/user/42.
Jul 28 12:12:47 revelation systemd[1]: Starting User Manager for UID 42...
Jul 28 12:12:47 revelation systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jul 28 12:12:47 revelation ModemManager[1889]: <info>  ModemManager (version 1.20.2-1.el9) starting in system bus...
Jul 28 12:12:47 revelation systemd[1897]: Failed to open configuration file '/var/lib/gdm/.config/systemd/user.conf': Permission denied
Jul 28 12:12:47 revelation kdumpctl[1127]: kdump: kexec: loaded kdump kernel
Jul 28 12:12:47 revelation kdumpctl[1127]: kdump: Starting kdump: [OK]
Jul 28 12:12:47 revelation systemd[1]: Finished Crash recovery kernel arming.
Jul 28 12:12:47 revelation rsyslogd[1131]: imjournal: journal files changed, reloading...  [v8.2102.0-113.el9_2 try https://www.rsyslog.com/e/0 ]
Jul 28 12:12:47 revelation systemd[1]: Started Disk Manager.
Jul 28 12:12:47 revelation journal[1164]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jul 28 12:12:47 revelation systemd[1927]: quadlet-generator[1927]: Can't read "/var/lib/gdm/.config/containers/systemd": open /var/lib/gdm/.config/containers/systemd: permission denied
Jul 28 12:12:47 revelation systemd-xdg-autostart-generator[1929]: Opening /var/lib/gdm/.config/autostart failed, ignoring: Permission denied
Jul 28 12:12:47 revelation cupsd[1160]: Expiring subscriptions...
Jul 28 12:12:47 revelation systemd-xdg-autostart-generator[1929]: Exec binary '/usr/libexec/at-spi-bus-launcher' does not exist: Permission denied
Jul 28 12:12:47 revelation systemd-xdg-autostart-generator[1929]: /etc/xdg/autostart/at-spi-dbus-bus.desktop: not generating unit, error parsing Exec= line: Permission denied
Jul 28 12:12:47 revelation systemd-xdg-autostart-generator[1930]: Exec binary '/usr/libexec/gnome-tweak-tool-lid-inhibitor' does not exist: No such file or directory
Jul 28 12:12:47 revelation systemd-xdg-autostart-generator[1930]: /home/rfs/.config/autostart/ignore-lid-switch-tweak.desktop: not generating unit, error parsing Exec= line: No such file or directory
Jul 28 12:12:47 revelation systemd[1897]: Failed to resolve symlink /var/lib/gdm/.config/systemd/user.control, ignoring: Permission denied
Jul 28 12:12:47 revelation systemd[1897]: Failed to resolve symlink /var/lib/gdm/.config/systemd/user, ignoring: Permission denied
Jul 28 12:12:47 revelation systemd[1897]: Failed to resolve symlink /var/lib/gdm/.local/share/systemd/user, ignoring: Permission denied
Jul 28 12:12:47 revelation systemd[1897]: Failed to open "/var/lib/gdm/.config/systemd/user.control", ignoring: Permission denied
Jul 28 12:12:47 revelation systemd[1897]: Failed to open "/var/lib/gdm/.config/systemd/user", ignoring: Permission denied
Jul 28 12:12:47 revelation systemd[1897]: Failed to open "/var/lib/gdm/.local/share/systemd/user", ignoring: Permission denied
Jul 28 12:12:48 revelation kernel: NET: Registered PF_QIPCRTR protocol family
Jul 28 12:12:48 revelation systemd[1]: Started Modem Manager.
Jul 28 12:12:48 revelation systemd[1897]: Queued start job for default target Main User Target.
Jul 28 12:12:48 revelation systemd[1732]: Queued start job for default target Main User Target.
Jul 28 12:12:48 revelation systemd[1897]: Created slice User Application Slice.
Jul 28 12:12:48 revelation systemd[1732]: Created slice User Application Slice.
Jul 28 12:12:48 revelation systemd[1897]: Mark boot as successful after the user session has run 2 minutes was skipped because of an unmet condition check (ConditionUser=!@system).
Jul 28 12:12:48 revelation systemd[1897]: Started Daily Cleanup of User's Temporary Directories.
Jul 28 12:12:48 revelation systemd[1897]: Reached target Paths.
Jul 28 12:12:48 revelation systemd[1897]: Reached target Timers.
Jul 28 12:12:48 revelation systemd[1732]: Started Mark boot as successful after the user session has run 2 minutes.
Jul 28 12:12:48 revelation systemd[1732]: Started Daily Cleanup of User's Temporary Directories.
Jul 28 12:12:48 revelation systemd[1732]: Reached target Paths.
Jul 28 12:12:48 revelation systemd[1732]: Reached target Timers.
Jul 28 12:12:48 revelation systemd[1897]: Starting D-Bus User Message Bus Socket...
Jul 28 12:12:48 revelation systemd[1732]: Starting D-Bus User Message Bus Socket...
Jul 28 12:12:48 revelation systemd[1897]: Listening on PipeWire PulseAudio.
Jul 28 12:12:48 revelation systemd[1897]: Listening on PipeWire Multimedia System Socket.
Jul 28 12:12:48 revelation systemd[1732]: Listening on PipeWire PulseAudio.
Jul 28 12:12:48 revelation systemd[1732]: Listening on PipeWire Multimedia System Socket.
Jul 28 12:12:48 revelation systemd[1897]: Starting Create User's Volatile Files and Directories...
Jul 28 12:12:48 revelation systemd[1732]: Starting Create User's Volatile Files and Directories...
Jul 28 12:12:48 revelation systemd[1944]: systemd-tmpfiles-setup.service: Failed to locate executable systemd-tmpfiles: No such file or directory
Jul 28 12:12:48 revelation systemd[1944]: systemd-tmpfiles-setup.service: Failed at step EXEC spawning systemd-tmpfiles: No such file or directory
Jul 28 12:12:48 revelation systemd[1897]: systemd-tmpfiles-setup.service: Main process exited, code=exited, status=203/EXEC
Jul 28 12:12:48 revelation systemd[1897]: systemd-tmpfiles-setup.service: Failed with result 'exit-code'.
Jul 28 12:12:48 revelation systemd[1897]: Failed to start Create User's Volatile Files and Directories.
Jul 28 12:12:48 revelation systemd[1897]: Listening on D-Bus User Message Bus Socket.
Jul 28 12:12:48 revelation systemd[1897]: Reached target Sockets.
Jul 28 12:12:48 revelation systemd[1897]: Reached target Basic System.
Jul 28 12:12:48 revelation systemd[1897]: Reached target Main User Target.
Jul 28 12:12:48 revelation systemd[1732]: Listening on D-Bus User Message Bus Socket.
Jul 28 12:12:48 revelation systemd[1897]: Startup finished in 801ms.
Jul 28 12:12:48 revelation systemd[1732]: Reached target Sockets.
Jul 28 12:12:48 revelation systemd[1]: Started User Manager for UID 42.
Jul 28 12:12:48 revelation systemd[1]: Started Session c1 of User gdm.
Jul 28 12:12:48 revelation systemd[1732]: Finished Create User's Volatile Files and Directories.
Jul 28 12:12:48 revelation systemd[1732]: Reached target Basic System.
Jul 28 12:12:48 revelation systemd[1732]: Reached target Main User Target.
Jul 28 12:12:48 revelation systemd[1732]: Startup finished in 1.479s.
Jul 28 12:12:48 revelation systemd[1]: Started User Manager for UID 1000.
Jul 28 12:12:48 revelation systemd[1897]: Starting D-Bus User Message Bus...
Jul 28 12:12:48 revelation dbus-broker-launch[1948]: Service file '/usr/share//dbus-1/services/sealert.service' is not named after the D-Bus name 'org.fedoraproject.Setroubleshootd'.
Jul 28 12:12:48 revelation dbus-broker-launch[1948]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jul 28 12:12:48 revelation dbus-broker-launch[1948]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jul 28 12:12:48 revelation systemd[1897]: Started D-Bus User Message Bus.
Jul 28 12:12:48 revelation journal[1948]: Ready
Jul 28 12:12:48 revelation systemd[1897]: selinux: avc:  denied  { status } for auid=42 uid=42 gid=42 cmdline="/usr/bin/dbus-broker-launch --scope user" function="method_subscribe" scontext=user_u:user_r:user_dbusd_t:s0-s0:c0.c1023 tcontext=user_u:user_r:user_t:s0-s0:c0.c1023 tclass=system permissive=0
Jul 28 12:12:49 revelation journal[1961]: Adding device '/dev/dri/card0' (mgag200) using atomic mode setting.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 12:12:49 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 12:12:49 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 12:12:49 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 12:12:49 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 12:12:49 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 12:12:49 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 12:12:49 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 12:12:49 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 12:12:49 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 12:12:49 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 12:12:49 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:12:49 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:12:49 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 12:12:49 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 12:12:49 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 12:12:49 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 12:12:49 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 12:12:49 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 12:12:49 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 12:12:49 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 12:12:49 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 12:12:49 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:49 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:12:49 revelation org.gnome.Shell.desktop[1961]: pci id for fd 13: 102b:0522, driver (null)
Jul 28 12:12:49 revelation org.gnome.Shell.desktop[1961]: MESA-LOADER: failed to open mgag200: /usr/lib64/dri/mgag200_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib64/dri, suffix _dri)
Jul 28 12:12:49 revelation org.gnome.Shell.desktop[1961]: failed to load driver: mgag200
Jul 28 12:12:50 revelation ModemManager[1889]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0': not supported by any plugin
Jul 28 12:12:50 revelation ModemManager[1889]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.0/0000:01:00.1': not supported by any plugin
Jul 28 12:12:50 revelation ModemManager[1889]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-3': not supported by any plugin
Jul 28 12:12:50 revelation org.gnome.Shell.desktop[1961]: pci id for fd 15: 102b:0522, driver (null)
Jul 28 12:12:50 revelation org.gnome.Shell.desktop[1961]: kmsro: driver missing
Jul 28 12:12:50 revelation journal[1961]: Failed to initialize accelerated iGPU/dGPU framebuffer sharing: Do not want to use software renderer (llvmpipe (LLVM 15.0.7, 128 bits)), falling back to CPU copy path
Jul 28 12:12:50 revelation journal[1961]: Created gbm renderer for '/dev/dri/card0'
Jul 28 12:12:50 revelation journal[1961]: Boot VGA GPU /dev/dri/card0 selected as primary
Jul 28 12:12:51 revelation journal[1961]: Disabling DMA buffer screen sharing for driver 'mgag200'.
Jul 28 12:12:51 revelation journal[1961]: Using public X11 display :1024, (using :1025 for managed services)
Jul 28 12:12:51 revelation journal[1961]: Using Wayland display name 'wayland-0'
Jul 28 12:12:51 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activating service name='org.a11y.Bus' requested by ':1.4' (uid=42 pid=1961 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:51 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Successfully activated service 'org.a11y.Bus'
Jul 28 12:12:52 revelation journal[1961]: Skipping parental controls support as it’s disabled
Jul 28 12:12:52 revelation journal[1961]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jul 28 12:12:52 revelation journal[1961]: Will monitor session c1
Jul 28 12:12:52 revelation systemd[1]: Starting Locale Service...
Jul 28 12:12:52 revelation systemd[1]: Started Locale Service.
Jul 28 12:12:53 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activating service name='org.freedesktop.portal.IBus' requested by ':1.6' (uid=42 pid=2037 comm="ibus-daemon --panel disable " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:53 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Successfully activated service 'org.freedesktop.portal.IBus'
Jul 28 12:12:53 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.3' (uid=42 pid=1961 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:53 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jul 28 12:12:53 revelation systemd[1897]: Created slice User Core Session Slice.
Jul 28 12:12:53 revelation systemd[1897]: Started PipeWire Multimedia Service.
Jul 28 12:12:53 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 12:12:53 revelation systemd[1897]: Started PipeWire PulseAudio.
Jul 28 12:12:53 revelation dbus-broker-launch[1169]: Activation request for 'org.freedesktop.GeoClue2' failed: The systemd unit 'geoclue.service' is masked.
Jul 28 12:12:53 revelation rtkit-daemon[1136]: Successfully made thread 2056 of process 2056 (/usr/bin/pipewire) owned by '42' high priority at nice level -11.
Jul 28 12:12:53 revelation rtkit-daemon[1136]: Successfully made thread 2058 of process 2058 (/usr/bin/pipewire-pulse) owned by '42' high priority at nice level -11.
Jul 28 12:12:53 revelation dbus-broker-launch[1169]: Activation request for 'org.freedesktop.PackageKit' failed: The systemd unit 'packagekit.service' is masked.
Jul 28 12:12:53 revelation rtkit-daemon[1136]: Successfully made thread 2057 of process 2057 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 12:12:53 revelation rtkit-daemon[1136]: Successfully made thread 2074 of process 2057 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 12:12:53 revelation rtkit-daemon[1136]: Successfully made thread 2077 of process 2058 (/usr/bin/pipewire-pulse) owned by '42' RT at priority 20.
Jul 28 12:12:53 revelation pipewire-pulse[2076]: Failed to load cookie file from cookie: Permission denied
Jul 28 12:12:53 revelation rtkit-daemon[1136]: Successfully made thread 2083 of process 2056 (/usr/bin/pipewire) owned by '42' RT at priority 20.
Jul 28 12:12:53 revelation pipewire-pulse[2076]: 536870912
Jul 28 12:12:53 revelation journal[2057]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:54 revelation journal[2057]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:54 revelation journal[2057]: Failed to set scheduler settings: Operation not permitted
Jul 28 12:12:54 revelation wireplumber[2057]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 12:12:54 revelation journal[2057]: disconnected from pipewire
Jul 28 12:12:54 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 12:12:54 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 12:12:54 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activating service name='org.gnome.Shell.Notifications' requested by ':1.3' (uid=42 pid=1961 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:54 revelation /usr/libexec/gdm-wayland-session[2025]: dbus-daemon[2025]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=42 pid=1961 comm="/usr/bin/gnome-shell " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:54 revelation /usr/libexec/gdm-wayland-session[2025]: dbus-daemon[2025]: Successfully activated service 'org.a11y.atspi.Registry'
Jul 28 12:12:54 revelation /usr/libexec/gdm-wayland-session[2094]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul 28 12:12:54 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Successfully activated service 'org.gnome.Shell.Notifications'
Jul 28 12:12:54 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 1.
Jul 28 12:12:54 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 12:12:54 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 12:12:54 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activating service name='org.freedesktop.systemd1' requested by ':1.19' (uid=42 pid=2106 comm="/usr/libexec/gsd-sharing " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:54 revelation cupsd[1160]: Expiring subscriptions...
Jul 28 12:12:54 revelation journal[1961]: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 12:12:54 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Jul 28 12:12:54 revelation journal[2106]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 12:12:54 revelation journal[2106]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 12:12:54 revelation journal[2106]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jul 28 12:12:54 revelation rtkit-daemon[1136]: Successfully made thread 2126 of process 2126 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 12:12:54 revelation systemd[1]: Starting Hostname Service...
Jul 28 12:12:54 revelation rtkit-daemon[1136]: Successfully made thread 2186 of process 2126 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 12:12:54 revelation journal[2126]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:54 revelation journal[2126]: Failed to set scheduler settings: Operation not permitted
Jul 28 12:12:54 revelation journal[2126]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:54 revelation wireplumber[2126]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 12:12:54 revelation journal[2126]: disconnected from pipewire
Jul 28 12:12:54 revelation journal[1961]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jul 28 12:12:54 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 12:12:54 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 12:12:54 revelation systemd[1]: Started Hostname Service.
Jul 28 12:12:54 revelation org.gnome.Shell.desktop[2035]: Failed to initialize glamor, falling back to sw
Jul 28 12:12:54 revelation cupsd[1160]: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok
Jul 28 12:12:54 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 12:12:54 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 2.
Jul 28 12:12:54 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 12:12:54 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 12:12:54 revelation rtkit-daemon[1136]: Successfully made thread 2214 of process 2214 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 12:12:54 revelation rtkit-daemon[1136]: Successfully made thread 2217 of process 2214 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 12:12:54 revelation journal[2214]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:54 revelation journal[2214]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:54 revelation journal[2214]: Failed to set scheduler settings: Operation not permitted
Jul 28 12:12:54 revelation wireplumber[2214]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 12:12:54 revelation journal[2214]: disconnected from pipewire
Jul 28 12:12:54 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 12:12:54 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 12:12:54 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 12:12:54 revelation systemd[1]: Starting Realm and Domain Configuration...
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 3.
Jul 28 12:12:55 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 12:12:55 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 12:12:55 revelation rtkit-daemon[1136]: Successfully made thread 2231 of process 2231 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 12:12:55 revelation rtkit-daemon[1136]: Successfully made thread 2234 of process 2231 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 12:12:55 revelation journal[2231]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:55 revelation journal[2231]: Failed to set scheduler settings: Operation not permitted
Jul 28 12:12:55 revelation journal[2231]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:55 revelation wireplumber[2231]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 12:12:55 revelation journal[2231]: disconnected from pipewire
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 12:12:55 revelation systemd[1]: Started Realm and Domain Configuration.
Jul 28 12:12:55 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activating service name='org.gnome.Shell.Screencast' requested by ':1.25' (uid=42 pid=2117 comm="/usr/libexec/gsd-media-keys " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 4.
Jul 28 12:12:55 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 12:12:55 revelation systemd[1897]: Started Multimedia Service Session Manager.
Jul 28 12:12:55 revelation rtkit-daemon[1136]: Successfully made thread 2270 of process 2270 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11.
Jul 28 12:12:55 revelation rtkit-daemon[1136]: Successfully made thread 2274 of process 2270 (/usr/bin/wireplumber) owned by '42' RT at priority 20.
Jul 28 12:12:55 revelation journal[2270]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:55 revelation journal[2270]: failed to create directory /var/lib/gdm/.local/state/wireplumber: Not a directory
Jul 28 12:12:55 revelation journal[2270]: Failed to set scheduler settings: Operation not permitted
Jul 28 12:12:55 revelation wireplumber[2270]: failed to start systemd logind monitor: -13 (Permission denied)
Jul 28 12:12:55 revelation journal[2270]: disconnected from pipewire
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Main process exited, code=exited, status=70/SOFTWARE
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 12:12:55 revelation gnome-session-binary[1953]: Entering running state
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Scheduled restart job, restart counter is at 5.
Jul 28 12:12:55 revelation systemd[1897]: Stopped Multimedia Service Session Manager.
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Start request repeated too quickly.
Jul 28 12:12:55 revelation systemd[1897]: wireplumber.service: Failed with result 'exit-code'.
Jul 28 12:12:55 revelation systemd[1897]: Failed to start Multimedia Service Session Manager.
Jul 28 12:12:55 revelation cupsd[1160]: Expiring subscriptions...
Jul 28 12:12:56 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:12:56 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 12:12:56 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:12:56 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:12:56 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activating service name='org.gnome.ScreenSaver' requested by ':1.24' (uid=42 pid=2122 comm="/usr/libexec/gsd-power " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:56 revelation journal[2117]: Failed to grab accelerator for keybinding settings:hibernate
Jul 28 12:12:56 revelation journal[2117]: Failed to grab accelerator for keybinding settings:playback-repeat
Jul 28 12:12:56 revelation journal[1961]: ATK Bridge is disabled but a11y has already been enabled.
Jul 28 12:12:56 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Successfully activated service 'org.gnome.ScreenSaver'
Jul 28 12:12:56 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Activating service name='org.freedesktop.portal.IBus' requested by ':1.34' (uid=42 pid=2304 comm="ibus-daemon --panel disable -r --xim " label="system_u:system_r:xdm_t:s0-s0:c0.c1023")
Jul 28 12:12:56 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Successfully activated service 'org.freedesktop.portal.IBus'
Jul 28 12:12:56 revelation org.gnome.Shell.desktop[2325]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Jul 28 12:12:56 revelation org.gnome.Shell.desktop[2325]: > Warning:          Unsupported maximum keycode 708, clipping.
Jul 28 12:12:56 revelation org.gnome.Shell.desktop[2325]: >                   X11 cannot support keycodes above 255.
Jul 28 12:12:56 revelation org.gnome.Shell.desktop[2325]: Errors from xkbcomp are not fatal to the X server
Jul 28 12:12:56 revelation journal[1961]: Registering session with GDM
Jul 28 12:12:56 revelation systemd[1]: Received SIGRTMIN+21 from PID 561 (plymouthd).
Jul 28 12:12:56 revelation systemd[1]: Finished Hold until boot process finishes up.
Jul 28 12:12:56 revelation systemd[1]: Reached target Multi-User System.
Jul 28 12:12:56 revelation systemd[1]: Reached target Graphical Interface.
Jul 28 12:12:56 revelation systemd[1]: Starting Record Runlevel Change in UTMP...
Jul 28 12:12:56 revelation systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
Jul 28 12:12:56 revelation systemd[1]: Finished Record Runlevel Change in UTMP.
Jul 28 12:12:56 revelation systemd[1]: Startup finished in 1.429s (kernel) + 3.342s (initrd) + 19.003s (userspace) = 23.774s.
Jul 28 12:12:56 revelation /usr/libexec/gdm-wayland-session[1952]: dbus-daemon[1952]: [session uid=42 pid=1952] Successfully activated service 'org.gnome.Shell.Screencast'
Jul 28 12:13:24 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 12:13:25 revelation systemd[1]: systemd-localed.service: Deactivated successfully.
Jul 28 12:13:25 revelation systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jul 28 12:13:25 revelation cupsd[1160]: Saving subscriptions.conf...
Jul 28 12:13:25 revelation cupsd[1160]: Expiring subscriptions...
Jul 28 12:13:56 revelation systemd[1]: realmd.service: Deactivated successfully.
Jul 28 12:14:31 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 12:14:31 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 12:14:34 revelation systemd-logind[1162]: New session 3 of user rfs.
Jul 28 12:14:34 revelation systemd[1]: Started Session 3 of User rfs.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (--) Log file renamed from "/home/rfs/.local/share/xorg/Xorg.pid-2395.log" to "/home/rfs/.local/share/xorg/Xorg.0.log"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: X.Org X Server 1.20.11
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: X Protocol Version 11, Revision 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: Build Operating System:  5.4.188-104.359.amzn2.x86_64
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: Current Operating System: Linux revelation 5.14.0-284.18.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 22 17:36:46 UTC 2023 x86_64
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: Kernel command line: BOOT_IMAGE=/vmlinuz-5.14.0-284.18.1.el9_2.x86_64 root=/dev/mapper/vg_revelationr9-root ro crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M resume=/dev/mapper/vg_revelationr9-swap rd.lvm.lv=vg_revelationr9/root rd.lvm.lv=vg_revelationr9/swap net.ifnames=0 biosdevname=0 LANG=en_GB.UTF-8
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: Build Date: 21 February 2023  12:00:00AM
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: Build ID: xorg-x11-server 1.20.11-17.el9
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: Current version of pixman: 0.40.0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011Before reporting problems, check http://wiki.x.org
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011to make sure that you have the latest version.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: Markers: (--) probed, (**) from config file, (==) default setting,
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011(++) from command line, (!!) notice, (II) informational,
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Log file: "/home/rfs/.local/share/xorg/Xorg.0.log", Time: Fri Jul 28 12:14:34 2023
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Using config directory: "/etc/X11/xorg.conf.d"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) ServerLayout "Builtin Default Layout"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) |-->Screen "Builtin Default mga Screen 0" (0)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) |   |-->Monitor "My monitor"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Automatically adding devices
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Automatically enabling devices
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Automatically adding GPU devices
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Automatically binding GPU devices
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) FontPath set to:
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011catalogue:/etc/X11/fontpath.d,
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011built-ins
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) ModulePath set to "/usr/lib64/xorg/modules"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) The server relies on udev to provide the list of input devices.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011If no devices become available, reconfigure udev or disable AutoAddDevices.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Loader magic: 0x561f8f5fcd40
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Module ABI versions:
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011X.Org ANSI C Emulation: 0.4
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011X.Org Video Driver: 24.1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011X.Org XInput driver : 24.1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011X.Org Server Extension : 10.0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (++) using VT number 2
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 12 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (--) PCI:*(7@0:0:0) 102b:0522:8086:0101 rev 2, Mem @ 0xb0000000/16777216, 0xb1800000/16384, 0xb1000000/8388608, BIOS @ 0x????????/65536
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) LoadModule: "glx"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Module glx: vendor="X.Org Foundation"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011compiled for 1.20.11, module version = 1.0.0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011ABI class: X.Org Server Extension, version 10.0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Matched mga as autoconfigured driver 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Matched modesetting as autoconfigured driver 1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Matched fbdev as autoconfigured driver 2
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Matched vesa as autoconfigured driver 3
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) Assigned the driver to the xf86ConfigLayout
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) LoadModule: "mga"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (WW) Warning, couldn't open module mga
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (EE) Failed to load module "mga" (module does not exist, 0)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) LoadModule: "modesetting"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Module modesetting: vendor="X.Org Foundation"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011compiled for 1.20.11, module version = 1.20.11
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011Module class: X.Org Video Driver
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011ABI class: X.Org Video Driver, version 24.1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) LoadModule: "fbdev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Loading /usr/lib64/xorg/modules/drivers/fbdev_drv.so
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Module fbdev: vendor="X.Org Foundation"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011compiled for 1.20.11, module version = 0.5.0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011Module class: X.Org Video Driver
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011ABI class: X.Org Video Driver, version 24.1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) LoadModule: "vesa"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (WW) Warning, couldn't open module vesa
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) FBDEV: driver for framebuffer: fbdev
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): using drv /dev/dri/card0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) modeset(0): RGB weight 888
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) modeset(0): Default visual is TrueColor
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Loading sub module "glamoregl"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) LoadModule: "glamoregl"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Loading /usr/lib64/xorg/modules/libglamoregl.so
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Module glamoregl: vendor="X.Org Foundation"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011compiled for 1.20.11, module version = 1.0.1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011ABI class: X.Org ANSI C Emulation, version 0.4
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: pci id for fd 12: 102b:0522, driver (null)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: MESA-LOADER: failed to open mgag200: /usr/lib64/dri/mgag200_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib64/dri, suffix _dri)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: failed to load driver: mgag200
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: pci id for fd 13: 102b:0522, driver (null)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: kmsro: driver missing
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Refusing to try glamor on llvmpipe
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (EE) modeset(0): glamor initialization failed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): ShadowFB: preferred NO, enabled NO
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 12:14:34 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 12:14:34 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 12:14:34 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 12:14:34 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 12:14:34 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 12:14:34 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 12:14:34 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 12:14:34 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 12:14:34 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 12:14:34 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 12:14:34 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 12:14:34 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 12:14:34 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 12:14:34 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 12:14:34 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 12:14:34 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 12:14:34 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 12:14:34 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 12:14:34 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Output VGA-1 using monitor section My monitor
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 12:14:34 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 12:14:34 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 12:14:34 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 12:14:34 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 12:14:34 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 12:14:34 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 12:14:34 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 12:14:34 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 12:14:34 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 12:14:34 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 12:14:34 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:14:34 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:34 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 12:14:34 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 12:14:34 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 12:14:34 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 12:14:34 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 12:14:34 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 12:14:34 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 12:14:34 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 12:14:34 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): EDID for output VGA-1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Manufacturer: GSM  Model: 597c  Serial#: 293078
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Year: 2013  Week: 1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): EDID Version: 1.3
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Sync:  Separate  Composite
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Max Image Size [cm]: horiz.: 48  vert.: 27
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Gamma: 2.20
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): First detailed timing is preferred mode
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): redX: 0.637 redY: 0.331   greenX: 0.309 greenY: 0.620
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): blueX: 0.152 blueY: 0.069   whiteX: 0.313 whiteY: 0.329
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Supported established timings:
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 720x400@70Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 640x480@60Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 640x480@75Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 800x600@56Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 800x600@60Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 800x600@75Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 832x624@75Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 1024x768@60Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 1024x768@75Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 1280x1024@75Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): 1152x864@75Hz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Manufacturer's mask: 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Supported standard timings:
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #1: hsize: 1280  vsize 720  refresh: 60  vid: 49281
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #2: hsize: 1280  vsize 800  refresh: 60  vid: 129
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #4: hsize: 1440  vsize 900  refresh: 60  vid: 149
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #5: hsize: 1400  vsize 1050  refresh: 60  vid: 16528
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #6: hsize: 1600  vsize 900  refresh: 60  vid: 49321
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #7: hsize: 1680  vsize 1050  refresh: 60  vid: 179
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Supported detailed timing:
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): clock: 148.5 MHz   Image Size:  480 x 270 mm
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Monitor name: 22EN33
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Serial No: 301NDSK8M078
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): EDID (in hex):
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #01100ffffffffffff001e6d7c59d6780400
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #011011701036c301b78ea3335a3544f9e27
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #011115054a76b80714f81c0810081809500
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #0119040a9c0b300023a801871382d40582c
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #0114500e00e1100001e000000fd00384b1e
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #011530f000a202020202020000000fc0032
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #01132454e33330a202020202020000000ff
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): #011003330314e44534b384d3037380a00b3
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Printing probed modes for output VGA-1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz UP)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x720"x60.0   74.44  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.7 kHz)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Output VGA-1 connected
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Using user preference for initial modes
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Output VGA-1 using initial mode 1440x900 +0+0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) modeset(0): DPI set to (96, 96)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Loading sub module "fb"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) LoadModule: "fb"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Module "fb" already built-in
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) UnloadModule: "fbdev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Unloading fbdev
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) modeset(0): Backing store enabled
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) modeset(0): Silken mouse enabled
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (==) modeset(0): DPMS enabled
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension Generic Event Extension
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension SHAPE
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension MIT-SHM
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XInputExtension
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XTEST
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension BIG-REQUESTS
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension SYNC
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XKEYBOARD
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XC-MISC
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension SECURITY
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XFIXES
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension RENDER
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension RANDR
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension COMPOSITE
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension DAMAGE
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension MIT-SCREEN-SAVER
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension DOUBLE-BUFFER
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension RECORD
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension DPMS
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension Present
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension DRI3
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension X-Resource
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XVideo
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XVideo-MotionCompensation
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension SELinux
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) SELinux: Disabled by boolean
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension GLX
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) AIGLX: Screen 0 is not DRI2 capable
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) IGLX: Loaded and initialized swrast
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) GLX: Initialized DRISWRAST GL provider for screen 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XFree86-VidModeExtension
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension XFree86-DGA
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Initializing extension DRI2
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Damage tracking initialized
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Setting screen physical size to 381 x 238
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device Power Button (/dev/input/event1)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Power Button: Applying InputClass "evdev keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Power Button: Applying InputClass "system-keyboard"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) LoadModule: "libinput"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Loading /usr/lib64/xorg/modules/input/libinput_drv.so
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Module libinput: vendor="X.Org Foundation"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011compiled for 1.20.11, module version = 1.0.1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011Module class: X.Org XInput Driver
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: #011ABI class: X.Org XInput driver, version 24.1
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Using input driver 'libinput' for 'Power Button'
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 20 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Power Button: always reports core events
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "Device" "/dev/input/event1"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "_source" "server/udev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event1  - Power Button: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event1  - Power Button: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event1  - Power Button: device removed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "xkb_layout" "gb"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event1  - Power Button: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event1  - Power Button: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Sleep Button: Applying InputClass "system-keyboard"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Using input driver 'libinput' for 'Sleep Button'
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 23 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Sleep Button: always reports core events
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "Device" "/dev/input/event0"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "_source" "server/udev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event0  - Sleep Button: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event0  - Sleep Button: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event0  - Sleep Button: device removed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 7)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "xkb_layout" "gb"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event0  - Sleep Button: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event0  - Sleep Button: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/event3)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "evdev keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "libinput keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "system-keyboard"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Using input driver 'libinput' for 'American Megatrends Inc. Virtual Keyboard and Mouse'
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 24 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: always reports core events
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "Device" "/dev/input/event3"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "_source" "server/udev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device removed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.0/0003:046B:FF10.0002/input/input3/event3"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) XINPUT: Adding extended input device "American Megatrends Inc. Virtual Keyboard and Mouse" (type: KEYBOARD, id 8)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "xkb_layout" "gb"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/event4)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "evdev pointer catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: Applying InputClass "libinput pointer catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Using input driver 'libinput' for 'American Megatrends Inc. Virtual Keyboard and Mouse'
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 25 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: always reports core events
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "Device" "/dev/input/event4"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "_source" "server/udev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Mouse
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a pointer
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device removed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.2/usb5/5-1/5-1:1.1/0003:046B:FF10.0003/input/input4/event4"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) XINPUT: Adding extended input device "American Megatrends Inc. Virtual Keyboard and Mouse" (type: MOUSE, id 9)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "AccelerationScheme" "none"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) selected scheme none/0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) acceleration factor: 2.000
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) American Megatrends Inc. Virtual Keyboard and Mouse: (accel) acceleration threshold: 4
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: is tagged by udev as: Mouse
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device is a pointer
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device American Megatrends Inc. Virtual Keyboard and Mouse (/dev/input/mouse1)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) No input driver specified, ignoring this device.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) This device may have been added with another device file.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event2)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Optical Mouse: Applying InputClass "libinput pointer catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Using input driver 'libinput' for 'Logitech USB Optical Mouse'
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 26 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Optical Mouse: always reports core events
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "Device" "/dev/input/event2"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "_source" "server/udev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event2  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event2  - Logitech USB Optical Mouse: device set to 1000 DPI
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event2  - Logitech USB Optical Mouse: device is a pointer
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event2  - Logitech USB Optical Mouse: device removed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.1/usb7/7-1/7-1:1.0/0003:046D:C05A.0001/input/input2/event2"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 10)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "AccelerationScheme" "none"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Optical Mouse: (accel) selected scheme none/0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event2  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event2  - Logitech USB Optical Mouse: device set to 1000 DPI
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event2  - Logitech USB Optical Mouse: device is a pointer
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) No input driver specified, ignoring this device.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) This device may have been added with another device file.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device Logitech USB Keyboard (/dev/input/event5)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard: Applying InputClass "evdev keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard: Applying InputClass "libinput keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard: Applying InputClass "system-keyboard"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard'
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 27 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard: always reports core events
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "Device" "/dev/input/event5"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "_source" "server/udev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event5  - Logitech USB Keyboard: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event5  - Logitech USB Keyboard: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event5  - Logitech USB Keyboard: device removed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/0003:046D:C31C.0004/input/input5/event5"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard" (type: KEYBOARD, id 11)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "xkb_layout" "gb"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event5  - Logitech USB Keyboard: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event5  - Logitech USB Keyboard: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device Logitech USB Keyboard Consumer Control (/dev/input/event6)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "evdev keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard Consumer Control: Applying InputClass "system-keyboard"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard Consumer Control'
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 28 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard Consumer Control: always reports core events
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "Device" "/dev/input/event6"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "_source" "server/udev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event6  - Logitech USB Keyboard Consumer Control: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event6  - Logitech USB Keyboard Consumer Control: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event6  - Logitech USB Keyboard Consumer Control: device removed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input6/event6"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard Consumer Control" (type: KEYBOARD, id 12)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "xkb_layout" "gb"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event6  - Logitech USB Keyboard Consumer Control: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event6  - Logitech USB Keyboard Consumer Control: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device Logitech USB Keyboard System Control (/dev/input/event7)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard System Control: Applying InputClass "evdev keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard System Control: Applying InputClass "libinput keyboard catchall"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard System Control: Applying InputClass "system-keyboard"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) Using input driver 'libinput' for 'Logitech USB Keyboard System Control'
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 29 paused 0
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Logitech USB Keyboard System Control: always reports core events
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "Device" "/dev/input/event7"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "_source" "server/udev"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event7  - Logitech USB Keyboard System Control: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event7  - Logitech USB Keyboard System Control: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event7  - Logitech USB Keyboard System Control: device removed
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/0003:046D:C31C.0005/input/input7/event7"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) XINPUT: Adding extended input device "Logitech USB Keyboard System Control" (type: KEYBOARD, id 13)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "xkb_layout" "gb"
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event7  - Logitech USB Keyboard System Control: is tagged by udev as: Keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) event7  - Logitech USB Keyboard System Control: device is a keyboard
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) No input driver specified, ignoring this device.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (II) This device may have been added with another device file.
Jul 28 12:14:34 revelation /usr/libexec/gdm-x-session[2395]: (EE) modeset(0): failed to set mode: Invalid argument
Jul 28 12:14:34 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 12:14:34 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 12:14:34 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:34 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:34 revelation systemd[1732]: Starting D-Bus User Message Bus...
Jul 28 12:14:34 revelation dbus-broker-launch[2490]: Service file '/usr/share//dbus-1/services/sealert.service' is not named after the D-Bus name 'org.fedoraproject.Setroubleshootd'.
Jul 28 12:14:34 revelation dbus-broker-launch[2490]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jul 28 12:14:34 revelation dbus-broker-launch[2490]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jul 28 12:14:34 revelation systemd[1732]: Started D-Bus User Message Bus.
Jul 28 12:14:34 revelation journal[2490]: Ready
Jul 28 12:14:35 revelation systemd[1732]: Starting Accessibility services bus...
Jul 28 12:14:35 revelation systemd[1732]: Started Accessibility services bus.
Jul 28 12:14:35 revelation at-spi-bus-launcher[2600]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored
Jul 28 12:14:35 revelation at-spi-bus-launcher[2600]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored
Jul 28 12:14:35 revelation journal[2600]: Ready
Jul 28 12:14:35 revelation gnome-session[2594]: gnome-session-check-accelerated: GL Helper exited with code 512
Jul 28 12:14:35 revelation gnome-session[2652]: libEGL warning: DRI2: failed to authenticate
Jul 28 12:14:35 revelation gnome-session[2594]: gnome-session-check-accelerated: GLES Helper exited with code 512
Jul 28 12:14:35 revelation systemd[1732]: Created slice Slice /app/gnome-session-manager.
Jul 28 12:14:35 revelation systemd[1732]: Created slice User Core Session Slice.
Jul 28 12:14:35 revelation systemd[1732]: Reached target GNOME X11 Session.
Jul 28 12:14:35 revelation systemd[1732]: Reached target GNOME Shell.
Jul 28 12:14:35 revelation systemd[1732]: GNOME Initial Setup Copy Worker was skipped because of an unmet condition check (ConditionPathExists=!/home/rfs/.config/gnome-initial-setup-done).
Jul 28 12:14:35 revelation systemd[1732]: Reached target Session services which should run early before the graphical session is brought up.
Jul 28 12:14:35 revelation systemd[1732]: Starting Monitor Session leader for GNOME Session...
Jul 28 12:14:35 revelation systemd[1732]: Started Monitor Session leader for GNOME Session.
Jul 28 12:14:35 revelation systemd[1732]: Reached target Tasks to be run before GNOME Session starts.
Jul 28 12:14:35 revelation systemd[1732]: Starting GNOME Session Manager (session: gnome)...
Jul 28 12:14:35 revelation gnome-session[2707]: gnome-session-binary[2707]: WARNING: Could not parse desktop file ignore-lid-switch-tweak.desktop or it references a not found TryExec binary
Jul 28 12:14:35 revelation gnome-session-binary[2707]: WARNING: Could not parse desktop file ignore-lid-switch-tweak.desktop or it references a not found TryExec binary
Jul 28 12:14:35 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:35 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:35 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:35 revelation gnome-keyring-ssh.desktop[2718]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Jul 28 12:14:35 revelation systemd[1732]: Started GNOME Session Manager (session: gnome).
Jul 28 12:14:35 revelation systemd[1732]: Reached target GNOME Session Manager is ready.
Jul 28 12:14:35 revelation systemd[1732]: Starting GNOME Shell on Wayland...
Jul 28 12:14:35 revelation systemd[1732]: Starting GNOME Shell on X11...
Jul 28 12:14:35 revelation systemd[1732]: org.gnome.Shell@wayland.service: Skipped due to 'exec-condition'.
Jul 28 12:14:35 revelation systemd[1732]: Condition check resulted in GNOME Shell on Wayland being skipped.
Jul 28 12:14:35 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Using EDID range info for horizontal sync
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Using EDID range info for vertical refresh
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 12:14:35 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 12:14:35 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 12:14:35 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 12:14:35 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 12:14:35 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 12:14:35 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 12:14:35 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 12:14:35 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 12:14:35 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 12:14:35 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 12:14:35 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:14:35 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:35 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 12:14:35 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 12:14:35 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 12:14:35 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 12:14:35 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 12:14:35 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 12:14:35 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 12:14:35 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 12:14:35 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 12:14:35 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:35 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 12:14:35 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 12:14:35 revelation systemd[1732]: Starting Virtual filesystem service...
Jul 28 12:14:36 revelation systemd[1732]: Started Virtual filesystem service.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=800 c=83500 ...
Jul 28 12:14:36 revelation kernel: Returning 23924130 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=720 c=74250 ...
Jul 28 12:14:36 revelation kernel: Returning 21600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=720 c=74250 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=78750 ...
Jul 28 12:14:36 revelation kernel: Returning 23048780 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=78750 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1024 v=768 c=65000 ...
Jul 28 12:14:36 revelation kernel: Returning 18433179 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1024 v=768 c=65000 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=832 v=624 c=57284 ...
Jul 28 12:14:36 revelation kernel: Returning 15118996 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=832 v=624 c=57284 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=49500 ...
Jul 28 12:14:36 revelation kernel: Returning 14062500 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=49500 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=40000 ...
Jul 28 12:14:36 revelation kernel: Returning 11309351 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=40000 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=800 v=600 c=36000 ...
Jul 28 12:14:36 revelation kernel: Returning 10546875 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=800 v=600 c=36000 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=31500 ...
Jul 28 12:14:36 revelation kernel: Returning 9000000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=31500 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=640 v=480 c=25175 ...
Jul 28 12:14:36 revelation kernel: Returning 7192857 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=640 v=480 c=25175 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=720 v=400 c=28320 ...
Jul 28 12:14:36 revelation kernel: Returning 7884186 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_OK from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=720 v=400 c=28320 ...
Jul 28 12:14:36 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:14:36 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1920 v=1080 c=148500 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1920 v=1080 c=148500 ...
Jul 28 12:14:36 revelation kernel: Returning 48600000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1152 v=864 c=108000 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1152 v=864 c=108000 ...
Jul 28 12:14:36 revelation kernel: Returning 29160000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=108000 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=108000 ...
Jul 28 12:14:36 revelation kernel: Returning 30730106 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1440 v=900 c=106500 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1440 v=900 c=106500 ...
Jul 28 12:14:36 revelation kernel: Returning 30318019 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1400 v=1050 c=121750 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1400 v=1050 c=121750 ...
Jul 28 12:14:36 revelation kernel: Returning 34440746 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1600 v=900 c=108000 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1600 v=900 c=108000 ...
Jul 28 12:14:36 revelation kernel: Returning 33750000 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1680 v=1050 c=146250 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1680 v=1050 c=146250 ...
Jul 28 12:14:36 revelation kernel: Returning 41312225 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation kernel: Entered mgag200_mode_config_mode_valid with h=1280 v=1024 c=135000 ...
Jul 28 12:14:36 revelation kernel: Entered mga_vga_calculate_mode_bandwidth with h=1280 v=1024 c=135000 ...
Jul 28 12:14:36 revelation kernel: Returning 38412633 as bandwidth from mga_vga_calculate_mode_bandwidth.
Jul 28 12:14:36 revelation kernel: ...returning MODE_BAD from mgag200_mode_config_mode_valid.
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): EDID vendor "GSM", prod id 22908
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Using hsync ranges from config file
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Using vrefresh ranges from config file
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Printing DDC gathered Modelines:
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x720"x60.0   74.48  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.8 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1400x1050"x0.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
Jul 28 12:14:36 revelation /usr/libexec/gdm-x-session[2395]: (II) modeset(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
Jul 28 12:14:36 revelation journal[2724]: ATK Bridge is disabled but a11y has already been enabled.
Jul 28 12:14:36 revelation journal[2724]: Skipping parental controls support as it’s disabled
Jul 28 12:14:36 revelation journal[2724]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jul 28 12:14:36 revelation journal[2724]: Will monitor session 3
Jul 28 12:14:36 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.freedesktop.portal.IBus.
Jul 28 12:14:36 revelation systemd[1732]: Started dbus-:1.2-org.freedesktop.portal.IBus@0.service.
Jul 28 12:14:36 revelation systemd[1732]: Created slice Slice /app/dbus-:1.6-org.a11y.atspi.Registry.
Jul 28 12:14:36 revelation systemd[1732]: Started dbus-:1.6-org.a11y.atspi.Registry@0.service.
Jul 28 12:14:36 revelation at-spi2-registryd[2823]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul 28 12:14:36 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.CalendarServer.
Jul 28 12:14:36 revelation systemd[1732]: Started dbus-:1.2-org.gnome.Shell.CalendarServer@0.service.
Jul 28 12:14:36 revelation systemd[1732]: Starting sandboxed app permission store...
Jul 28 12:14:36 revelation systemd[1732]: Started sandboxed app permission store.
Jul 28 12:14:36 revelation systemd[1732]: Started PipeWire Multimedia Service.
Jul 28 12:14:36 revelation systemd[1732]: Started Multimedia Service Session Manager.
Jul 28 12:14:36 revelation systemd[1732]: Started PipeWire PulseAudio.
Jul 28 12:14:36 revelation journal[2724]: g_strsplit: assertion 'string != NULL' failed
Jul 28 12:14:36 revelation rtkit-daemon[1136]: Successfully made thread 2832 of process 2832 (/usr/bin/pipewire) owned by '1000' high priority at nice level -11.
Jul 28 12:14:36 revelation rtkit-daemon[1136]: Successfully made thread 2833 of process 2833 (/usr/bin/wireplumber) owned by '1000' high priority at nice level -11.
Jul 28 12:14:36 revelation rtkit-daemon[1136]: Successfully made thread 2834 of process 2834 (/usr/bin/pipewire-pulse) owned by '1000' high priority at nice level -11.
Jul 28 12:14:37 revelation systemd[1732]: Starting Evolution source registry...
Jul 28 12:14:37 revelation rtkit-daemon[1136]: Successfully made thread 2848 of process 2833 (/usr/bin/wireplumber) owned by '1000' RT at priority 20.
Jul 28 12:14:37 revelation journal[2724]: Telepathy is not available, chat integration will be disabled.
Jul 28 12:14:37 revelation rtkit-daemon[1136]: Successfully made thread 2852 of process 2832 (/usr/bin/pipewire) owned by '1000' RT at priority 20.
Jul 28 12:14:37 revelation journal[2833]: Failed to set scheduler settings: Operation not permitted
Jul 28 12:14:37 revelation systemd[1732]: Starting Virtual filesystem service - disk device monitor...
Jul 28 12:14:37 revelation rtkit-daemon[1136]: Successfully made thread 2853 of process 2834 (/usr/bin/pipewire-pulse) owned by '1000' RT at priority 20.
Jul 28 12:14:37 revelation systemd[1732]: Started Virtual filesystem service - disk device monitor.
Jul 28 12:14:37 revelation systemd[1732]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jul 28 12:14:37 revelation systemd[1732]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jul 28 12:14:37 revelation systemd[1732]: Starting Virtual filesystem service - digital camera monitor...
Jul 28 12:14:37 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.gnome.OnlineAccounts.
Jul 28 12:14:37 revelation systemd[1732]: Started dbus-:1.2-org.gnome.OnlineAccounts@0.service.
Jul 28 12:14:37 revelation systemd[1732]: Started Virtual filesystem service - digital camera monitor.
Jul 28 12:14:37 revelation systemd[1732]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jul 28 12:14:37 revelation systemd[1732]: Started Evolution source registry.
Jul 28 12:14:37 revelation systemd[1732]: Starting Evolution calendar service...
Jul 28 12:14:37 revelation systemd[1732]: Started Evolution calendar service.
Jul 28 12:14:37 revelation systemd[1732]: Starting User preferences database...
Jul 28 12:14:37 revelation systemd[1732]: Starting Evolution address book service...
Jul 28 12:14:37 revelation systemd[1732]: Started User preferences database.
Jul 28 12:14:37 revelation systemd[1732]: Started Evolution address book service.
Jul 28 12:14:37 revelation pipewire-pulse[2851]: 536870912
Jul 28 12:14:38 revelation journal[2886]: goa-daemon version 3.40.0 starting
Jul 28 12:14:38 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.gnome.Identity.
Jul 28 12:14:38 revelation systemd[1732]: Started dbus-:1.2-org.gnome.Identity@0.service.
Jul 28 12:14:38 revelation systemd[1732]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jul 28 12:14:38 revelation systemd[1]: Starting SSSD Kerberos Cache Manager...
Jul 28 12:14:38 revelation systemd[1]: Started SSSD Kerberos Cache Manager.
Jul 28 12:14:38 revelation sssd_kcm[2940]: Starting up
Jul 28 12:14:38 revelation journal[2932]: GoaKerberosIdentityManager: Using polling for change notification for credential cache type 'KCM'
Jul 28 12:14:38 revelation systemd[1]: Starting Hostname Service...
Jul 28 12:14:38 revelation systemd[1]: Started Hostname Service.
Jul 28 12:14:38 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.Notifications.
Jul 28 12:14:38 revelation systemd[1732]: Started dbus-:1.2-org.gnome.Shell.Notifications@0.service.
Jul 28 12:14:38 revelation journal[2724]: Unable to connect to ibus: Could not connect: Connection refused
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME Shell on X11.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME Session is initialized.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME session X11 services.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME Session (session: gnome).
Jul 28 12:14:38 revelation systemd[1732]: Starting Signal initialization done to GNOME Session Manager...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME accessibility service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME color management service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME date & time service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME maintenance of expirable data service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME keyboard configuration service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME keyboard shortcuts service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME power management service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME printer notifications service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME RFKill support service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME FreeDesktop screensaver service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME file sharing service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME smartcard service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME sound sample caching service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME USB protection service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME Wacom tablet support service...
Jul 28 12:14:38 revelation systemd[1732]: Starting GNOME XSettings service...
Jul 28 12:14:38 revelation gnome-session-binary[2707]: Entering running state
Jul 28 12:14:38 revelation systemd[1732]: Finished Signal initialization done to GNOME Session Manager.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME accessibility service.
Jul 28 12:14:38 revelation gnome-session[2707]: gnome-session-binary[2707]: GnomeDesktop-WARNING: Could not create transient scope for PID 2977: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2977 does not exist.
Jul 28 12:14:38 revelation gnome-session-binary[2707]: GnomeDesktop-WARNING: Could not create transient scope for PID 2977: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 2977 does not exist.
Jul 28 12:14:38 revelation vmware-user.desktop[3037]: vmware-user: could not open /proc/fs/vmblock/dev
Jul 28 12:14:38 revelation gnome-session[2707]: gnome-session-binary[2707]: GnomeDesktop-WARNING: Could not create transient scope for PID 3004: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 3004 does not exist.
Jul 28 12:14:38 revelation gnome-session-binary[2707]: GnomeDesktop-WARNING: Could not create transient scope for PID 3004: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 3004 does not exist.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME FreeDesktop screensaver service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME file sharing service.
Jul 28 12:14:38 revelation gnome-session[2707]: gnome-session-binary[2707]: GnomeDesktop-WARNING: Could not create transient scope for PID 3017: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 3017 does not exist.
Jul 28 12:14:38 revelation gnome-session-binary[2707]: GnomeDesktop-WARNING: Could not create transient scope for PID 3017: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 3017 does not exist.
Jul 28 12:14:38 revelation systemd[1]: Starting Locale Service...
Jul 28 12:14:38 revelation cupsd[1160]: Expiring subscriptions...
Jul 28 12:14:38 revelation journal[2724]: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 12:14:38 revelation systemd[1]: Started Locale Service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME RFKill support service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME maintenance of expirable data service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME date & time service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME sound sample caching service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME keyboard configuration service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME color management service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME power management service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME keyboard shortcuts service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME Wacom tablet support service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME smartcard service.
Jul 28 12:14:38 revelation systemd[1732]: Started GNOME USB protection service.
Jul 28 12:14:38 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:38 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:38 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:38 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:38 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:38 revelation systemd[1732]: Started Application launched by gnome-session-binary.
Jul 28 12:14:38 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.gnome.ScreenSaver.
Jul 28 12:14:38 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.gnome.Shell.Screencast.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME accessibility target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME color management target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME date & time target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME maintenance of expirable data target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME keyboard configuration target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME keyboard shortcuts target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME power management target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME RFKill support target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME FreeDesktop screensaver target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME file sharing target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME smartcard target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME sound sample caching target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME USB protection target.
Jul 28 12:14:38 revelation systemd[1732]: Reached target GNOME Wacom tablet support target.
Jul 28 12:14:38 revelation systemd[1732]: Started dbus-:1.2-org.gnome.ScreenSaver@0.service.
Jul 28 12:14:38 revelation systemd[1732]: Started dbus-:1.2-org.gnome.Shell.Screencast@0.service.
Jul 28 12:14:38 revelation libcanberra-login-sound.desktop[2993]: Failed to play sound: File or data not found
Jul 28 12:14:39 revelation journal[2724]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jul 28 12:14:39 revelation journal[3005]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable
Jul 28 12:14:39 revelation journal[2982]: Failed to grab accelerator for keybinding settings:playback-random
Jul 28 12:14:39 revelation journal[2982]: Failed to grab accelerator for keybinding settings:playback-repeat
Jul 28 12:14:39 revelation journal[2982]: Failed to grab accelerator for keybinding settings:hibernate
Jul 28 12:14:39 revelation journal[2982]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jul 28 12:14:39 revelation journal[2968]: failed to set screen _ICC_PROFILE: Failed to open file “/var/lib/gdm/.local/share/icc/edid-66b5c77ef7d21f8dc680fbd7761de738.icc”: Permission denied
Jul 28 12:14:39 revelation gjs[3086]: libEGL warning: DRI2: failed to authenticate
Jul 28 12:14:39 revelation cupsd[1160]: Expiring subscriptions...
Jul 28 12:14:39 revelation systemd[1732]: Started GNOME XSettings service.
Jul 28 12:14:39 revelation cupsd[1160]: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok
Jul 28 12:14:39 revelation systemd[1732]: GNOME session X11 services is inactive.
Jul 28 12:14:39 revelation systemd[1732]: Reached target GNOME XSettings target.
Jul 28 12:14:39 revelation systemd[1732]: Started GNOME printer notifications service.
Jul 28 12:14:39 revelation systemd[1732]: Reached target GNOME printer notifications target.
Jul 28 12:14:39 revelation systemd[1732]: Reached target GNOME Session.
Jul 28 12:14:39 revelation systemd[1732]: Reached target GNOME X11 Session (session: gnome).
Jul 28 12:14:39 revelation systemd[1732]: Reached target Current graphical user session.
Jul 28 12:14:39 revelation systemd[1732]: GNOME Initial Setup was skipped because of an unmet condition check (ConditionPathExists=!/home/rfs/.config/gnome-initial-setup-done).
Jul 28 12:14:39 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.freedesktop.FileManager1.
Jul 28 12:14:39 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.gnome.Nautilus.
Jul 28 12:14:39 revelation systemd[1732]: Created slice Slice /app/dbus-:1.2-org.gnome.NautilusPreviewer.
Jul 28 12:14:39 revelation systemd[1732]: Started dbus-:1.2-org.freedesktop.FileManager1@0.service.
Jul 28 12:14:39 revelation systemd[1732]: Started dbus-:1.2-org.gnome.Nautilus@0.service.
Jul 28 12:14:39 revelation systemd[1732]: Started dbus-:1.2-org.gnome.NautilusPreviewer@0.service.
Jul 28 12:14:39 revelation journal[2724]: GNOME Shell started at Fri Jul 28 2023 12:14:38 GMT+0100 (British Summer Time)
Jul 28 12:14:39 revelation journal[2724]: Registering session with GDM
Jul 28 12:14:39 revelation gdm-wayland-session[1946]: GLib: Source ID 2 was not found when attempting to remove it
Jul 28 12:14:39 revelation cupsd[1160]: REQUEST localhost - - "POST / HTTP/1.1" 200 151 Cancel-Subscription successful-ok
Jul 28 12:14:39 revelation gdm-launch-environment][1890]: GLib-GObject: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
Jul 28 12:14:39 revelation systemd-logind[1162]: Session c1 logged out. Waiting for processes to exit.
Jul 28 12:14:39 revelation journal[2968]: failed to connect to device: Failed to connect to missing device /org/freedesktop/ColorManager/devices/xrandr_LG_Electronics_22EN33_301NDSK8M078_gdm_42
Jul 28 12:14:39 revelation systemd[1]: session-c1.scope: Deactivated successfully.
Jul 28 12:14:39 revelation systemd[1]: session-c1.scope: Consumed 6.018s CPU time.
Jul 28 12:14:39 revelation systemd-logind[1162]: Removed session c1.
Jul 28 12:14:39 revelation gdm[1176]: Gdm: Child process -1946 was already dead.
Jul 28 12:14:39 revelation systemd[1]: Starting Firmware update daemon...
Jul 28 12:14:40 revelation cupsd[1160]: Expiring subscriptions...
Jul 28 12:14:40 revelation journal[3238]: JS ERROR: ReferenceError: WebKit2 is not defined#012vfunc_startup@resource:///org/gnome/NautilusPreviewer/js/ui/application.js:89:9#012main@resource:///org/gnome/NautilusPreviewer/js/ui/main.js:57:24#012run@resource:///org/gnome/gjs/modules/script/package.js:206:19#012@/usr/libexec/org.gnome.NautilusPreviewer:9:17
Jul 28 12:14:41 revelation nautilus[3236]: Failed to register: Unable to acquire bus name 'org.gnome.Nautilus'
Jul 28 12:14:41 revelation systemd[1732]: dbus-:1.2-org.freedesktop.FileManager1@0.service: Main process exited, code=exited, status=1/FAILURE
Jul 28 12:14:41 revelation systemd[1732]: dbus-:1.2-org.freedesktop.FileManager1@0.service: Failed with result 'exit-code'.
Jul 28 12:14:41 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:14:41 revelation fwupd[3259]: 11:14:41.487 FuEngine             failed to add device /sys/devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1:1.0/host5/target5:0:0/5:0:0:0/block/sr0: failed to open /dev/sr0: No medium found
Jul 28 12:14:41 revelation systemd[1]: Started Firmware update daemon.
Jul 28 12:14:42 revelation journal[2990]: plugin fwupd took 2.2 seconds to do setup
Jul 28 12:14:42 revelation journal[2990]: enabled plugins: appstream, fwupd, os-release, packagekit-refresh, flatpak, hardcoded-blocklist, hardcoded-popular, modalias, packagekit, rewrite-resource, provenance, systemd-updates, generic-updates, packagekit-refine-repos, provenance-license, icons
Jul 28 12:14:42 revelation journal[2990]: disabled plugins: dummy, fedora-langpacks, fedora-pkgdb-collections, repos
Jul 28 12:14:42 revelation journal[2990]: failed to set proxy: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 12:14:42 revelation journal[2990]: failed to set proxies: GDBus.Error:org.freedesktop.DBus.Error.NameHasNoOwner: Could not activate remote peer.
Jul 28 12:14:42 revelation journal[2990]: Only 0 apps for recent list, hiding
Jul 28 12:14:42 revelation journal[2990]: failed to get featured apps: no apps to show
Jul 28 12:14:42 revelation journal[2990]: Only 0 apps for popular list, hiding
Jul 28 12:14:42 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:14:50 revelation systemd[1]: Stopping User Manager for UID 42...
Jul 28 12:14:50 revelation systemd[1897]: Activating special unit Exit the Session...
Jul 28 12:14:50 revelation systemd[1897]: Stopped target Main User Target.
Jul 28 12:14:50 revelation systemd[1897]: Stopping PipeWire PulseAudio...
Jul 28 12:14:50 revelation systemd[1897]: Stopped PipeWire PulseAudio.
Jul 28 12:14:50 revelation systemd[1897]: Stopping PipeWire Multimedia Service...
Jul 28 12:14:50 revelation systemd[1897]: Stopped PipeWire Multimedia Service.
Jul 28 12:14:50 revelation systemd[1897]: Removed slice User Core Session Slice.
Jul 28 12:14:50 revelation systemd[1897]: Stopped target Basic System.
Jul 28 12:14:50 revelation systemd[1897]: Stopped target Paths.
Jul 28 12:14:50 revelation systemd[1897]: Stopped target Sockets.
Jul 28 12:14:50 revelation systemd[1897]: Stopped target Timers.
Jul 28 12:14:50 revelation systemd[1897]: Stopped Daily Cleanup of User's Temporary Directories.
Jul 28 12:14:50 revelation systemd[1897]: Closed PipeWire PulseAudio.
Jul 28 12:14:50 revelation systemd[1897]: Closed PipeWire Multimedia System Socket.
Jul 28 12:14:50 revelation dbus-broker[1949]: Dispatched 38 messages @ 26(±42)μs / message.
Jul 28 12:14:50 revelation systemd[1897]: Stopping D-Bus User Message Bus...
Jul 28 12:14:50 revelation systemd[1897]: Stopped D-Bus User Message Bus.
Jul 28 12:14:50 revelation systemd[1897]: Closed D-Bus User Message Bus Socket.
Jul 28 12:14:50 revelation systemd[1897]: Removed slice User Application Slice.
Jul 28 12:14:50 revelation systemd[1897]: Reached target Shutdown.
Jul 28 12:14:50 revelation systemd[1897]: Finished Exit the Session.
Jul 28 12:14:50 revelation systemd[1897]: Reached target Exit the Session.
Jul 28 12:14:50 revelation systemd[1]: user@42.service: Deactivated successfully.
Jul 28 12:14:50 revelation systemd[1]: Stopped User Manager for UID 42.
Jul 28 12:14:50 revelation systemd[1]: Stopping User Runtime Directory /run/user/42...
Jul 28 12:14:50 revelation systemd[1]: run-user-42.mount: Deactivated successfully.
Jul 28 12:14:50 revelation systemd[1]: user-runtime-dir@42.service: Deactivated successfully.
Jul 28 12:14:50 revelation systemd[1]: Stopped User Runtime Directory /run/user/42.
Jul 28 12:14:50 revelation systemd[1]: Removed slice User Slice of UID 42.
Jul 28 12:14:50 revelation systemd[1]: user-42.slice: Consumed 6.465s CPU time.
Jul 28 12:14:50 revelation systemd[1732]: Starting Mark boot as successful...
Jul 28 12:14:50 revelation grub2-set-bootflag[3368]: Error reading from /boot/grub2/grubenv: Invalid argument
Jul 28 12:14:50 revelation systemd[1732]: grub-boot-success.service: Main process exited, code=exited, status=1/FAILURE
Jul 28 12:14:50 revelation systemd[1732]: grub-boot-success.service: Failed with result 'exit-code'.
Jul 28 12:14:50 revelation systemd[1732]: Failed to start Mark boot as successful.
Jul 28 12:14:53 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "fd" "20"
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) event1  - Power Button: device removed
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "fd" "23"
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) event0  - Sleep Button: device removed
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "fd" "24"
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) event3  - American Megatrends Inc. Virtual Keyboard and Mouse: device removed
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "fd" "25"
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) event4  - American Megatrends Inc. Virtual Keyboard and Mouse: device removed
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "fd" "26"
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) event2  - Logitech USB Optical Mouse: device removed
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "fd" "27"
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) event5  - Logitech USB Keyboard: device removed
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "fd" "28"
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) event6  - Logitech USB Keyboard Consumer Control: device removed
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (**) Option "fd" "29"
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) event7  - Logitech USB Keyboard System Control: device removed
Jul 28 12:15:01 revelation kernel: Entered mgag200_simple_display_pipe_mode_valid with h=1280 v=800 c=83500 ...
Jul 28 12:15:01 revelation kernel: Forcing return of MODE_OK.
Jul 28 12:15:01 revelation kernel: Returning MODE_OK from mgag200_simple_display_pipe_mode_valid.
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 13:70
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 13:67
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 13:69
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 13:65
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 13:66
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 13:71
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 226:0
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 13:68
Jul 28 12:15:01 revelation /usr/libexec/gdm-x-session[2395]: (II) systemd-logind: got pause for 13:64
Jul 28 12:15:01 revelation systemd[1]: Started Getty on tty3.
Jul 28 12:15:01 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 12:15:08 revelation systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jul 28 12:15:08 revelation systemd[1]: systemd-localed.service: Deactivated successfully.
Jul 28 12:15:10 revelation cupsd[1160]: Saving subscriptions.conf...
Jul 28 12:15:10 revelation cupsd[1160]: Expiring subscriptions...
Jul 28 12:15:18 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 12:15:18 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 12:15:20 revelation systemd-logind[1162]: New session 4 of user rfs.
Jul 28 12:15:20 revelation systemd[1]: Started Session 4 of User rfs.
Jul 28 12:15:38 revelation systemd[1732]: Starting Virtual filesystem metadata service...
Jul 28 12:15:38 revelation systemd[1732]: Started Virtual filesystem metadata service.
Jul 28 12:15:48 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 12:16:07 revelation systemd[1]: Starting Fingerprint Authentication Daemon...
Jul 28 12:16:07 revelation systemd[1]: Started Fingerprint Authentication Daemon.
Jul 28 12:16:09 revelation su[3539]: (to root) rfs on tty3
Jul 28 12:16:37 revelation systemd[1]: fprintd.service: Deactivated successfully.
Jul 28 12:18:15 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:18:15 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:18:16 revelation dracut[4079]: dracut-057-21.git20230214.el9
Jul 28 12:18:16 revelation systemd[1]: Created slice Slice /system/dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged.
Jul 28 12:18:16 revelation systemd[1]: Started dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@0.service.
Jul 28 12:18:16 revelation dracut[4081]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:18:17 revelation dracut[4081]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:17 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation dracut[4081]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: memstrack is not available
Jul 28 12:18:18 revelation dracut[4081]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation dracut[4081]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:18 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:18 revelation dracut[4081]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:18:18 revelation dracut[4081]: memstrack is not available
Jul 28 12:18:18 revelation dracut[4081]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:18:18 revelation dracut[4081]: *** Including module: bash ***
Jul 28 12:18:18 revelation dracut[4081]: *** Including module: systemd ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: systemd-initrd ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: systemd-sysusers ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: nss-softokn ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: dbus-broker ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: dbus ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: i18n ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: network-manager ***
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: network ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: ifcfg ***
Jul 28 12:18:19 revelation dracut[4081]: *** Including module: drm ***
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:19 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:20 revelation dracut[4081]: *** Including module: plymouth ***
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:20 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:21 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:21 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:22 revelation dracut[4081]: *** Including module: prefixdevname ***
Jul 28 12:18:22 revelation dracut[4081]: *** Including module: dm ***
Jul 28 12:18:22 revelation dracut[4081]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:18:22 revelation dracut[4081]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:18:22 revelation dracut[4081]: Skipping udev rule: 55-dm.rules
Jul 28 12:18:22 revelation dracut[4081]: Failed to detect udev version!
Jul 28 12:18:22 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:22 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:22 revelation dracut[4081]: *** Including module: kernel-modules ***
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:23 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: kernel-modules-extra ***
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: kernel-network-modules ***
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: lvm ***
Jul 28 12:18:24 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:24 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:24 revelation dracut[4081]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:18:24 revelation dracut[4081]: Skipping udev rule: 56-lvm.rules
Jul 28 12:18:24 revelation dracut[4081]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: resume ***
Jul 28 12:18:24 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:24 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: rootfs-block ***
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: terminfo ***
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: udev-rules ***
Jul 28 12:18:24 revelation dracut[4081]: Failed to detect udev version!
Jul 28 12:18:24 revelation dracut[4081]: Skipping udev rule: 91-permissions.rules
Jul 28 12:18:24 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:18:24 revelation dracut[4081]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:18:24 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:24 revelation dracut[4081]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: dracut-systemd ***
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: usrmount ***
Jul 28 12:18:24 revelation dracut[4081]: *** Including module: base ***
Jul 28 12:18:25 revelation dracut[4081]: *** Including module: fs-lib ***
Jul 28 12:18:25 revelation dracut[4081]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:18:25 revelation dracut[4081]:  microcode_ctl module: mangling fw_dir
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:18:25 revelation dracut[4081]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:18:25 revelation dracut[4081]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 12:18:25 revelation dracut[4081]: *** Including module: shutdown ***
Jul 28 12:18:25 revelation dracut[4081]: *** Including modules done ***
Jul 28 12:18:25 revelation dracut[4081]: *** Installing kernel module dependencies ***
Jul 28 12:18:25 revelation dracut[4081]: "depmod -a 5.14.0-284.18.1.el9_2.x86_64" failed.
Jul 28 12:18:25 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:18:25 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:18:26 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:18:26 revelation setroubleshoot[3602]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:18:33 revelation systemd[1732]: Created slice User Background Tasks Slice.
Jul 28 12:18:33 revelation systemd[1732]: Starting Cleanup of User's Temporary Files and Directories...
Jul 28 12:18:33 revelation systemd[1732]: Finished Cleanup of User's Temporary Files and Directories.
Jul 28 12:18:36 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@0.service: Deactivated successfully.
Jul 28 12:18:36 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@0.service: Consumed 1.173s CPU time.
Jul 28 12:18:36 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:18:36 revelation systemd[1]: setroubleshootd.service: Consumed 1.615s CPU time.
Jul 28 12:20:01 revelation dbus-broker-launch[2492]: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 12:20:01 revelation dbus-broker-launch[1643]: avc:  op=setenforce lsm=selinux enforcing=0 res=1
Jul 28 12:20:06 revelation journal[2724]: ../gobject/gsignal.c:2732: instance '0x559b7b72a080' has no handler with id '12309'
Jul 28 12:20:29 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:20:29 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:20:29 revelation systemd[1]: Started dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@1.service.
Jul 28 12:20:30 revelation setroubleshoot[8768]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:20:30 revelation setroubleshoot[8768]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:20:36 revelation setroubleshoot[8768]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:20:36 revelation setroubleshoot[8768]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:20:46 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@1.service: Deactivated successfully.
Jul 28 12:20:46 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@1.service: Consumed 1.010s CPU time.
Jul 28 12:20:46 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:21:52 revelation dracut[11730]: dracut-057-21.git20230214.el9
Jul 28 12:21:52 revelation dracut[11732]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-162.6.1.el9_1.0.1.x86_64.tmp 5.14.0-162.6.1.el9_1.0.1.x86_64
Jul 28 12:21:53 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:21:53 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:21:53 revelation dracut[11732]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:21:53 revelation systemd[1]: Started dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@2.service.
Jul 28 12:21:54 revelation dracut[11732]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: memstrack is not available
Jul 28 12:21:54 revelation dracut[11732]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:21:54 revelation setroubleshoot[11844]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:21:54 revelation setroubleshoot[11844]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:21:54 revelation dracut[11732]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:21:54 revelation dracut[11732]: memstrack is not available
Jul 28 12:21:54 revelation dracut[11732]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:21:54 revelation dracut[11732]: *** Including module: bash ***
Jul 28 12:21:54 revelation dracut[11732]: *** Including module: systemd ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: systemd-initrd ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: systemd-sysusers ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: nss-softokn ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: dbus-broker ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: dbus ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: i18n ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: network-manager ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: network ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: ifcfg ***
Jul 28 12:21:55 revelation dracut[11732]: *** Including module: drm ***
Jul 28 12:21:56 revelation dracut[11732]: *** Including module: plymouth ***
Jul 28 12:21:56 revelation setroubleshoot[11844]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:21:56 revelation setroubleshoot[11844]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:21:57 revelation dracut[11732]: *** Including module: prefixdevname ***
Jul 28 12:21:57 revelation dracut[11732]: *** Including module: dm ***
Jul 28 12:21:58 revelation dracut[11732]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:21:58 revelation dracut[11732]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:21:58 revelation dracut[11732]: Skipping udev rule: 55-dm.rules
Jul 28 12:21:58 revelation dracut[11732]: *** Including module: kernel-modules ***
Jul 28 12:21:58 revelation setroubleshoot[11844]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:21:58 revelation setroubleshoot[11844]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: kernel-modules-extra ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: kernel-network-modules ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: lvm ***
Jul 28 12:21:59 revelation dracut[11732]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:21:59 revelation dracut[11732]: Skipping udev rule: 56-lvm.rules
Jul 28 12:21:59 revelation dracut[11732]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: resume ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: rootfs-block ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: terminfo ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: udev-rules ***
Jul 28 12:21:59 revelation setroubleshoot[11844]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:21:59 revelation setroubleshoot[11844]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:21:59 revelation dracut[11732]: Skipping udev rule: 91-permissions.rules
Jul 28 12:21:59 revelation dracut[11732]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:21:59 revelation dracut[11732]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: dracut-systemd ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: usrmount ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: base ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: fs-lib ***
Jul 28 12:21:59 revelation dracut[11732]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:21:59 revelation dracut[11732]:  microcode_ctl module: mangling fw_dir
Jul 28 12:21:59 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:22:00 revelation dracut[11732]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-162.6.1.el9_1.0.1.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:22:00 revelation dracut[11732]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-162.6.1.el9_1.0.1.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-162.6.1.el9_1.0.1.x86_64 /lib/firmware"
Jul 28 12:22:00 revelation dracut[11732]: *** Including module: shutdown ***
Jul 28 12:22:00 revelation dracut[11732]: *** Including modules done ***
Jul 28 12:22:00 revelation dracut[11732]: *** Installing kernel module dependencies ***
Jul 28 12:22:01 revelation dracut[11732]: *** Installing kernel module dependencies done ***
Jul 28 12:22:01 revelation dracut[11732]: *** Resolving executable dependencies ***
Jul 28 12:22:02 revelation dracut[11732]: *** Resolving executable dependencies done ***
Jul 28 12:22:02 revelation dracut[11732]: *** Hardlinking files ***
Jul 28 12:22:02 revelation dracut[11732]: Mode:           real
Jul 28 12:22:02 revelation dracut[11732]: Files:          1504
Jul 28 12:22:02 revelation dracut[11732]: Linked:         8 files
Jul 28 12:22:02 revelation dracut[11732]: Compared:       0 xattrs
Jul 28 12:22:02 revelation dracut[11732]: Compared:       408 files
Jul 28 12:22:02 revelation dracut[11732]: Saved:          378.03 KiB
Jul 28 12:22:02 revelation dracut[11732]: Duration:       0.026352 seconds
Jul 28 12:22:02 revelation dracut[11732]: *** Hardlinking files done ***
Jul 28 12:22:02 revelation dracut[11732]: *** Generating early-microcode cpio image ***
Jul 28 12:22:02 revelation dracut[11732]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:02 revelation dracut[11732]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:02 revelation dracut[11732]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:02 revelation dracut[11732]: *** Store current command line parameters ***
Jul 28 12:22:02 revelation dracut[11732]: *** Stripping files ***
Jul 28 12:22:02 revelation dracut[11732]: *** Stripping files done ***
Jul 28 12:22:02 revelation dracut[11732]: *** Creating image file '/boot/initramfs-5.14.0-162.6.1.el9_1.0.1.x86_64.tmp' ***
Jul 28 12:22:02 revelation dracut[11732]: dracut: using auto-determined compression method 'pigz'
Jul 28 12:22:09 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@2.service: Deactivated successfully.
Jul 28 12:22:09 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@2.service: Consumed 1.049s CPU time.
Jul 28 12:22:09 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:22:12 revelation dracut[11732]: *** Creating initramfs image file '/boot/initramfs-5.14.0-162.6.1.el9_1.0.1.x86_64.tmp' done ***
Jul 28 12:22:18 revelation dracut[22080]: dracut-057-21.git20230214.el9
Jul 28 12:22:18 revelation dracut[22082]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:22:19 revelation dracut[22082]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: memstrack is not available
Jul 28 12:22:20 revelation dracut[22082]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:22:20 revelation dracut[22082]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:22:20 revelation dracut[22082]: memstrack is not available
Jul 28 12:22:20 revelation dracut[22082]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:22:20 revelation dracut[22082]: *** Including module: bash ***
Jul 28 12:22:20 revelation dracut[22082]: *** Including module: systemd ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: systemd-initrd ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: systemd-sysusers ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: nss-softokn ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: dbus-broker ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: dbus ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: i18n ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: network-manager ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: network ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: ifcfg ***
Jul 28 12:22:21 revelation dracut[22082]: *** Including module: drm ***
Jul 28 12:22:22 revelation dracut[22082]: *** Including module: plymouth ***
Jul 28 12:22:23 revelation dracut[22082]: *** Including module: prefixdevname ***
Jul 28 12:22:23 revelation dracut[22082]: *** Including module: dm ***
Jul 28 12:22:24 revelation dracut[22082]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:22:24 revelation dracut[22082]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:22:24 revelation dracut[22082]: Skipping udev rule: 55-dm.rules
Jul 28 12:22:24 revelation dracut[22082]: *** Including module: kernel-modules ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: kernel-modules-extra ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: kernel-network-modules ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: lvm ***
Jul 28 12:22:25 revelation dracut[22082]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:22:25 revelation dracut[22082]: Skipping udev rule: 56-lvm.rules
Jul 28 12:22:25 revelation dracut[22082]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: resume ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: rootfs-block ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: terminfo ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: udev-rules ***
Jul 28 12:22:25 revelation dracut[22082]: Skipping udev rule: 91-permissions.rules
Jul 28 12:22:25 revelation dracut[22082]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:22:25 revelation dracut[22082]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: dracut-systemd ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: usrmount ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: base ***
Jul 28 12:22:25 revelation dracut[22082]: *** Including module: fs-lib ***
Jul 28 12:22:26 revelation dracut[22082]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:22:26 revelation dracut[22082]:  microcode_ctl module: mangling fw_dir
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:22:26 revelation dracut[22082]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:22:26 revelation dracut[22082]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 12:22:26 revelation dracut[22082]: *** Including module: shutdown ***
Jul 28 12:22:26 revelation dracut[22082]: *** Including modules done ***
Jul 28 12:22:26 revelation dracut[22082]: *** Installing kernel module dependencies ***
Jul 28 12:22:27 revelation dracut[22082]: *** Installing kernel module dependencies done ***
Jul 28 12:22:27 revelation dracut[22082]: *** Resolving executable dependencies ***
Jul 28 12:22:28 revelation dracut[22082]: *** Resolving executable dependencies done ***
Jul 28 12:22:28 revelation dracut[22082]: *** Hardlinking files ***
Jul 28 12:22:28 revelation dracut[22082]: Mode:           real
Jul 28 12:22:28 revelation dracut[22082]: Files:          1507
Jul 28 12:22:28 revelation dracut[22082]: Linked:         8 files
Jul 28 12:22:28 revelation dracut[22082]: Compared:       0 xattrs
Jul 28 12:22:28 revelation dracut[22082]: Compared:       410 files
Jul 28 12:22:28 revelation dracut[22082]: Saved:          378.03 KiB
Jul 28 12:22:28 revelation dracut[22082]: Duration:       0.029276 seconds
Jul 28 12:22:28 revelation dracut[22082]: *** Hardlinking files done ***
Jul 28 12:22:28 revelation dracut[22082]: *** Generating early-microcode cpio image ***
Jul 28 12:22:28 revelation dracut[22082]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:28 revelation dracut[22082]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:28 revelation dracut[22082]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:28 revelation dracut[22082]: *** Store current command line parameters ***
Jul 28 12:22:28 revelation dracut[22082]: *** Stripping files ***
Jul 28 12:22:28 revelation dracut[22082]: *** Stripping files done ***
Jul 28 12:22:28 revelation dracut[22082]: *** Creating image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' ***
Jul 28 12:22:28 revelation dracut[22082]: dracut: using auto-determined compression method 'pigz'
Jul 28 12:22:38 revelation dracut[22082]: *** Creating initramfs image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' done ***
Jul 28 12:22:43 revelation dracut[32443]: dracut-057-21.git20230214.el9
Jul 28 12:22:43 revelation dracut[32445]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-70.17.1.el9_0.x86_64.tmp 5.14.0-70.17.1.el9_0.x86_64
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:22:44 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:22:44 revelation dracut[32445]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: memstrack is not available
Jul 28 12:22:44 revelation dracut[32445]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:22:44 revelation dracut[32445]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:22:45 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:22:45 revelation systemd[1]: Started dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@3.service.
Jul 28 12:22:45 revelation dracut[32445]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:22:45 revelation dracut[32445]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:22:45 revelation dracut[32445]: memstrack is not available
Jul 28 12:22:45 revelation dracut[32445]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:22:45 revelation dracut[32445]: *** Including module: bash ***
Jul 28 12:22:45 revelation dracut[32445]: *** Including module: systemd ***
Jul 28 12:22:45 revelation dracut[32445]: *** Including module: systemd-initrd ***
Jul 28 12:22:45 revelation dracut[32445]: *** Including module: systemd-sysusers ***
Jul 28 12:22:45 revelation dracut[32445]: *** Including module: nss-softokn ***
Jul 28 12:22:45 revelation dracut[32445]: *** Including module: dbus-broker ***
Jul 28 12:22:46 revelation dracut[32445]: *** Including module: dbus ***
Jul 28 12:22:46 revelation dracut[32445]: *** Including module: i18n ***
Jul 28 12:22:46 revelation dracut[32445]: *** Including module: network-manager ***
Jul 28 12:22:46 revelation dracut[32445]: *** Including module: network ***
Jul 28 12:22:46 revelation dracut[32445]: *** Including module: ifcfg ***
Jul 28 12:22:46 revelation dracut[32445]: *** Including module: drm ***
Jul 28 12:22:46 revelation setroubleshoot[33077]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:22:46 revelation setroubleshoot[33077]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:22:47 revelation dracut[32445]: *** Including module: plymouth ***
Jul 28 12:22:47 revelation setroubleshoot[33077]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:22:47 revelation setroubleshoot[33077]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:22:48 revelation dracut[32445]: *** Including module: prefixdevname ***
Jul 28 12:22:48 revelation dracut[32445]: *** Including module: dm ***
Jul 28 12:22:48 revelation dracut[32445]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:22:48 revelation dracut[32445]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:22:48 revelation dracut[32445]: Skipping udev rule: 55-dm.rules
Jul 28 12:22:48 revelation dracut[32445]: *** Including module: kernel-modules ***
Jul 28 12:22:49 revelation dracut[32445]: *** Including module: kernel-modules-extra ***
Jul 28 12:22:49 revelation setroubleshoot[33077]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:22:49 revelation setroubleshoot[33077]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:22:49 revelation dracut[32445]: *** Including module: kernel-network-modules ***
Jul 28 12:22:49 revelation dracut[32445]: *** Including module: lvm ***
Jul 28 12:22:49 revelation dracut[32445]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:22:49 revelation dracut[32445]: Skipping udev rule: 56-lvm.rules
Jul 28 12:22:49 revelation dracut[32445]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:22:49 revelation dracut[32445]: *** Including module: resume ***
Jul 28 12:22:49 revelation dracut[32445]: *** Including module: rootfs-block ***
Jul 28 12:22:49 revelation dracut[32445]: *** Including module: terminfo ***
Jul 28 12:22:49 revelation dracut[32445]: *** Including module: udev-rules ***
Jul 28 12:22:50 revelation dracut[32445]: Skipping udev rule: 91-permissions.rules
Jul 28 12:22:50 revelation dracut[32445]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:22:50 revelation dracut[32445]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:22:50 revelation dracut[32445]: *** Including module: dracut-systemd ***
Jul 28 12:22:50 revelation dracut[32445]: *** Including module: usrmount ***
Jul 28 12:22:50 revelation dracut[32445]: *** Including module: base ***
Jul 28 12:22:50 revelation dracut[32445]: *** Including module: fs-lib ***
Jul 28 12:22:50 revelation dracut[32445]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:22:50 revelation dracut[32445]:  microcode_ctl module: mangling fw_dir
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:22:50 revelation dracut[32445]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-70.17.1.el9_0.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:22:50 revelation dracut[32445]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-70.17.1.el9_0.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-70.17.1.el9_0.x86_64 /lib/firmware"
Jul 28 12:22:50 revelation dracut[32445]: *** Including module: shutdown ***
Jul 28 12:22:50 revelation dracut[32445]: *** Including modules done ***
Jul 28 12:22:50 revelation dracut[32445]: *** Installing kernel module dependencies ***
Jul 28 12:22:50 revelation setroubleshoot[33077]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:22:50 revelation setroubleshoot[33077]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:22:51 revelation dracut[32445]: *** Installing kernel module dependencies done ***
Jul 28 12:22:51 revelation dracut[32445]: *** Resolving executable dependencies ***
Jul 28 12:22:52 revelation dracut[32445]: *** Resolving executable dependencies done ***
Jul 28 12:22:52 revelation dracut[32445]: *** Hardlinking files ***
Jul 28 12:22:52 revelation dracut[32445]: Mode:           real
Jul 28 12:22:52 revelation dracut[32445]: Files:          1497
Jul 28 12:22:52 revelation dracut[32445]: Linked:         8 files
Jul 28 12:22:52 revelation dracut[32445]: Compared:       0 xattrs
Jul 28 12:22:52 revelation dracut[32445]: Compared:       407 files
Jul 28 12:22:52 revelation dracut[32445]: Saved:          378.03 KiB
Jul 28 12:22:52 revelation dracut[32445]: Duration:       0.046369 seconds
Jul 28 12:22:52 revelation dracut[32445]: *** Hardlinking files done ***
Jul 28 12:22:52 revelation dracut[32445]: *** Generating early-microcode cpio image ***
Jul 28 12:22:52 revelation dracut[32445]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:53 revelation dracut[32445]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:53 revelation dracut[32445]: *** Constructing GenuineIntel.bin ***
Jul 28 12:22:53 revelation dracut[32445]: *** Store current command line parameters ***
Jul 28 12:22:53 revelation dracut[32445]: *** Stripping files ***
Jul 28 12:22:53 revelation dracut[32445]: *** Stripping files done ***
Jul 28 12:22:53 revelation dracut[32445]: *** Creating image file '/boot/initramfs-5.14.0-70.17.1.el9_0.x86_64.tmp' ***
Jul 28 12:22:53 revelation dracut[32445]: dracut: using auto-determined compression method 'pigz'
Jul 28 12:23:01 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@3.service: Deactivated successfully.
Jul 28 12:23:01 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@3.service: Consumed 1.030s CPU time.
Jul 28 12:23:01 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:23:02 revelation dracut[32445]: *** Creating initramfs image file '/boot/initramfs-5.14.0-70.17.1.el9_0.x86_64.tmp' done ***
Jul 28 12:23:08 revelation dracut[42775]: dracut-057-21.git20230214.el9
Jul 28 12:23:08 revelation dracut[42777]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:23:08 revelation dracut[42777]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: memstrack is not available
Jul 28 12:23:09 revelation dracut[42777]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:23:09 revelation dracut[42777]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:23:10 revelation dracut[42777]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:23:10 revelation dracut[42777]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:23:10 revelation dracut[42777]: memstrack is not available
Jul 28 12:23:10 revelation dracut[42777]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: bash ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: systemd ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: systemd-initrd ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: systemd-sysusers ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: nss-softokn ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: dbus-broker ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: dbus ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: i18n ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: network-manager ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: network ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: ifcfg ***
Jul 28 12:23:10 revelation dracut[42777]: *** Including module: drm ***
Jul 28 12:23:11 revelation dracut[42777]: *** Including module: plymouth ***
Jul 28 12:23:13 revelation dracut[42777]: *** Including module: prefixdevname ***
Jul 28 12:23:13 revelation dracut[42777]: *** Including module: dm ***
Jul 28 12:23:13 revelation dracut[42777]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:23:13 revelation dracut[42777]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:23:13 revelation dracut[42777]: Skipping udev rule: 55-dm.rules
Jul 28 12:23:13 revelation dracut[42777]: *** Including module: kernel-modules ***
Jul 28 12:23:14 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:23:14 revelation dracut[42777]: *** Including module: kernel-modules-extra ***
Jul 28 12:23:14 revelation dracut[42777]: *** Including module: kernel-network-modules ***
Jul 28 12:23:14 revelation dracut[42777]: *** Including module: lvm ***
Jul 28 12:23:14 revelation dracut[42777]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:23:14 revelation dracut[42777]: Skipping udev rule: 56-lvm.rules
Jul 28 12:23:14 revelation dracut[42777]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:23:14 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:23:14 revelation dracut[42777]: *** Including module: resume ***
Jul 28 12:23:14 revelation dracut[42777]: *** Including module: rootfs-block ***
Jul 28 12:23:14 revelation dracut[42777]: *** Including module: terminfo ***
Jul 28 12:23:14 revelation dracut[42777]: *** Including module: udev-rules ***
Jul 28 12:23:15 revelation systemd[1]: Started dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@4.service.
Jul 28 12:23:15 revelation dracut[42777]: Skipping udev rule: 91-permissions.rules
Jul 28 12:23:15 revelation dracut[42777]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:23:15 revelation dracut[42777]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:23:15 revelation dracut[42777]: *** Including module: dracut-systemd ***
Jul 28 12:23:15 revelation dracut[42777]: *** Including module: usrmount ***
Jul 28 12:23:15 revelation dracut[42777]: *** Including module: base ***
Jul 28 12:23:15 revelation dracut[42777]: *** Including module: fs-lib ***
Jul 28 12:23:15 revelation dracut[42777]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:23:15 revelation dracut[42777]:  microcode_ctl module: mangling fw_dir
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:23:15 revelation dracut[42777]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:23:15 revelation dracut[42777]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 12:23:15 revelation dracut[42777]: *** Including module: shutdown ***
Jul 28 12:23:15 revelation dracut[42777]: *** Including modules done ***
Jul 28 12:23:15 revelation dracut[42777]: *** Installing kernel module dependencies ***
Jul 28 12:23:16 revelation setroubleshoot[46719]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:23:16 revelation setroubleshoot[46719]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:23:16 revelation dracut[42777]: *** Installing kernel module dependencies done ***
Jul 28 12:23:16 revelation dracut[42777]: *** Resolving executable dependencies ***
Jul 28 12:23:17 revelation dracut[42777]: *** Resolving executable dependencies done ***
Jul 28 12:23:17 revelation dracut[42777]: *** Hardlinking files ***
Jul 28 12:23:17 revelation dracut[42777]: Mode:           real
Jul 28 12:23:17 revelation dracut[42777]: Files:          1507
Jul 28 12:23:17 revelation dracut[42777]: Linked:         8 files
Jul 28 12:23:17 revelation dracut[42777]: Compared:       0 xattrs
Jul 28 12:23:17 revelation dracut[42777]: Compared:       410 files
Jul 28 12:23:17 revelation dracut[42777]: Saved:          378.03 KiB
Jul 28 12:23:17 revelation dracut[42777]: Duration:       0.018692 seconds
Jul 28 12:23:17 revelation dracut[42777]: *** Hardlinking files done ***
Jul 28 12:23:17 revelation dracut[42777]: *** Generating early-microcode cpio image ***
Jul 28 12:23:17 revelation dracut[42777]: *** Constructing GenuineIntel.bin ***
Jul 28 12:23:17 revelation dracut[42777]: *** Constructing GenuineIntel.bin ***
Jul 28 12:23:17 revelation dracut[42777]: *** Constructing GenuineIntel.bin ***
Jul 28 12:23:17 revelation dracut[42777]: *** Store current command line parameters ***
Jul 28 12:23:18 revelation dracut[42777]: *** Stripping files ***
Jul 28 12:23:18 revelation dracut[42777]: *** Stripping files done ***
Jul 28 12:23:18 revelation dracut[42777]: *** Creating image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' ***
Jul 28 12:23:18 revelation dracut[42777]: dracut: using auto-determined compression method 'pigz'
Jul 28 12:23:25 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@4.service: Deactivated successfully.
Jul 28 12:23:25 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@4.service: Consumed 1.026s CPU time.
Jul 28 12:23:26 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:23:27 revelation dracut[42777]: *** Creating initramfs image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' done ***
Jul 28 12:24:13 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:24:13 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:24:13 revelation systemd[1]: Started dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@5.service.
Jul 28 12:24:14 revelation setroubleshoot[53119]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:24:14 revelation setroubleshoot[53119]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:24:24 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@5.service: Deactivated successfully.
Jul 28 12:24:24 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:25:01 revelation dracut[54443]: dracut-057-21.git20230214.el9
Jul 28 12:25:02 revelation dracut[54445]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:25:02 revelation dracut[54445]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:25:03 revelation systemd[1]: Starting SETroubleshoot daemon for processing new SELinux denial logs...
Jul 28 12:25:03 revelation dracut[54445]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: memstrack is not available
Jul 28 12:25:03 revelation dracut[54445]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:25:03 revelation dracut[54445]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:25:03 revelation systemd[1]: Started SETroubleshoot daemon for processing new SELinux denial logs.
Jul 28 12:25:03 revelation systemd[1]: Started dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@6.service.
Jul 28 12:25:03 revelation dracut[54445]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:25:04 revelation dracut[54445]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:25:04 revelation dracut[54445]: memstrack is not available
Jul 28 12:25:04 revelation dracut[54445]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: bash ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: systemd ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: systemd-initrd ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: systemd-sysusers ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: nss-softokn ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: dbus-broker ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: dbus ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: i18n ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: network-manager ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: network ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: ifcfg ***
Jul 28 12:25:04 revelation dracut[54445]: *** Including module: drm ***
Jul 28 12:25:04 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:25:04 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:25:05 revelation dracut[54445]: *** Including module: plymouth ***
Jul 28 12:25:05 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:25:05 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:25:07 revelation dracut[54445]: *** Including module: prefixdevname ***
Jul 28 12:25:07 revelation dracut[54445]: *** Including module: dm ***
Jul 28 12:25:07 revelation dracut[54445]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:25:07 revelation dracut[54445]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:25:07 revelation dracut[54445]: Skipping udev rule: 55-dm.rules
Jul 28 12:25:07 revelation dracut[54445]: *** Including module: kernel-modules ***
Jul 28 12:25:07 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:25:07 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:25:07 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l dafd4947-ec5e-41c7-84ce-c7a4b808851e
Jul 28 12:25:07 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled udev_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: kernel-modules-extra ***
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: kernel-network-modules ***
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: lvm ***
Jul 28 12:25:08 revelation dracut[54445]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:25:08 revelation dracut[54445]: Skipping udev rule: 56-lvm.rules
Jul 28 12:25:08 revelation dracut[54445]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: resume ***
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: rootfs-block ***
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: terminfo ***
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: udev-rules ***
Jul 28 12:25:08 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l e80d322e-7ac9-473b-a9a0-b34f14fca3f0
Jul 28 12:25:08 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled lvm_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'dracut' --raw | audit2allow -M my-dracut#012# semodule -X 300 -i my-dracut.pp#012
Jul 28 12:25:08 revelation dracut[54445]: Skipping udev rule: 91-permissions.rules
Jul 28 12:25:08 revelation dracut[54445]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:25:08 revelation dracut[54445]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: dracut-systemd ***
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: usrmount ***
Jul 28 12:25:08 revelation dracut[54445]: *** Including module: base ***
Jul 28 12:25:09 revelation dracut[54445]: *** Including module: fs-lib ***
Jul 28 12:25:09 revelation dracut[54445]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:25:09 revelation dracut[54445]:  microcode_ctl module: mangling fw_dir
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:25:09 revelation dracut[54445]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:25:09 revelation dracut[54445]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 12:25:09 revelation dracut[54445]: *** Including module: shutdown ***
Jul 28 12:25:09 revelation dracut[54445]: *** Including modules done ***
Jul 28 12:25:09 revelation dracut[54445]: *** Installing kernel module dependencies ***
Jul 28 12:25:10 revelation dracut[54445]: *** Installing kernel module dependencies done ***
Jul 28 12:25:10 revelation dracut[54445]: *** Resolving executable dependencies ***
Jul 28 12:25:10 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process. For complete SELinux messages run: sealert -l fd89f9f2-3725-46a5-99f8-628e48baf8e8
Jul 28 12:25:10 revelation setroubleshoot[55073]: SELinux is preventing /usr/bin/bash from using the transition access on a process.#012#012*****  Plugin catchall (100. confidence) suggests   **************************#012#012If you believe that bash should be allowed transition access on processes labeled kmod_t by default.#012Then you should report this as a bug.#012You can generate a local policy module to allow this access.#012Do#012allow this access for now by executing:#012# ausearch -c 'weak-modules' --raw | audit2allow -M my-weakmodules#012# semodule -X 300 -i my-weakmodules.pp#012
Jul 28 12:25:11 revelation dracut[54445]: *** Resolving executable dependencies done ***
Jul 28 12:25:11 revelation dracut[54445]: *** Hardlinking files ***
Jul 28 12:25:11 revelation dracut[54445]: Mode:           real
Jul 28 12:25:11 revelation dracut[54445]: Files:          1507
Jul 28 12:25:11 revelation dracut[54445]: Linked:         8 files
Jul 28 12:25:11 revelation dracut[54445]: Compared:       0 xattrs
Jul 28 12:25:11 revelation dracut[54445]: Compared:       410 files
Jul 28 12:25:11 revelation dracut[54445]: Saved:          378.03 KiB
Jul 28 12:25:11 revelation dracut[54445]: Duration:       0.027400 seconds
Jul 28 12:25:11 revelation dracut[54445]: *** Hardlinking files done ***
Jul 28 12:25:11 revelation dracut[54445]: *** Generating early-microcode cpio image ***
Jul 28 12:25:11 revelation dracut[54445]: *** Constructing GenuineIntel.bin ***
Jul 28 12:25:11 revelation dracut[54445]: *** Constructing GenuineIntel.bin ***
Jul 28 12:25:11 revelation dracut[54445]: *** Constructing GenuineIntel.bin ***
Jul 28 12:25:11 revelation dracut[54445]: *** Store current command line parameters ***
Jul 28 12:25:11 revelation dracut[54445]: *** Stripping files ***
Jul 28 12:25:11 revelation dracut[54445]: *** Stripping files done ***
Jul 28 12:25:11 revelation dracut[54445]: *** Creating image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' ***
Jul 28 12:25:11 revelation dracut[54445]: dracut: using auto-determined compression method 'pigz'
Jul 28 12:25:20 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@6.service: Deactivated successfully.
Jul 28 12:25:20 revelation systemd[1]: dbus-:1.13-org.fedoraproject.SetroubleshootPrivileged@6.service: Consumed 1.025s CPU time.
Jul 28 12:25:20 revelation systemd[1]: setroubleshootd.service: Deactivated successfully.
Jul 28 12:25:21 revelation dracut[54445]: *** Creating initramfs image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' done ***
Jul 28 12:25:27 revelation dracut[64830]: dracut-057-21.git20230214.el9
Jul 28 12:25:27 revelation dracut[64832]: Executing: /usr/bin/dracut -f /boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp 5.14.0-284.18.1.el9_2.x86_64
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'systemd-networkd' will not be installed, because command 'networkctl' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'systemd-networkd' will not be installed, because command '/usr/lib/systemd/systemd-networkd-wait-online' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: memstrack is not available
Jul 28 12:25:28 revelation dracut[64832]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-timesyncd' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'systemd-timesyncd' will not be installed, because command '/usr/lib/systemd/systemd-time-wait-sync' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'connman' will not be installed, because command 'connmand' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'connman' will not be installed, because command 'connmanctl' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'connman' will not be installed, because command 'connmand-wait-online' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'network-legacy' will not be installed, because command 'dhclient' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'btrfs' will not be installed, because command 'btrfs' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'dmraid' will not be installed, because command 'dmraid' could not be found!
Jul 28 12:25:28 revelation dracut[64832]: dracut module 'dmsquash-live-ntfs' will not be installed, because command 'ntfs-3g' could not be found!
Jul 28 12:25:29 revelation dracut[64832]: dracut module 'pcsc' will not be installed, because command 'pcscd' could not be found!
Jul 28 12:25:29 revelation dracut[64832]: 95nfs: Could not find any command of 'rpcbind portmap'!
Jul 28 12:25:29 revelation dracut[64832]: dracut module 'memstrack' will not be installed, because command 'memstrack' could not be found!
Jul 28 12:25:29 revelation dracut[64832]: memstrack is not available
Jul 28 12:25:29 revelation dracut[64832]: If you need to use rd.memdebug>=4, please install memstrack and procps-ng
Jul 28 12:25:29 revelation dracut[64832]: *** Including module: bash ***
Jul 28 12:25:29 revelation dracut[64832]: *** Including module: systemd ***
Jul 28 12:25:29 revelation dracut[64832]: *** Including module: systemd-initrd ***
Jul 28 12:25:29 revelation dracut[64832]: *** Including module: systemd-sysusers ***
Jul 28 12:25:29 revelation dracut[64832]: *** Including module: nss-softokn ***
Jul 28 12:25:29 revelation dracut[64832]: *** Including module: dbus-broker ***
Jul 28 12:25:29 revelation dracut[64832]: *** Including module: dbus ***
Jul 28 12:25:29 revelation dracut[64832]: *** Including module: i18n ***
Jul 28 12:25:30 revelation dracut[64832]: *** Including module: network-manager ***
Jul 28 12:25:30 revelation dracut[64832]: *** Including module: network ***
Jul 28 12:25:30 revelation dracut[64832]: *** Including module: ifcfg ***
Jul 28 12:25:30 revelation dracut[64832]: *** Including module: drm ***
Jul 28 12:25:31 revelation dracut[64832]: *** Including module: plymouth ***
Jul 28 12:25:32 revelation dracut[64832]: *** Including module: prefixdevname ***
Jul 28 12:25:32 revelation dracut[64832]: *** Including module: dm ***
Jul 28 12:25:32 revelation dracut[64832]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:25:32 revelation dracut[64832]: Skipping udev rule: 60-persistent-storage-dm.rules
Jul 28 12:25:32 revelation dracut[64832]: Skipping udev rule: 55-dm.rules
Jul 28 12:25:32 revelation dracut[64832]: *** Including module: kernel-modules ***
Jul 28 12:25:33 revelation dracut[64832]: *** Including module: kernel-modules-extra ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: kernel-network-modules ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: lvm ***
Jul 28 12:25:34 revelation dracut[64832]: Skipping udev rule: 64-device-mapper.rules
Jul 28 12:25:34 revelation dracut[64832]: Skipping udev rule: 56-lvm.rules
Jul 28 12:25:34 revelation dracut[64832]: Skipping udev rule: 60-persistent-storage-lvm.rules
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: resume ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: rootfs-block ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: terminfo ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: udev-rules ***
Jul 28 12:25:34 revelation dracut[64832]: Skipping udev rule: 91-permissions.rules
Jul 28 12:25:34 revelation dracut[64832]: Skipping udev rule: 80-drivers-modprobe.rules
Jul 28 12:25:34 revelation dracut[64832]: Skipping udev rule: 70-persistent-net.rules
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: dracut-systemd ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: usrmount ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: base ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: fs-lib ***
Jul 28 12:25:34 revelation dracut[64832]: *** Including module: microcode_ctl-fw_dir_override ***
Jul 28 12:25:34 revelation dracut[64832]:  microcode_ctl module: mangling fw_dir
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel"...
Jul 28 12:25:34 revelation dracut[64832]:      microcode_ctl: intel: caveats check for kernel version "5.14.0-284.18.1.el9_2.x86_64" passed, adding "/usr/share/microcode_ctl/ucode_with_caveats/intel" to fw_dir variable
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-2d-07"...
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: configuration "intel-06-2d-07" is ignored
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4e-03"...
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: configuration "intel-06-4e-03" is ignored
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-4f-01"...
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: configuration "intel-06-4f-01" is ignored
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-55-04"...
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: configuration "intel-06-55-04" is ignored
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-5e-03"...
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: configuration "intel-06-5e-03" is ignored
Jul 28 12:25:34 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8c-01"...
Jul 28 12:25:35 revelation dracut[64832]:    microcode_ctl: configuration "intel-06-8c-01" is ignored
Jul 28 12:25:35 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-0xca"...
Jul 28 12:25:35 revelation dracut[64832]:    microcode_ctl: configuration "intel-06-8e-9e-0x-0xca" is ignored
Jul 28 12:25:35 revelation dracut[64832]:    microcode_ctl: processing data directory  "/usr/share/microcode_ctl/ucode_with_caveats/intel-06-8e-9e-0x-dell"...
Jul 28 12:25:35 revelation dracut[64832]:    microcode_ctl: configuration "intel-06-8e-9e-0x-dell" is ignored
Jul 28 12:25:35 revelation dracut[64832]:    microcode_ctl: final fw_dir: "/usr/share/microcode_ctl/ucode_with_caveats/intel /lib/firmware/updates/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware/updates /lib/firmware/5.14.0-284.18.1.el9_2.x86_64 /lib/firmware"
Jul 28 12:25:35 revelation dracut[64832]: *** Including module: shutdown ***
Jul 28 12:25:35 revelation dracut[64832]: *** Including modules done ***
Jul 28 12:25:35 revelation dracut[64832]: *** Installing kernel module dependencies ***
Jul 28 12:25:35 revelation dracut[64832]: *** Installing kernel module dependencies done ***
Jul 28 12:25:35 revelation dracut[64832]: *** Resolving executable dependencies ***
Jul 28 12:25:37 revelation dracut[64832]: *** Resolving executable dependencies done ***
Jul 28 12:25:37 revelation dracut[64832]: *** Hardlinking files ***
Jul 28 12:25:37 revelation dracut[64832]: Mode:           real
Jul 28 12:25:37 revelation dracut[64832]: Files:          1507
Jul 28 12:25:37 revelation dracut[64832]: Linked:         8 files
Jul 28 12:25:37 revelation dracut[64832]: Compared:       0 xattrs
Jul 28 12:25:37 revelation dracut[64832]: Compared:       410 files
Jul 28 12:25:37 revelation dracut[64832]: Saved:          378.03 KiB
Jul 28 12:25:37 revelation dracut[64832]: Duration:       0.021754 seconds
Jul 28 12:25:37 revelation dracut[64832]: *** Hardlinking files done ***
Jul 28 12:25:37 revelation dracut[64832]: *** Generating early-microcode cpio image ***
Jul 28 12:25:37 revelation dracut[64832]: *** Constructing GenuineIntel.bin ***
Jul 28 12:25:37 revelation dracut[64832]: *** Constructing GenuineIntel.bin ***
Jul 28 12:25:37 revelation dracut[64832]: *** Constructing GenuineIntel.bin ***
Jul 28 12:25:37 revelation dracut[64832]: *** Store current command line parameters ***
Jul 28 12:25:37 revelation dracut[64832]: *** Stripping files ***
Jul 28 12:25:37 revelation dracut[64832]: *** Stripping files done ***
Jul 28 12:25:37 revelation dracut[64832]: *** Creating image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' ***
Jul 28 12:25:37 revelation dracut[64832]: dracut: using auto-determined compression method 'pigz'
Jul 28 12:25:47 revelation dracut[64832]: *** Creating initramfs image file '/boot/initramfs-5.14.0-284.18.1.el9_2.x86_64.tmp' done ***
Jul 28 12:27:47 revelation kernel: Linux version 5.14.0-284.18.1.el9_2.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.3.1 20221121 (Red Hat 11.3.1-4), GNU ld version 2.35.2-37.el9) #1 SMP PREEMPT_DYNAMIC Thu Jun 22 17:36:46 UTC 2023
Jul 28 12:27:47 revelation kernel: The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.
Jocelyn Falempe Aug. 1, 2023, 10:11 a.m. UTC | #24
On 28/07/2023 14:12, Roger Sewell wrote:
> 
> Thomas, Jocelyn,
> 
> JF> I think the culprit is probably this patch:
> JF> https://patchwork.freedesktop.org/patch/486242/
> JF>
> JF> before this patch,
> JF> mgag200_simple_display_pipe_mode_valid() always return MODE_OK
> JF>
> JF> after this patch, it checks the bandwidth limit too.
> 
> It turns out to be more complicated than that - and I still think it is
> something to do with how the two functions
> mgag200_simple_display_pipe_mode_valid and
> mgag200_mode_config_mode_valid are made known to the rest of the drm
> system, i.e. which slots in the various function structures they are put
> in.
> 
> I attach a contiguous excerpt from /var/log/messages, recording what
> happened when I did the following.
> 
> 1. I instrumented the old mgag200 module with printk statements in
>     mgag200_simple_display_pipe_mode_valid and mga_vga_mode_valid and
>     mga_vga_calculate_mode_bandwidth, and also put in a call to the
>     latter in mgag200_simple_display_pipe_mode_valid so that I could see
>     what parameters it had been called with. I then rebooted the system,
>     getting the messages starting at Jul 28 10:42:45 . As you will see,
>     almost every time mgag200_simple_display_pipe_mode_valid is called it
>     is immediately following a return of MODE_OK from mga_vga_mode_valid
>     with the same display parameters - the two exceptions are:
> 
>     a) at line 1156 is when it is called after "fbcon: mgag200drmfb (fb0)
>        is primary device", and
> 
>     b) with the mode actually being set (1440x900) at line 2681 when it
>        of course returns MODE_OK (as that is what it always returns, as
>        you say).
> 
> 2. I then switched to the new mgag200 module similarly instrumented, but
>     with the unique_rev_id increased by 1 to get sufficient bandwidth to
>     make 1440x900 usable. I then rebooted the system, getting the
>     messages starting at Jul 28 11:46:53 . Again, almost every time
>     mgag200_simple_display_pipe_mode_valid is called it is immediately
>     after a return of MODE_OK from mgag200_mode_config_mode_valid, and we
>     still have exception type (a) at line 5672. However, the exception
>     type (b) is no longer present, as at line 6590, on setting the
>     1440x900 mode, there is now a call of mgag200_mode_config_mode_valid
>     preceding the call of mgag200_simple_display_pipe_mode_valid.
> 
> 3. I then modified that mgag200 module by forcing a return of MODE_OK
>     from mgag200_simple_display_pipe_mode_valid and removing the
>     increment to unique_rev_id, so that 1440x900 is no longer "valid"
>     according to the criteria being used. I rebooted, getting the
>     messages starting at Jul 28 12:12:34 . Now at line 11004 we have a
>     failure to set mode immediately followed by a return of MODE_BAD, not
>     from mgag200_simple_display_pipe_mode_valid but from
>     mgag200_mode_config_mode_valid.
> 
> Thus between the old mgag200 module and the new one, there is a change
> in when the mode_config_mode_valid function gets called - there being
> one extra call. So even if one were to revert to
> mgag200_simple_display_pipe_mode_valid just always returning MODE_OK it
> wouldn't fix the problem.
> 
> At present I don't see how the change of behaviour can be anything other
> than to do with the way these function names are passed to the rest of
> the drm system (though of course even if that were reverted, the fact
> that mgag200_simple_display_pipe_mode_valid now tests bandwidth would
> still cause what I want to do to fail).
> 
> Sadly I don't understand how the drm system works, so I'm not sure that
> I can shed any more light - but if there are any more experiments that
> would help, please do let me know.

I think the issue is that in v5.18, the memory check was done on the 
connector mode_valid() callback, and in v6.0, it's done in the 
mode_config mode_valid() callback.

Can you please try the patch attached, I moved the bandwidth check back 
to the connector callback.

Best regards,
Thomas Zimmermann Aug. 1, 2023, 10:25 a.m. UTC | #25
Hi

Am 01.08.23 um 12:11 schrieb Jocelyn Falempe:
> On 28/07/2023 14:12, Roger Sewell wrote:
>>
>> Thomas, Jocelyn,
>>
>> JF> I think the culprit is probably this patch:
>> JF> https://patchwork.freedesktop.org/patch/486242/
>> JF>
>> JF> before this patch,
>> JF> mgag200_simple_display_pipe_mode_valid() always return MODE_OK
>> JF>
>> JF> after this patch, it checks the bandwidth limit too.
>>
>> It turns out to be more complicated than that - and I still think it is
>> something to do with how the two functions
>> mgag200_simple_display_pipe_mode_valid and
>> mgag200_mode_config_mode_valid are made known to the rest of the drm
>> system, i.e. which slots in the various function structures they are put
>> in.
>>
>> I attach a contiguous excerpt from /var/log/messages, recording what
>> happened when I did the following.
>>
>> 1. I instrumented the old mgag200 module with printk statements in
>>     mgag200_simple_display_pipe_mode_valid and mga_vga_mode_valid and
>>     mga_vga_calculate_mode_bandwidth, and also put in a call to the
>>     latter in mgag200_simple_display_pipe_mode_valid so that I could see
>>     what parameters it had been called with. I then rebooted the system,
>>     getting the messages starting at Jul 28 10:42:45 . As you will see,
>>     almost every time mgag200_simple_display_pipe_mode_valid is called it
>>     is immediately following a return of MODE_OK from mga_vga_mode_valid
>>     with the same display parameters - the two exceptions are:
>>
>>     a) at line 1156 is when it is called after "fbcon: mgag200drmfb (fb0)
>>        is primary device", and
>>
>>     b) with the mode actually being set (1440x900) at line 2681 when it
>>        of course returns MODE_OK (as that is what it always returns, as
>>        you say).
>>
>> 2. I then switched to the new mgag200 module similarly instrumented, but
>>     with the unique_rev_id increased by 1 to get sufficient bandwidth to
>>     make 1440x900 usable. I then rebooted the system, getting the
>>     messages starting at Jul 28 11:46:53 . Again, almost every time
>>     mgag200_simple_display_pipe_mode_valid is called it is immediately
>>     after a return of MODE_OK from mgag200_mode_config_mode_valid, and we
>>     still have exception type (a) at line 5672. However, the exception
>>     type (b) is no longer present, as at line 6590, on setting the
>>     1440x900 mode, there is now a call of mgag200_mode_config_mode_valid
>>     preceding the call of mgag200_simple_display_pipe_mode_valid.
>>
>> 3. I then modified that mgag200 module by forcing a return of MODE_OK
>>     from mgag200_simple_display_pipe_mode_valid and removing the
>>     increment to unique_rev_id, so that 1440x900 is no longer "valid"
>>     according to the criteria being used. I rebooted, getting the
>>     messages starting at Jul 28 12:12:34 . Now at line 11004 we have a
>>     failure to set mode immediately followed by a return of MODE_BAD, not
>>     from mgag200_simple_display_pipe_mode_valid but from
>>     mgag200_mode_config_mode_valid.
>>
>> Thus between the old mgag200 module and the new one, there is a change
>> in when the mode_config_mode_valid function gets called - there being
>> one extra call. So even if one were to revert to
>> mgag200_simple_display_pipe_mode_valid just always returning MODE_OK it
>> wouldn't fix the problem.
>>
>> At present I don't see how the change of behaviour can be anything other
>> than to do with the way these function names are passed to the rest of
>> the drm system (though of course even if that were reverted, the fact
>> that mgag200_simple_display_pipe_mode_valid now tests bandwidth would
>> still cause what I want to do to fail).
>>
>> Sadly I don't understand how the drm system works, so I'm not sure that
>> I can shed any more light - but if there are any more experiments that
>> would help, please do let me know.
> 
> I think the issue is that in v5.18, the memory check was done on the 
> connector mode_valid() callback, and in v6.0, it's done in the 
> mode_config mode_valid() callback.
> 
> Can you please try the patch attached, I moved the bandwidth check back 
> to the connector callback.

It should not make difference. I'd be surprised if it does. And in any 
case, the bandwidth check belongs in to the mode_config test, as it is a 
device-wide limit.

FYI I intend to close this bug report as INVALID. The hardware and 
driver work according to the known specs, so there's no bug here.

Best regards
Thomas

> 
> Best regards,
>
Roger Sewell Aug. 1, 2023, 12:21 p.m. UTC | #26
Jocelyn, Thomas,

Jocelyn, your patch works perfectly - thank you.

May I leave it to the two of you to decide what should happen about
propagating this patch ? (I have set out my user's point of view about
it in my email of Fri, 28 Jul 2023 10:11:00 +0100, but obviously my
opinion is not binding on either of you.) 

I would be glad to hear what you eventually decide between you.

Many thanks indeed for your help !
Roger.
Jocelyn Falempe Aug. 1, 2023, 2:24 p.m. UTC | #27
On 01/08/2023 12:25, Thomas Zimmermann wrote:
> Hi
> 
> Am 01.08.23 um 12:11 schrieb Jocelyn Falempe:
>> On 28/07/2023 14:12, Roger Sewell wrote:
>>>
>>> Thomas, Jocelyn,
>>>
>>> JF> I think the culprit is probably this patch:
>>> JF> https://patchwork.freedesktop.org/patch/486242/
>>> JF>
>>> JF> before this patch,
>>> JF> mgag200_simple_display_pipe_mode_valid() always return MODE_OK
>>> JF>
>>> JF> after this patch, it checks the bandwidth limit too.
>>>
>>> It turns out to be more complicated than that - and I still think it is
>>> something to do with how the two functions
>>> mgag200_simple_display_pipe_mode_valid and
>>> mgag200_mode_config_mode_valid are made known to the rest of the drm
>>> system, i.e. which slots in the various function structures they are put
>>> in.
>>>
>>> I attach a contiguous excerpt from /var/log/messages, recording what
>>> happened when I did the following.
>>>
>>> 1. I instrumented the old mgag200 module with printk statements in
>>>     mgag200_simple_display_pipe_mode_valid and mga_vga_mode_valid and
>>>     mga_vga_calculate_mode_bandwidth, and also put in a call to the
>>>     latter in mgag200_simple_display_pipe_mode_valid so that I could see
>>>     what parameters it had been called with. I then rebooted the system,
>>>     getting the messages starting at Jul 28 10:42:45 . As you will see,
>>>     almost every time mgag200_simple_display_pipe_mode_valid is 
>>> called it
>>>     is immediately following a return of MODE_OK from mga_vga_mode_valid
>>>     with the same display parameters - the two exceptions are:
>>>
>>>     a) at line 1156 is when it is called after "fbcon: mgag200drmfb 
>>> (fb0)
>>>        is primary device", and
>>>
>>>     b) with the mode actually being set (1440x900) at line 2681 when it
>>>        of course returns MODE_OK (as that is what it always returns, as
>>>        you say).
>>>
>>> 2. I then switched to the new mgag200 module similarly instrumented, but
>>>     with the unique_rev_id increased by 1 to get sufficient bandwidth to
>>>     make 1440x900 usable. I then rebooted the system, getting the
>>>     messages starting at Jul 28 11:46:53 . Again, almost every time
>>>     mgag200_simple_display_pipe_mode_valid is called it is immediately
>>>     after a return of MODE_OK from mgag200_mode_config_mode_valid, 
>>> and we
>>>     still have exception type (a) at line 5672. However, the exception
>>>     type (b) is no longer present, as at line 6590, on setting the
>>>     1440x900 mode, there is now a call of mgag200_mode_config_mode_valid
>>>     preceding the call of mgag200_simple_display_pipe_mode_valid.
>>>
>>> 3. I then modified that mgag200 module by forcing a return of MODE_OK
>>>     from mgag200_simple_display_pipe_mode_valid and removing the
>>>     increment to unique_rev_id, so that 1440x900 is no longer "valid"
>>>     according to the criteria being used. I rebooted, getting the
>>>     messages starting at Jul 28 12:12:34 . Now at line 11004 we have a
>>>     failure to set mode immediately followed by a return of MODE_BAD, 
>>> not
>>>     from mgag200_simple_display_pipe_mode_valid but from
>>>     mgag200_mode_config_mode_valid.
>>>
>>> Thus between the old mgag200 module and the new one, there is a change
>>> in when the mode_config_mode_valid function gets called - there being
>>> one extra call. So even if one were to revert to
>>> mgag200_simple_display_pipe_mode_valid just always returning MODE_OK it
>>> wouldn't fix the problem.
>>>
>>> At present I don't see how the change of behaviour can be anything other
>>> than to do with the way these function names are passed to the rest of
>>> the drm system (though of course even if that were reverted, the fact
>>> that mgag200_simple_display_pipe_mode_valid now tests bandwidth would
>>> still cause what I want to do to fail).
>>>
>>> Sadly I don't understand how the drm system works, so I'm not sure that
>>> I can shed any more light - but if there are any more experiments that
>>> would help, please do let me know.
>>
>> I think the issue is that in v5.18, the memory check was done on the 
>> connector mode_valid() callback, and in v6.0, it's done in the 
>> mode_config mode_valid() callback.
>>
>> Can you please try the patch attached, I moved the bandwidth check 
>> back to the connector callback.
> 
> It should not make difference. I'd be surprised if it does. And in any 
> case, the bandwidth check belongs in to the mode_config test, as it is a 
> device-wide limit.
> 
It does, and it goes back to the v5.18 behavior, where the "out of spec" 
resolutions are not proposed, but you can still force them from userspace.
Also this claims to be a "bandwidth" limit, but all mgag200 are using 
the PCI bus for the memory clock, so have the same bandwidth. The limit 
is on the pixel clock, which is used only for the VGA DAC, so it's 
probably fine to attach this limit to the VGA connector. Of course 
mgag200 only have VGA connector, so it doesn't matter in practice.


> FYI I intend to close this bug report as INVALID. The hardware and 
> driver work according to the known specs, so there's no bug here.

I still think it's a kernel regression, because a userspace 
configuration that used to work is now broken.

Best regards,
Thomas Zimmermann Aug. 1, 2023, 3:50 p.m. UTC | #28
Hi

Am 01.08.23 um 16:24 schrieb Jocelyn Falempe:
> On 01/08/2023 12:25, Thomas Zimmermann wrote:
>> Hi
>>
>> Am 01.08.23 um 12:11 schrieb Jocelyn Falempe:
>>> On 28/07/2023 14:12, Roger Sewell wrote:
>>>>
>>>> Thomas, Jocelyn,
>>>>
>>>> JF> I think the culprit is probably this patch:
>>>> JF> https://patchwork.freedesktop.org/patch/486242/
>>>> JF>
>>>> JF> before this patch,
>>>> JF> mgag200_simple_display_pipe_mode_valid() always return MODE_OK
>>>> JF>
>>>> JF> after this patch, it checks the bandwidth limit too.
>>>>
>>>> It turns out to be more complicated than that - and I still think it is
>>>> something to do with how the two functions
>>>> mgag200_simple_display_pipe_mode_valid and
>>>> mgag200_mode_config_mode_valid are made known to the rest of the drm
>>>> system, i.e. which slots in the various function structures they are 
>>>> put
>>>> in.
>>>>
>>>> I attach a contiguous excerpt from /var/log/messages, recording what
>>>> happened when I did the following.
>>>>
>>>> 1. I instrumented the old mgag200 module with printk statements in
>>>>     mgag200_simple_display_pipe_mode_valid and mga_vga_mode_valid and
>>>>     mga_vga_calculate_mode_bandwidth, and also put in a call to the
>>>>     latter in mgag200_simple_display_pipe_mode_valid so that I could 
>>>> see
>>>>     what parameters it had been called with. I then rebooted the 
>>>> system,
>>>>     getting the messages starting at Jul 28 10:42:45 . As you will see,
>>>>     almost every time mgag200_simple_display_pipe_mode_valid is 
>>>> called it
>>>>     is immediately following a return of MODE_OK from 
>>>> mga_vga_mode_valid
>>>>     with the same display parameters - the two exceptions are:
>>>>
>>>>     a) at line 1156 is when it is called after "fbcon: mgag200drmfb 
>>>> (fb0)
>>>>        is primary device", and
>>>>
>>>>     b) with the mode actually being set (1440x900) at line 2681 when it
>>>>        of course returns MODE_OK (as that is what it always returns, as
>>>>        you say).
>>>>
>>>> 2. I then switched to the new mgag200 module similarly instrumented, 
>>>> but
>>>>     with the unique_rev_id increased by 1 to get sufficient 
>>>> bandwidth to
>>>>     make 1440x900 usable. I then rebooted the system, getting the
>>>>     messages starting at Jul 28 11:46:53 . Again, almost every time
>>>>     mgag200_simple_display_pipe_mode_valid is called it is immediately
>>>>     after a return of MODE_OK from mgag200_mode_config_mode_valid, 
>>>> and we
>>>>     still have exception type (a) at line 5672. However, the exception
>>>>     type (b) is no longer present, as at line 6590, on setting the
>>>>     1440x900 mode, there is now a call of 
>>>> mgag200_mode_config_mode_valid
>>>>     preceding the call of mgag200_simple_display_pipe_mode_valid.
>>>>
>>>> 3. I then modified that mgag200 module by forcing a return of MODE_OK
>>>>     from mgag200_simple_display_pipe_mode_valid and removing the
>>>>     increment to unique_rev_id, so that 1440x900 is no longer "valid"
>>>>     according to the criteria being used. I rebooted, getting the
>>>>     messages starting at Jul 28 12:12:34 . Now at line 11004 we have a
>>>>     failure to set mode immediately followed by a return of 
>>>> MODE_BAD, not
>>>>     from mgag200_simple_display_pipe_mode_valid but from
>>>>     mgag200_mode_config_mode_valid.
>>>>
>>>> Thus between the old mgag200 module and the new one, there is a change
>>>> in when the mode_config_mode_valid function gets called - there being
>>>> one extra call. So even if one were to revert to
>>>> mgag200_simple_display_pipe_mode_valid just always returning MODE_OK it
>>>> wouldn't fix the problem.
>>>>
>>>> At present I don't see how the change of behaviour can be anything 
>>>> other
>>>> than to do with the way these function names are passed to the rest of
>>>> the drm system (though of course even if that were reverted, the fact
>>>> that mgag200_simple_display_pipe_mode_valid now tests bandwidth would
>>>> still cause what I want to do to fail).
>>>>
>>>> Sadly I don't understand how the drm system works, so I'm not sure that
>>>> I can shed any more light - but if there are any more experiments that
>>>> would help, please do let me know.
>>>
>>> I think the issue is that in v5.18, the memory check was done on the 
>>> connector mode_valid() callback, and in v6.0, it's done in the 
>>> mode_config mode_valid() callback.
>>>
>>> Can you please try the patch attached, I moved the bandwidth check 
>>> back to the connector callback.
>>
>> It should not make difference. I'd be surprised if it does. And in any 
>> case, the bandwidth check belongs in to the mode_config test, as it is 
>> a device-wide limit.
>>
> It does, and it goes back to the v5.18 behavior, where the "out of spec" 
> resolutions are not proposed, but you can still force them from userspace.
> Also this claims to be a "bandwidth" limit, but all mgag200 are using 
> the PCI bus for the memory clock, so have the same bandwidth. The limit 
> is on the pixel clock, which is used only for the VGA DAC, so it's 
> probably fine to attach this limit to the VGA connector. Of course 
> mgag200 only have VGA connector, so it doesn't matter in practice.
> 
> 
>> FYI I intend to close this bug report as INVALID. The hardware and 
>> driver work according to the known specs, so there's no bug here.
> 
> I still think it's a kernel regression, because a userspace 
> configuration that used to work is now broken.

No it's not. The kernel didn't validate the given state correctly. 
Hence, the user's hardware accidentally got overclocked, which the 
kernel driver is really expected to prevent. That was the kernel bug 
that has been fixed a while ago.

If anything, the kernel driver could support several modes only for 
16-bit colors (iff userspace can handle that).

Best regards
Thomas

> 
> Best regards,
>
Thomas Zimmermann Aug. 1, 2023, 3:55 p.m. UTC | #29
Hi

Am 01.08.23 um 14:21 schrieb Roger Sewell:
> Jocelyn, Thomas,
> 
> Jocelyn, your patch works perfectly - thank you.

That's an interesting find. I briefly looked through the code that 
validates the modes, but there's no obvious reason why it would now work.

> 
> May I leave it to the two of you to decide what should happen about
> propagating this patch ? (I have set out my user's point of view about
> it in my email of Fri, 28 Jul 2023 10:11:00 +0100, but obviously my
> opinion is not binding on either of you.)

Your proposal of giving userspace the opportunity to override kernel 
validation and program anything is not feasible in practice. It would 
open holes to the security and safety of the system.

Best regards
Thomas

> 
> I would be glad to hear what you eventually decide between you.
> 
> Many thanks indeed for your help !
> Roger.
Roger Sewell Aug. 2, 2023, 8:18 p.m. UTC | #30
Thomas, Jocelyn,

I just thought I'd let you know that it occurred to me that, now I
understood the workings of the mgag200 module better, I might be
able to get an even higher screen resolution than before.

So I relaxed the limits of this chip that returns unique_rev_id=1 to be
those that would have applied if it had had unique_rev_id=3, and set a
/etc/X11/xorg.conf.d/20-screen.conf file to contain the stuff below, and
used Settings->Display to pick 1920x1080 mode - and sure enough I get
perfect 1920x1080@60Hz screen resolution.

Interesting. Thomas, I owe you thanks for introducing the bug/feature we
have been discussing which has eventually led to my realising a big
improvement in my display. Also to all those who support open-source
software, without which a user would not be able to taylor his system to
match what he needs so well.

With best wishes,
Roger.



Section "Monitor"
        Identifier      "My monitor"
        Modeline "1440x900" 106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync
        Modeline "1280x800"  83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync
        Modeline "1280x720"  74.44  1280 1336 1472 1664  720 721 724 746 -hsync +vsync
        Modeline "1920x1080"  148.50  1920 2008 2056 2200  1080 1084 1089 1125 +hsync +vsync
EndSection
Section "Screen"
	Identifier	"Builtin Default mga Screen 0"
	Device	"Builtin Default Device 0"
        Monitor "My monitor"
        SubSection "Display"
             Virtual 1440 900
             Modes "1440x900"
        EndSubSection
EndSection
Section "ServerLayout"
	Identifier	"Builtin Default Layout"
	Screen	"Builtin Default mga Screen 0"
EndSection
Javier Martinez Canillas Aug. 4, 2023, 2:02 p.m. UTC | #31
Javier Martinez Canillas <javierm@redhat.com> writes:

> Thomas Zimmermann <tzimmermann@suse.de> writes:
>

[...]

>> The reasoning is that userspace should always be in control of the 
>> format (sans that one exception). If userspace wants packed 24-bits it 
>> can support RGB888 explicitly.  For the color-format transformation, 
>> it's better to do that in userspace with SSE-like instructions than in 
>> the kernel.
>>
>> I wasn't super-happy with this, but I think it's a clear statement with 
>> simple rules to follow. I'd prefer that over relaxed rules where each 
>> driver does its own thing.
>>
>
> I wasn't super happy either, but if I remember correctly we were the only
> two that had this point of view and everyone else there thought that the
> drivers shouldn't expose a format that don't support (other than XR24) ?.
>

I think that this unwritten rule must be documented somewhere so that we
could know what the rule really is instead of people making assumptions.

Because my understanding from the discussion was that user-space has no
way to know if a format is "native" or "fake" and it shouldn't pay for the
performance penalty of doing these format conversions in the drivers.

But the irony here is that enforcing such a rule in this particular case
would prevent to have a performance gain. So it seems to me as if it's the
opposite to what such a rule wanted to achieve.

My proposal is to write a doc patch explicitly stating that drivers must
only expose a "virtual" XRGB8888 format for compatibility and that it is
allowed to drop the alpha channel in the driver if that would improve the
performance for a particular device (e.g: slow DMA as is the case here).

That way, the spirit of the rule would be to make the driver/device as
performant as possible. What do you think ? Does this make sense to you ?
diff mbox series

Patch

diff --git a/drivers/gpu/drm/mgag200/mgag200_g200se.c b/drivers/gpu/drm/mgag200/mgag200_g200se.c
index bd6e573c9a1a..3b49e30931e1 100644
--- a/drivers/gpu/drm/mgag200/mgag200_g200se.c
+++ b/drivers/gpu/drm/mgag200/mgag200_g200se.c
@@ -437,7 +437,7 @@  static int mgag200_g200se_pipeline_init(struct mga_device *mdev)
  */
 
 static const struct mgag200_device_info mgag200_g200se_a_01_device_info =
-	MGAG200_DEVICE_INFO_INIT(1600, 1200, 24400, false, 0, 1, true);
+	MGAG200_DEVICE_INFO_INIT(1600, 1200, 30100, false, 0, 1, true);
 
 static const struct mgag200_device_info mgag200_g200se_a_02_device_info =
 	MGAG200_DEVICE_INFO_INIT(1920, 1200, 30100, false, 0, 1, true);