From mboxrd@z Thu Jan 1 00:00:00 1970 From: "pelzflorian (Florian Pelz)" Subject: bug#40572: installer networking: Connman detects no technologies on Acer Aspire Date: Mon, 13 Apr 2020 13:57:21 +0200 Message-ID: <20200413115721.mjdrelwvrdvhm7zc@pelzflorian.localdomain> References: <878sj1qcw7.fsf@gnu.org> <20200412120918.bcl5yc37f4fq2gzr@pelzflorian.localdomain> <87wo6klr2u.fsf@gmail.com> <20200412151454.m5xsma6ckltoqsb5@pelzflorian.localdomain> <87v9m4hafw.fsf@gmail.com> <20200412184329.itthwjjjwprhhhbg@pelzflorian.localdomain> <87blnvmzub.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="lpc7sqwgqhws4zyu" Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:34754) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jNxjA-0000iC-Eq for bug-guix@gnu.org; Mon, 13 Apr 2020 07:58:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jNxj0-00083w-B6 for bug-guix@gnu.org; Mon, 13 Apr 2020 07:58:12 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:47770) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jNxiz-00083h-Mj for bug-guix@gnu.org; Mon, 13 Apr 2020 07:58:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jNxiz-0004Gx-KD for bug-guix@gnu.org; Mon, 13 Apr 2020 07:58:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Content-Disposition: inline In-Reply-To: <87blnvmzub.fsf@gnu.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 40572@debbugs.gnu.org --lpc7sqwgqhws4zyu Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Mon, Apr 13, 2020 at 12:42:20PM +0200, Ludovic Courtès wrote: > "pelzflorian (Florian Pelz)" skribis: > > > On Sun, Apr 12, 2020 at 07:37:39PM +0200, Mathieu Othacehe wrote: > >> > >> > Apr 12 16:35:35 localhost vmunix: [ 48.124498] uvesafb: fb0: VESA VGA frame buffer device > >> > Apr 12 16:35:35 localhost vmunix: [ 48.129053] shepherd[1]: Service uvesafb has been started. > >> > Apr 12 16:35:40 localhost shepherd[1]: Service dbus-system could not be started. > >> > Apr 12 16:35:40 localhost shepherd[1]: Service networking depends on dbus-system. > >> > Apr 12 16:35:40 localhost shepherd[1]: Service networking could not be started. > >> > >> I suspect something is going wrong here. The 'networking' service is > >> indeed not started, probably because 'dbus-system' could not be started. > >> > > > > That may be the case. Note dbus-system was started later on, but > > networking was not. > > Did /var/log/messages have additional hints as to why dbus-system was > not started? > Nothing. However, by now I burned a new image to DVD with the attached patch. But I realize my mistake now; due to dbus-daemon eventually starting after networking failed, the logs are lost. I inserted the DVD in an external drive for my slightly faster Macbook (but the DVD drive seems much slower) and (realizing unlike USB I needed to add nomodeset) I got the same error. So the error occurs when booting any computer from DVD, it seems. I attach the unhelpful logs, even though I believe the dbus-daemon log got overwritten by a subsequent successful start … I do not know how to keep earlier logs. Maybe I need to pipe it in a custom gexp? Regards, Florian --lpc7sqwgqhws4zyu Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="0001-add-dbus-debug-flags.patch" >From a5063dd623a0090ec91ff3f7ce2ebc7cdf28e5d6 Mon Sep 17 00:00:00 2001 From: Florian Pelz Date: Mon, 13 Apr 2020 08:01:57 +0200 Subject: [PATCH] [add dbus debug flags] --- gnu/packages/glib.scm | 3 +++ gnu/services/dbus.scm | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index c98d8c18f5..227851f100 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -105,6 +105,9 @@ ;; Install the session bus socket under /tmp. "--with-session-socket-dir=/tmp" + ;; Debugging: + "--enable-verbose-mode" + ;; Use /etc/dbus-1 for system-wide config. ;; Look for configuration file under ;; /etc/dbus-1. This is notably required by diff --git a/gnu/services/dbus.scm b/gnu/services/dbus.scm index 7b3c8100e2..1270883c4a 100644 --- a/gnu/services/dbus.scm +++ b/gnu/services/dbus.scm @@ -189,7 +189,10 @@ includes the @code{etc/dbus-1/system.d} directories of each package listed in (requirement '(user-processes syslogd)) (start #~(make-forkexec-constructor (list (string-append #$dbus "/bin/dbus-daemon") - "--nofork" "--system" "--syslog-only") + "--nofork" "--system" "--syslog") + #:environment-variables + (cons "DBUS_VERBOSE=1" (default-environment-variables)) + #:log-file "/var/log/dbus-daemon" #:pid-file "/var/run/dbus/pid")) (stop #~(make-kill-destructor))))))) -- 2.26.0 --lpc7sqwgqhws4zyu Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=varlogmessages-macbook Apr 13 13:39:15 localhost syslogd (GNU inetutils 1.9.4): restart Apr 13 13:39:15 localhost vmunix: [ 0.000000] Linux version 5.4.31-gnu (nixbld@) (gcc version 7.4.0 (GCC)) #1 SMP 1 Apr 13 13:39:15 localhost vmunix: [ 0.000000] Command line: BOOT_IMAGE=/gnu/store/g56i8savnfr7981fil03idkjl0syj29d-linux-libre-5.4.31/bzImage --root=31393730-3031-3031-3139-343934363833 --system=/gnu/store/9bqn1xalxn9jrhvpv5x5v8z7yv6h8ik9-system --load=/gnu/store/9bqn1xalxn9jrhvpv5x5v8z7yv6h8ik9-system/boot quiet modprobe.blacklist=radeon nomodeset Apr 13 13:39:15 localhost vmunix: [ 0.000000] KERNEL supported cpus: Apr 13 13:39:15 localhost vmunix: [ 0.000000] Intel GenuineIntel Apr 13 13:39:15 localhost vmunix: [ 0.000000] AMD AuthenticAMD Apr 13 13:39:15 localhost vmunix: [ 0.000000] Hygon HygonGenuine Apr 13 13:39:15 localhost vmunix: [ 0.000000] Centaur CentaurHauls Apr 13 13:39:15 localhost vmunix: [ 0.000000] zhaoxin Shanghai Apr 13 13:39:15 localhost vmunix: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' Apr 13 13:39:15 localhost vmunix: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' Apr 13 13:39:15 localhost vmunix: [ 0.000000] x86/fpu: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format. Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-provided physical RAM map: Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000aeffffff] usable Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000af000000-0x00000000beffffff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000bf000000-0x00000000bf70efff] usable Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000bf70f000-0x00000000bf92ffff] ACPI NVS Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000bf930000-0x00000000bf930fff] ACPI data Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000bf931000-0x00000000bf938fff] ACPI NVS Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000bf939000-0x00000000bfef8fff] ACPI data Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000bfef9000-0x00000000bfefefff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000bfeff000-0x00000000bfefffff] ACPI data Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000d3400000-0x00000000d3400fff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved Apr 13 13:39:15 localhost vmunix: [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013fffffff] usable Apr 13 13:39:15 localhost vmunix: [ 0.000000] NX (Execute Disable) protection: active Apr 13 13:39:15 localhost vmunix: [ 0.000000] SMBIOS 2.4 present. Apr 13 13:39:15 localhost vmunix: [ 0.000000] DMI: Apple Inc. MacBookPro7,1/Mac-F222BEC8, BIOS MBP71.88Z.003F.B00.1802021458 02/02/18 Apr 13 13:39:15 localhost vmunix: [ 0.000000] tsc: Fast TSC calibration using PIT Apr 13 13:39:15 localhost vmunix: [ 0.000000] tsc: Detected 2389.132 MHz processor Apr 13 13:39:15 localhost vmunix: [ 0.009114] last_pfn = 0x140000 max_arch_pfn = 0x400000000 Apr 13 13:39:15 localhost vmunix: [ 0.010270] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT Apr 13 13:39:15 localhost vmunix: [ 0.010401] last_pfn = 0xbf70f max_arch_pfn = 0x400000000 Apr 13 13:39:15 localhost vmunix: [ 0.026639] check: Scanning 1 areas for low memory corruption Apr 13 13:39:15 localhost shepherd[1]: Service syslogd has been started. Apr 13 13:39:15 localhost vmunix: [ 0.027295] RAMDISK: [mem 0x36b91000-0x375bffff] Apr 13 13:39:15 localhost vmunix: [ 0.027301] ACPI: Early table checksum verification disabled Apr 13 13:39:15 localhost vmunix: [ 0.027307] ACPI: RSDP 0x00000000000FE020 000024 (v02 APPLE ) Apr 13 13:39:15 localhost vmunix: [ 0.027311] ACPI: XSDT 0x00000000BF96A1C0 000084 (v01 APPLE Apple00 0000003F 01000013) Apr 13 13:39:15 localhost vmunix: [ 0.027318] ACPI: FACP 0x00000000BF968000 0000F4 (v04 APPLE Apple00 0000003F Loki 0000005F) Apr 13 13:39:15 localhost vmunix: [ 0.027325] ACPI: DSDT 0x00000000BF95A000 0061ED (v01 APPLE MacBookP 00070001 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.027329] ACPI: FACS 0x00000000BF71E000 000040 Apr 13 13:39:15 localhost vmunix: [ 0.027332] ACPI: FACS 0x00000000BF71E000 000040 Apr 13 13:39:15 localhost vmunix: [ 0.027335] ACPI: HPET 0x00000000BF967000 000038 (v01 APPLE Apple00 00000001 Loki 0000005F) Apr 13 13:39:15 localhost vmunix: [ 0.027340] ACPI: APIC 0x00000000BF966000 000068 (v01 APPLE Apple00 00000001 Loki 0000005F) Apr 13 13:39:15 localhost vmunix: [ 0.027344] ACPI: APIC 0x00000000BF965000 000068 (v02 APPLE Apple00 00000001 Loki 0000005F) Apr 13 13:39:15 localhost vmunix: [ 0.027347] ACPI: ASF! 0x00000000BF963000 0000A5 (v32 APPLE Apple00 00000001 Loki 0000005F) Apr 13 13:39:15 localhost vmunix: [ 0.027352] ACPI: SBST 0x00000000BF962000 000030 (v01 APPLE Apple00 00000001 Loki 0000005F) Apr 13 13:39:15 localhost vmunix: [ 0.027356] ACPI: ECDT 0x00000000BF961000 000053 (v01 APPLE Apple00 00000001 Loki 0000005F) Apr 13 13:39:15 localhost vmunix: [ 0.027360] ACPI: SSDT 0x00000000BF956000 000024 (v01 APPLE Apple 00001000 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.027364] ACPI: SSDT 0x00000000BF955000 0004DC (v01 APPLE CpuPm 00003000 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.027368] ACPI: MCFG 0x00000000BF964000 00003C (v01 APPLE Apple00 00000001 Loki 0000005F) Apr 13 13:39:15 localhost vmunix: [ 0.027372] ACPI: SSDT 0x00000000BF959000 0000A5 (v01 SataRe SataPri 00001000 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.027376] ACPI: SSDT 0x00000000BF958000 00009F (v01 SataRe SataSec 00001000 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.027380] ACPI: BIOS bug: multiple APIC/MADT found, using 0 Apr 13 13:39:15 localhost vmunix: [ 0.027381] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org Apr 13 13:39:15 localhost vmunix: [ 0.027387] ACPI: DMI detected to setup _OSI("Darwin"): Apple hardware Apr 13 13:39:15 localhost vmunix: [ 0.027487] No NUMA configuration found Apr 13 13:39:15 localhost vmunix: [ 0.027488] Faking a node at [mem 0x0000000000000000-0x000000013fffffff] Apr 13 13:39:15 localhost vmunix: [ 0.027492] NODE_DATA(0) allocated [mem 0x13fffa000-0x13fffdfff] Apr 13 13:39:15 localhost vmunix: [ 0.027525] Zone ranges: Apr 13 13:39:15 localhost vmunix: [ 0.027526] DMA32 [mem 0x0000000000001000-0x00000000ffffffff] Apr 13 13:39:15 localhost vmunix: [ 0.027527] Normal [mem 0x0000000100000000-0x000000013fffffff] Apr 13 13:39:15 localhost vmunix: [ 0.027529] Device empty Apr 13 13:39:15 localhost vmunix: [ 0.027530] Movable zone start for each node Apr 13 13:39:15 localhost vmunix: [ 0.027531] Early memory node ranges Apr 13 13:39:15 localhost vmunix: [ 0.027532] node 0: [mem 0x0000000000001000-0x000000000009efff] Apr 13 13:39:15 localhost vmunix: [ 0.027533] node 0: [mem 0x0000000000100000-0x00000000aeffffff] Apr 13 13:39:15 localhost vmunix: [ 0.027534] node 0: [mem 0x00000000bf000000-0x00000000bf70efff] Apr 13 13:39:15 localhost vmunix: [ 0.027535] node 0: [mem 0x0000000100000000-0x000000013fffffff] Apr 13 13:39:15 localhost vmunix: [ 0.028061] Zeroed struct page in unavailable ranges: 35155 pages Apr 13 13:39:15 localhost vmunix: [ 0.028063] Initmem setup node 0 [mem 0x0000000000001000-0x000000013fffffff] Apr 13 13:39:15 localhost vmunix: [ 0.059139] ACPI: PM-Timer IO Port: 0x408 Apr 13 13:39:15 localhost vmunix: [ 0.059153] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) Apr 13 13:39:15 localhost vmunix: [ 0.059154] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) Apr 13 13:39:15 localhost vmunix: [ 0.059169] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23 Apr 13 13:39:15 localhost vmunix: [ 0.059171] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) Apr 13 13:39:15 localhost vmunix: [ 0.059173] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) Apr 13 13:39:15 localhost vmunix: [ 0.059178] Using ACPI (MADT) for SMP configuration information Apr 13 13:39:15 localhost vmunix: [ 0.059180] ACPI: HPET id: 0x10de8201 base: 0xfed00000 Apr 13 13:39:15 localhost vmunix: [ 0.059188] smpboot: Allowing 2 CPUs, 0 hotplug CPUs Apr 13 13:39:15 localhost vmunix: [ 0.059216] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] Apr 13 13:39:15 localhost vmunix: [ 0.059218] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] Apr 13 13:39:15 localhost vmunix: [ 0.059219] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff] Apr 13 13:39:15 localhost vmunix: [ 0.059220] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff] Apr 13 13:39:15 localhost vmunix: [ 0.059222] PM: Registered nosave memory: [mem 0xaf000000-0xbeffffff] Apr 13 13:39:15 localhost vmunix: [ 0.059224] PM: Registered nosave memory: [mem 0xbf70f000-0xbf92ffff] Apr 13 13:39:15 localhost vmunix: [ 0.059224] PM: Registered nosave memory: [mem 0xbf930000-0xbf930fff] Apr 13 13:39:15 localhost vmunix: [ 0.059225] PM: Registered nosave memory: [mem 0xbf931000-0xbf938fff] Apr 13 13:39:15 localhost vmunix: [ 0.059226] PM: Registered nosave memory: [mem 0xbf939000-0xbfef8fff] Apr 13 13:39:15 localhost vmunix: [ 0.059227] PM: Registered nosave memory: [mem 0xbfef9000-0xbfefefff] Apr 13 13:39:15 localhost vmunix: [ 0.059227] PM: Registered nosave memory: [mem 0xbfeff000-0xbfefffff] Apr 13 13:39:15 localhost vmunix: [ 0.059228] PM: Registered nosave memory: [mem 0xbff00000-0xd33fffff] Apr 13 13:39:15 localhost vmunix: [ 0.059229] PM: Registered nosave memory: [mem 0xd3400000-0xd3400fff] Apr 13 13:39:15 localhost vmunix: [ 0.059230] PM: Registered nosave memory: [mem 0xd3401000-0xefffffff] Apr 13 13:39:15 localhost vmunix: [ 0.059230] PM: Registered nosave memory: [mem 0xf0000000-0xf3ffffff] Apr 13 13:39:15 localhost vmunix: [ 0.059231] PM: Registered nosave memory: [mem 0xf4000000-0xfebfffff] Apr 13 13:39:15 localhost vmunix: [ 0.059232] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff] Apr 13 13:39:15 localhost vmunix: [ 0.059233] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff] Apr 13 13:39:15 localhost vmunix: [ 0.059234] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] Apr 13 13:39:15 localhost vmunix: [ 0.059234] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff] Apr 13 13:39:15 localhost vmunix: [ 0.059235] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff] Apr 13 13:39:15 localhost vmunix: [ 0.059237] [mem 0xd3401000-0xefffffff] available for PCI devices Apr 13 13:39:15 localhost vmunix: [ 0.059239] Booting paravirtualized kernel on bare hardware Apr 13 13:39:15 localhost vmunix: [ 0.059244] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns Apr 13 13:39:15 localhost vmunix: [ 0.059254] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:2 nr_node_ids:1 Apr 13 13:39:15 localhost vmunix: [ 0.060112] percpu: Embedded 53 pages/cpu s178520 r8192 d30376 u1048576 Apr 13 13:39:15 localhost vmunix: [ 0.060157] Built 1 zonelists, mobility grouping on. Total pages: 965309 Apr 13 13:39:15 localhost vmunix: [ 0.060159] Policy zone: Normal Apr 13 13:39:15 localhost vmunix: [ 0.060161] Kernel command line: BOOT_IMAGE=/gnu/store/g56i8savnfr7981fil03idkjl0syj29d-linux-libre-5.4.31/bzImage --root=31393730-3031-3031-3139-343934363833 --system=/gnu/store/9bqn1xalxn9jrhvpv5x5v8z7yv6h8ik9-system --load=/gnu/store/9bqn1xalxn9jrhvpv5x5v8z7yv6h8ik9-system/boot quiet modprobe.blacklist=radeon nomodeset Apr 13 13:39:15 localhost vmunix: [ 0.060357] You have booted with nomodeset. This means your GPU drivers are DISABLED Apr 13 13:39:15 localhost vmunix: [ 0.060358] Any video related functionality will be severely degraded, and you may not even be able to suspend the system properly Apr 13 13:39:15 localhost vmunix: [ 0.060359] Unless you actually understand what nomodeset does, you should reboot without enabling it Apr 13 13:39:15 localhost vmunix: [ 0.061799] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.062546] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.062603] mem auto-init: stack:byref_all, heap alloc:on, heap free:off Apr 13 13:39:15 localhost vmunix: [ 0.118505] Memory: 3747324K/3922612K available (14339K kernel code, 1525K rwdata, 4180K rodata, 1916K init, 2584K bss, 175288K reserved, 0K cma-reserved) Apr 13 13:39:15 localhost vmunix: [ 0.118518] random: get_random_u64 called from __kmem_cache_create+0x46/0x570 with crng_init=0 Apr 13 13:39:15 localhost vmunix: [ 0.118698] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 Apr 13 13:39:15 localhost vmunix: [ 0.118722] Kernel/User page tables isolation: enabled Apr 13 13:39:15 localhost vmunix: [ 0.118751] ftrace: allocating 41660 entries in 163 pages Apr 13 13:39:15 localhost vmunix: [ 0.144286] rcu: Hierarchical RCU implementation. Apr 13 13:39:15 localhost vmunix: [ 0.144289] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2. Apr 13 13:39:15 localhost vmunix: [ 0.144290] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. Apr 13 13:39:15 localhost vmunix: [ 0.144291] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 Apr 13 13:39:15 localhost vmunix: [ 0.148663] NR_IRQS: 16640, nr_irqs: 440, preallocated irqs: 16 Apr 13 13:39:15 localhost vmunix: [ 0.152927] Console: colour VGA+ 80x25 Apr 13 13:39:15 localhost vmunix: [ 0.152933] printk: console [tty0] enabled Apr 13 13:39:15 localhost vmunix: [ 0.152961] ACPI: Core revision 20190816 Apr 13 13:39:15 localhost vmunix: [ 0.153086] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 76450417870 ns Apr 13 13:39:15 localhost vmunix: [ 0.153103] APIC: Switch to symmetric I/O mode setup Apr 13 13:39:15 localhost vmunix: [ 0.153553] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 Apr 13 13:39:15 localhost vmunix: [ 0.173105] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x22701cf27ae, max_idle_ns: 440795285998 ns Apr 13 13:39:15 localhost vmunix: [ 0.173111] Calibrating delay loop (skipped), value calculated using timer frequency.. 4778.26 BogoMIPS (lpj=9556528) Apr 13 13:39:15 localhost vmunix: [ 0.173113] pid_max: default: 32768 minimum: 301 Apr 13 13:39:15 localhost vmunix: [ 0.173146] LSM: Security Framework initializing Apr 13 13:39:15 localhost vmunix: [ 0.173152] Yama: becoming mindful. Apr 13 13:39:15 localhost vmunix: [ 0.173191] AppArmor: AppArmor initialized Apr 13 13:39:15 localhost vmunix: [ 0.173193] TOMOYO Linux initialized Apr 13 13:39:15 localhost vmunix: [ 0.173264] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.173285] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.173300] *** VALIDATE tmpfs *** Apr 13 13:39:15 localhost vmunix: [ 0.173495] *** VALIDATE proc *** Apr 13 13:39:15 localhost vmunix: [ 0.173569] *** VALIDATE cgroup1 *** Apr 13 13:39:15 localhost vmunix: [ 0.173570] *** VALIDATE cgroup2 *** Apr 13 13:39:15 localhost vmunix: [ 0.173628] mce: CPU0: Thermal monitoring enabled (TM2) Apr 13 13:39:15 localhost vmunix: [ 0.173631] process: using mwait in idle threads Apr 13 13:39:15 localhost vmunix: [ 0.173635] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4 Apr 13 13:39:15 localhost vmunix: [ 0.173636] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0 Apr 13 13:39:15 localhost vmunix: [ 0.173639] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization Apr 13 13:39:15 localhost vmunix: [ 0.173641] Spectre V2 : Mitigation: Full generic retpoline Apr 13 13:39:15 localhost vmunix: [ 0.173642] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch Apr 13 13:39:15 localhost vmunix: [ 0.173643] Speculative Store Bypass: Vulnerable Apr 13 13:39:15 localhost vmunix: [ 0.173647] MDS: Vulnerable: Clear CPU buffers attempted, no microcode Apr 13 13:39:15 localhost vmunix: [ 0.173812] Freeing SMP alternatives memory: 28K Apr 13 13:39:15 localhost vmunix: [ 0.284595] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz (family: 0x6, model: 0x17, stepping: 0xa) Apr 13 13:39:15 localhost vmunix: [ 0.284760] Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver. Apr 13 13:39:15 localhost vmunix: [ 0.284768] ... version: 2 Apr 13 13:39:15 localhost vmunix: [ 0.284769] ... bit width: 40 Apr 13 13:39:15 localhost vmunix: [ 0.284769] ... generic registers: 2 Apr 13 13:39:15 localhost vmunix: [ 0.284771] ... value mask: 000000ffffffffff Apr 13 13:39:15 localhost vmunix: [ 0.284771] ... max period: 000000007fffffff Apr 13 13:39:15 localhost vmunix: [ 0.284772] ... fixed-purpose events: 3 Apr 13 13:39:15 localhost vmunix: [ 0.284773] ... event mask: 0000000700000003 Apr 13 13:39:15 localhost vmunix: [ 0.284826] rcu: Hierarchical SRCU implementation. Apr 13 13:39:15 localhost vmunix: [ 0.285107] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. Apr 13 13:39:15 localhost vmunix: [ 0.285107] smp: Bringing up secondary CPUs ... Apr 13 13:39:15 localhost vmunix: [ 0.285107] x86: Booting SMP configuration: Apr 13 13:39:15 localhost vmunix: [ 0.285107] .... node #0, CPUs: #1 Apr 13 13:39:15 localhost vmunix: [ 0.285140] smp: Brought up 1 node, 2 CPUs Apr 13 13:39:15 localhost vmunix: [ 0.285142] smpboot: Max logical packages: 1 Apr 13 13:39:15 localhost vmunix: [ 0.285144] smpboot: Total of 2 processors activated (9556.52 BogoMIPS) Apr 13 13:39:15 localhost vmunix: [ 0.287165] devtmpfs: initialized Apr 13 13:39:15 localhost vmunix: [ 0.287165] x86/mm: Memory block size: 128MB Apr 13 13:39:15 localhost vmunix: [ 0.287165] PM: Registering ACPI NVS region [mem 0xbf70f000-0xbf92ffff] (2232320 bytes) Apr 13 13:39:15 localhost vmunix: [ 0.287165] PM: Registering ACPI NVS region [mem 0xbf931000-0xbf938fff] (32768 bytes) Apr 13 13:39:15 localhost vmunix: [ 0.287165] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns Apr 13 13:39:15 localhost vmunix: [ 0.287165] futex hash table entries: 512 (order: 3, 32768 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.287165] pinctrl core: initialized pinctrl subsystem Apr 13 13:39:15 localhost vmunix: [ 0.287165] PM: RTC time: 11:38:20, date: 2020-04-13 Apr 13 13:39:15 localhost vmunix: [ 0.287165] NET: Registered protocol family 16 Apr 13 13:39:15 localhost vmunix: [ 0.287165] audit: initializing netlink subsys (disabled) Apr 13 13:39:15 localhost vmunix: [ 0.287165] audit: type=2000 audit(1586777899.132:1): state=initialized audit_enabled=0 res=1 Apr 13 13:39:15 localhost vmunix: [ 0.287165] cpuidle: using governor ladder Apr 13 13:39:15 localhost vmunix: [ 0.287165] cpuidle: using governor menu Apr 13 13:39:15 localhost vmunix: [ 0.289152] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it Apr 13 13:39:15 localhost vmunix: [ 0.289154] ACPI: bus type PCI registered Apr 13 13:39:15 localhost vmunix: [ 0.289156] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 Apr 13 13:39:15 localhost vmunix: [ 0.289439] PCI: MMCONFIG for domain 0000 [bus 00-04] at [mem 0xf0000000-0xf04fffff] (base 0xf0000000) Apr 13 13:39:15 localhost vmunix: [ 0.289454] PCI: MMCONFIG at [mem 0xf0000000-0xf04fffff] reserved in E820 Apr 13 13:39:15 localhost vmunix: [ 0.289466] PCI: Using configuration type 1 for base access Apr 13 13:39:15 localhost vmunix: [ 0.291922] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages Apr 13 13:39:15 localhost vmunix: [ 0.293231] ACPI: Disabled all _OSI OS vendors Apr 13 13:39:15 localhost vmunix: [ 0.293233] ACPI: Added _OSI(Module Device) Apr 13 13:39:15 localhost vmunix: [ 0.293234] ACPI: Added _OSI(Processor Device) Apr 13 13:39:15 localhost vmunix: [ 0.293235] ACPI: Added _OSI(3.0 _SCP Extensions) Apr 13 13:39:15 localhost vmunix: [ 0.293236] ACPI: Added _OSI(Processor Aggregator Device) Apr 13 13:39:15 localhost vmunix: [ 0.293238] ACPI: Added _OSI(Linux-Dell-Video) Apr 13 13:39:15 localhost vmunix: [ 0.293239] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) Apr 13 13:39:15 localhost vmunix: [ 0.293240] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) Apr 13 13:39:15 localhost vmunix: [ 0.293241] ACPI: Added _OSI(Darwin) Apr 13 13:39:15 localhost vmunix: [ 0.299731] ACPI: 5 ACPI AML tables successfully acquired and loaded Apr 13 13:39:15 localhost vmunix: [ 0.300116] ACPI: EC: EC started Apr 13 13:39:15 localhost vmunix: [ 0.300117] ACPI: EC: interrupt blocked Apr 13 13:39:15 localhost vmunix: [ 0.302160] ACPI: \: Used as first EC Apr 13 13:39:15 localhost vmunix: [ 0.302162] ACPI: \: GPE=0x57, EC_CMD/EC_SC=0x66, EC_DATA=0x62 Apr 13 13:39:15 localhost vmunix: [ 0.302163] ACPI: EC: Boot ECDT EC used to handle transactions Apr 13 13:39:15 localhost vmunix: [ 0.302455] ACPI: BIOS _OSI(Darwin) query honored via DMI Apr 13 13:39:15 localhost vmunix: [ 0.303093] ACPI: Dynamic OEM Table Load: Apr 13 13:39:15 localhost vmunix: [ 0.303100] ACPI: SSDT 0xFFFF8F8E3A936800 00027A (v01 APPLE Cpu0Ist 00003000 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.303673] ACPI: Dynamic OEM Table Load: Apr 13 13:39:15 localhost vmunix: [ 0.303680] ACPI: SSDT 0xFFFF8F8E3B330800 0005A6 (v01 APPLE Cpu0Cst 00003001 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.304407] ACPI: Dynamic OEM Table Load: Apr 13 13:39:15 localhost vmunix: [ 0.304413] ACPI: SSDT 0xFFFF8F8E3B311500 0000C8 (v01 APPLE Cpu1Ist 00003000 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.304865] ACPI: Dynamic OEM Table Load: Apr 13 13:39:15 localhost vmunix: [ 0.304871] ACPI: SSDT 0xFFFF8F8E3A909F00 000085 (v01 APPLE Cpu1Cst 00003000 INTL 20061109) Apr 13 13:39:15 localhost vmunix: [ 0.305507] ACPI: Interpreter enabled Apr 13 13:39:15 localhost vmunix: [ 0.305528] ACPI: (supports S0 S3 S4 S5) Apr 13 13:39:15 localhost vmunix: [ 0.305530] ACPI: Using IOAPIC for interrupt routing Apr 13 13:39:15 localhost vmunix: [ 0.305556] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug Apr 13 13:39:15 localhost vmunix: [ 0.305831] ACPI: Enabled 8 GPEs in block 00 to 1F Apr 13 13:39:15 localhost vmunix: [ 0.305844] ACPI: Enabled 3 GPEs in block 20 to 5F Apr 13 13:39:15 localhost vmunix: [ 0.319186] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) Apr 13 13:39:15 localhost vmunix: [ 0.319192] acpi PNP0A08:00: _OSC: OS assumes control of [PCIeHotplug SHPCHotplug AER PCIeCapability LTR] Apr 13 13:39:15 localhost vmunix: [ 0.319204] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-04] only partially covers this bridge Apr 13 13:39:15 localhost vmunix: [ 0.319492] PCI host bridge to bus 0000:00 Apr 13 13:39:15 localhost vmunix: [ 0.319495] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] Apr 13 13:39:15 localhost vmunix: [ 0.319497] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] Apr 13 13:39:15 localhost vmunix: [ 0.319499] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] Apr 13 13:39:15 localhost vmunix: [ 0.319500] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window] Apr 13 13:39:15 localhost vmunix: [ 0.319502] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window] Apr 13 13:39:15 localhost vmunix: [ 0.319504] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window] Apr 13 13:39:15 localhost vmunix: [ 0.319505] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window] Apr 13 13:39:15 localhost vmunix: [ 0.319507] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window] Apr 13 13:39:15 localhost vmunix: [ 0.319509] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window] Apr 13 13:39:15 localhost vmunix: [ 0.319511] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window] Apr 13 13:39:15 localhost vmunix: [ 0.319512] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window] Apr 13 13:39:15 localhost vmunix: [ 0.319514] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window] Apr 13 13:39:15 localhost vmunix: [ 0.319516] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window] Apr 13 13:39:15 localhost vmunix: [ 0.319517] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window] Apr 13 13:39:15 localhost vmunix: [ 0.319519] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window] Apr 13 13:39:15 localhost vmunix: [ 0.319521] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window] Apr 13 13:39:15 localhost vmunix: [ 0.319522] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] Apr 13 13:39:15 localhost vmunix: [ 0.319524] pci_bus 0000:00: root bus resource [bus 00-ff] Apr 13 13:39:15 localhost vmunix: [ 0.319545] pci 0000:00:00.0: [10de:0d60] type 00 class 0x060000 Apr 13 13:39:15 localhost vmunix: [ 0.319794] pci 0000:00:00.1: [10de:0d68] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.320041] pci 0000:00:01.0: [10de:0d6d] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.320262] pci 0000:00:01.1: [10de:0d6e] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.320501] pci 0000:00:01.2: [10de:0d6f] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.320720] pci 0000:00:01.3: [10de:0d70] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.320944] pci 0000:00:02.0: [10de:0d71] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.321167] pci 0000:00:02.1: [10de:0d72] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.321386] pci 0000:00:03.0: [10de:0d80] type 00 class 0x060100 Apr 13 13:39:15 localhost vmunix: [ 0.321398] pci 0000:00:03.0: reg 0x10: [io 0x2100-0x21ff] Apr 13 13:39:15 localhost vmunix: [ 0.321549] pci 0000:00:03.1: [10de:0d7b] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.321722] pci 0000:00:03.2: [10de:0d79] type 00 class 0x0c0500 Apr 13 13:39:15 localhost vmunix: [ 0.321737] pci 0000:00:03.2: reg 0x10: [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.321759] pci 0000:00:03.2: reg 0x20: [io 0x2240-0x227f] Apr 13 13:39:15 localhost vmunix: [ 0.321765] pci 0000:00:03.2: reg 0x24: [io 0x2200-0x223f] Apr 13 13:39:15 localhost vmunix: [ 0.321801] pci 0000:00:03.2: PME# supported from D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.321928] pci 0000:00:03.3: [10de:0d69] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.322183] pci 0000:00:03.4: [10de:0d7a] type 00 class 0x0b4000 Apr 13 13:39:15 localhost vmunix: [ 0.322215] pci 0000:00:03.4: reg 0x10: [mem 0xd3400000-0xd347ffff] Apr 13 13:39:15 localhost vmunix: [ 0.322456] pci 0000:00:04.0: [10de:0d9c] type 00 class 0x0c0310 Apr 13 13:39:15 localhost vmunix: [ 0.322470] pci 0000:00:04.0: reg 0x10: [mem 0xd348a000-0xd348afff] Apr 13 13:39:15 localhost vmunix: [ 0.322522] pci 0000:00:04.0: supports D1 D2 Apr 13 13:39:15 localhost vmunix: [ 0.322524] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.322681] pci 0000:00:04.1: [10de:0d9d] type 00 class 0x0c0320 Apr 13 13:39:15 localhost vmunix: [ 0.322696] pci 0000:00:04.1: reg 0x10: [mem 0xd348b100-0xd348b1ff] Apr 13 13:39:15 localhost vmunix: [ 0.322754] pci 0000:00:04.1: supports D1 D2 Apr 13 13:39:15 localhost vmunix: [ 0.322756] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.322929] pci 0000:00:06.0: [10de:0d9c] type 00 class 0x0c0310 Apr 13 13:39:15 localhost vmunix: [ 0.322944] pci 0000:00:06.0: reg 0x10: [mem 0xd3489000-0xd3489fff] Apr 13 13:39:15 localhost vmunix: [ 0.322996] pci 0000:00:06.0: supports D1 D2 Apr 13 13:39:15 localhost vmunix: [ 0.322997] pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.323151] pci 0000:00:06.1: [10de:0d9d] type 00 class 0x0c0320 Apr 13 13:39:15 localhost vmunix: [ 0.323167] pci 0000:00:06.1: reg 0x10: [mem 0xd348b000-0xd348b0ff] Apr 13 13:39:15 localhost vmunix: [ 0.323225] pci 0000:00:06.1: supports D1 D2 Apr 13 13:39:15 localhost vmunix: [ 0.323226] pci 0000:00:06.1: PME# supported from D0 D1 D2 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.323413] pci 0000:00:08.0: [10de:0d94] type 00 class 0x040300 Apr 13 13:39:15 localhost vmunix: [ 0.323429] pci 0000:00:08.0: reg 0x10: [mem 0xd3480000-0xd3483fff] Apr 13 13:39:15 localhost vmunix: [ 0.323489] pci 0000:00:08.0: PME# supported from D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.323621] pci 0000:00:0a.0: [10de:0d85] type 00 class 0x010185 Apr 13 13:39:15 localhost vmunix: [ 0.323634] pci 0000:00:0a.0: reg 0x10: [io 0x2298-0x229f] Apr 13 13:39:15 localhost vmunix: [ 0.323640] pci 0000:00:0a.0: reg 0x14: [io 0x22a4-0x22a7] Apr 13 13:39:15 localhost vmunix: [ 0.323646] pci 0000:00:0a.0: reg 0x18: [io 0x2290-0x2297] Apr 13 13:39:15 localhost vmunix: [ 0.323651] pci 0000:00:0a.0: reg 0x1c: [io 0x22a0-0x22a3] Apr 13 13:39:15 localhost vmunix: [ 0.323657] pci 0000:00:0a.0: reg 0x20: [io 0x2280-0x228f] Apr 13 13:39:15 localhost vmunix: [ 0.323663] pci 0000:00:0a.0: reg 0x24: [mem 0xd3484000-0xd3485fff] Apr 13 13:39:15 localhost vmunix: [ 0.323800] pci 0000:00:0b.0: [10de:0d75] type 00 class 0x050000 Apr 13 13:39:15 localhost vmunix: [ 0.323815] pci 0000:00:0b.0: reg 0x10: [mem 0xd3488000-0xd3488fff] Apr 13 13:39:15 localhost vmunix: [ 0.323996] pci 0000:00:0e.0: [10de:0d9a] type 01 class 0x060400 Apr 13 13:39:15 localhost vmunix: [ 0.324143] pci 0000:00:0e.0: enabling Extended Tags Apr 13 13:39:15 localhost vmunix: [ 0.324311] pci 0000:00:0e.0: PME# supported from D0 D1 D2 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.324536] pci 0000:00:15.0: [10de:0d9b] type 01 class 0x060400 Apr 13 13:39:15 localhost vmunix: [ 0.324683] pci 0000:00:15.0: enabling Extended Tags Apr 13 13:39:15 localhost vmunix: [ 0.324851] pci 0000:00:15.0: PME# supported from D0 D1 D2 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.325067] pci 0000:00:16.0: [10de:0d9b] type 01 class 0x060400 Apr 13 13:39:15 localhost vmunix: [ 0.325216] pci 0000:00:16.0: enabling Extended Tags Apr 13 13:39:15 localhost vmunix: [ 0.325384] pci 0000:00:16.0: PME# supported from D0 D1 D2 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.325566] pci 0000:00:17.0: [10de:0d76] type 01 class 0x060400 Apr 13 13:39:15 localhost vmunix: [ 0.325613] pci 0000:00:17.0: PME# supported from D0 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.325870] pci 0000:01:00.0: [11c1:5901] type 00 class 0x0c0010 Apr 13 13:39:15 localhost vmunix: [ 0.325903] pci 0000:01:00.0: reg 0x10: [mem 0xd3300000-0xd3300fff 64bit] Apr 13 13:39:15 localhost vmunix: [ 0.326025] pci 0000:01:00.0: supports D1 D2 Apr 13 13:39:15 localhost vmunix: [ 0.326027] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.326239] pci 0000:00:0e.0: PCI bridge to [bus 01] Apr 13 13:39:15 localhost vmunix: [ 0.326261] pci 0000:00:0e.0: bridge window [mem 0xd3300000-0xd33fffff] Apr 13 13:39:15 localhost vmunix: [ 0.326588] pci 0000:02:00.0: [14e4:432b] type 00 class 0x028000 Apr 13 13:39:15 localhost vmunix: [ 0.326619] pci 0000:02:00.0: reg 0x10: [mem 0xd3200000-0xd3203fff 64bit] Apr 13 13:39:15 localhost vmunix: [ 0.326674] pci 0000:02:00.0: enabling Extended Tags Apr 13 13:39:15 localhost vmunix: [ 0.326747] pci 0000:02:00.0: supports D1 D2 Apr 13 13:39:15 localhost vmunix: [ 0.326749] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.327069] pci 0000:00:15.0: PCI bridge to [bus 02] Apr 13 13:39:15 localhost vmunix: [ 0.327091] pci 0000:00:15.0: bridge window [mem 0xd3200000-0xd32fffff] Apr 13 13:39:15 localhost vmunix: [ 0.327397] pci 0000:03:00.0: [14e4:1684] type 00 class 0x020000 Apr 13 13:39:15 localhost vmunix: [ 0.327429] pci 0000:03:00.0: reg 0x10: [mem 0xd3100000-0xd310ffff 64bit] Apr 13 13:39:15 localhost vmunix: [ 0.327484] pci 0000:03:00.0: enabling Extended Tags Apr 13 13:39:15 localhost vmunix: [ 0.327566] pci 0000:03:00.0: PME# supported from D3hot D3cold Apr 13 13:39:15 localhost vmunix: [ 0.327724] pci 0000:00:16.0: PCI bridge to [bus 03] Apr 13 13:39:15 localhost vmunix: [ 0.327746] pci 0000:00:16.0: bridge window [mem 0xd3100000-0xd31fffff] Apr 13 13:39:15 localhost vmunix: [ 0.327777] pci_bus 0000:04: extended config space not accessible Apr 13 13:39:15 localhost vmunix: [ 0.327814] pci 0000:04:00.0: [10de:08a0] type 00 class 0x030000 Apr 13 13:39:15 localhost vmunix: [ 0.327825] pci 0000:04:00.0: reg 0x10: [mem 0xd2000000-0xd2ffffff] Apr 13 13:39:15 localhost vmunix: [ 0.327833] pci 0000:04:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref] Apr 13 13:39:15 localhost vmunix: [ 0.327841] pci 0000:04:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref] Apr 13 13:39:15 localhost vmunix: [ 0.327846] pci 0000:04:00.0: reg 0x24: [io 0x1000-0x107f] Apr 13 13:39:15 localhost vmunix: [ 0.327852] pci 0000:04:00.0: reg 0x30: [mem 0xd3000000-0xd301ffff pref] Apr 13 13:39:15 localhost vmunix: [ 0.327861] pci 0000:04:00.0: Enabling HDA controller Apr 13 13:39:15 localhost vmunix: [ 0.328058] pci 0000:00:17.0: PCI bridge to [bus 04] Apr 13 13:39:15 localhost vmunix: [ 0.328062] pci 0000:00:17.0: bridge window [io 0x1000-0x1fff] Apr 13 13:39:15 localhost vmunix: [ 0.328065] pci 0000:00:17.0: bridge window [mem 0xd2000000-0xd30fffff] Apr 13 13:39:15 localhost vmunix: [ 0.328069] pci 0000:00:17.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref] Apr 13 13:39:15 localhost vmunix: [ 0.328610] ACPI: PCI Interrupt Link [LNK1] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.328719] ACPI: PCI Interrupt Link [LNK2] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.328826] ACPI: PCI Interrupt Link [LNK3] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.328932] ACPI: PCI Interrupt Link [LNK4] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329039] ACPI: PCI Interrupt Link [Z00B] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329152] ACPI: PCI Interrupt Link [Z00C] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329259] ACPI: PCI Interrupt Link [Z00D] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329365] ACPI: PCI Interrupt Link [Z00E] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329472] ACPI: PCI Interrupt Link [Z00J] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329579] ACPI: PCI Interrupt Link [Z00K] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329685] ACPI: PCI Interrupt Link [Z00L] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329793] ACPI: PCI Interrupt Link [Z00M] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.329900] ACPI: PCI Interrupt Link [Z00N] (IRQs 16 17 18 19 20 21 22 23) *11 Apr 13 13:39:15 localhost vmunix: [ 0.330007] ACPI: PCI Interrupt Link [Z00O] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.330114] ACPI: PCI Interrupt Link [Z00P] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.330222] ACPI: PCI Interrupt Link [Z00Q] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.330328] ACPI: PCI Interrupt Link [LSMB] (IRQs 16 17 18 19 20 21 22 23) *15 Apr 13 13:39:15 localhost vmunix: [ 0.330434] ACPI: PCI Interrupt Link [LUS0] (IRQs 16 17 18 19 20 21 22 23) *11 Apr 13 13:39:15 localhost vmunix: [ 0.330540] ACPI: PCI Interrupt Link [LUS2] (IRQs 16 17 18 19 20 21 22 23) *10 Apr 13 13:39:15 localhost vmunix: [ 0.330646] ACPI: PCI Interrupt Link [LMAC] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.330751] ACPI: PCI Interrupt Link [LAZA] (IRQs 16 17 18 19 20 21 22 23) *15 Apr 13 13:39:15 localhost vmunix: [ 0.330857] ACPI: PCI Interrupt Link [LGPU] (IRQs 16 17 18 19 20 21 22 23) *7 Apr 13 13:39:15 localhost vmunix: [ 0.330963] ACPI: PCI Interrupt Link [LPID] (IRQs 16 17 18 19 20 21 22 23) *0, disabled. Apr 13 13:39:15 localhost vmunix: [ 0.331071] ACPI: PCI Interrupt Link [LSI0] (IRQs 16 17 18 19 20 21 22 23) *11 Apr 13 13:39:15 localhost vmunix: [ 0.331178] ACPI: PCI Interrupt Link [Z000] (IRQs 16 17 18 19 20 21 22 23) *7 Apr 13 13:39:15 localhost vmunix: [ 0.331285] ACPI: PCI Interrupt Link [Z001] (IRQs 16 17 18 19 20 21 22 23) *5 Apr 13 13:39:15 localhost vmunix: [ 0.331392] ACPI: PCI Interrupt Link [LPMU] (IRQs 16 17 18 19 20 21 22 23) *14 Apr 13 13:39:15 localhost vmunix: [ 0.331730] ACPI: EC: interrupt unblocked Apr 13 13:39:15 localhost vmunix: [ 0.331744] ACPI: EC: event unblocked Apr 13 13:39:15 localhost vmunix: [ 0.331755] ACPI: \_SB_.PCI0.LPCB.EC__: GPE=0x57, EC_CMD/EC_SC=0x66, EC_DATA=0x62 Apr 13 13:39:15 localhost vmunix: [ 0.331757] ACPI: \_SB_.PCI0.LPCB.EC__: Boot DSDT EC used to handle transactions and events Apr 13 13:39:15 localhost vmunix: [ 0.331900] iommu: Default domain type: Translated Apr 13 13:39:15 localhost vmunix: [ 0.331900] pci 0000:04:00.0: vgaarb: setting as boot VGA device Apr 13 13:39:15 localhost vmunix: [ 0.331900] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none Apr 13 13:39:15 localhost vmunix: [ 0.331900] pci 0000:04:00.0: vgaarb: bridge control possible Apr 13 13:39:15 localhost vmunix: [ 0.331900] vgaarb: loaded Apr 13 13:39:15 localhost vmunix: [ 0.331900] SCSI subsystem initialized Apr 13 13:39:15 localhost vmunix: [ 0.331900] ACPI: bus type USB registered Apr 13 13:39:15 localhost vmunix: [ 0.331900] usbcore: registered new interface driver usbfs Apr 13 13:39:15 localhost vmunix: [ 0.331900] usbcore: registered new interface driver hub Apr 13 13:39:15 localhost vmunix: [ 0.331900] usbcore: registered new device driver usb Apr 13 13:39:15 localhost vmunix: [ 0.331900] EDAC MC: Ver: 3.0.0 Apr 13 13:39:15 localhost vmunix: [ 0.333208] PCI: Using ACPI for IRQ routing Apr 13 13:39:15 localhost vmunix: [ 0.333800] NetLabel: Initializing Apr 13 13:39:15 localhost vmunix: [ 0.333801] NetLabel: domain hash size = 128 Apr 13 13:39:15 localhost vmunix: [ 0.333801] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO Apr 13 13:39:15 localhost vmunix: [ 0.333827] NetLabel: unlabeled traffic allowed by default Apr 13 13:39:15 localhost vmunix: [ 0.333850] hpet: 4 channels of 0 reserved for per-cpu timers Apr 13 13:39:15 localhost vmunix: [ 0.333850] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31, 31 Apr 13 13:39:15 localhost vmunix: [ 0.333850] hpet0: 4 comparators, 64-bit 25.000000 MHz counter Apr 13 13:39:15 localhost vmunix: [ 0.335232] clocksource: Switched to clocksource tsc-early Apr 13 13:39:15 localhost vmunix: [ 0.353408] *** VALIDATE bpf *** Apr 13 13:39:15 localhost vmunix: [ 0.353530] VFS: Disk quotas dquot_6.6.0 Apr 13 13:39:15 localhost vmunix: [ 0.353555] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) Apr 13 13:39:15 localhost vmunix: [ 0.353593] *** VALIDATE ramfs *** Apr 13 13:39:15 localhost vmunix: [ 0.353597] *** VALIDATE hugetlbfs *** Apr 13 13:39:15 localhost vmunix: [ 0.353752] AppArmor: AppArmor Filesystem Enabled Apr 13 13:39:15 localhost vmunix: [ 0.353798] pnp: PnP ACPI init Apr 13 13:39:15 localhost vmunix: [ 0.353968] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354166] system 00:01: [mem 0xfed00000-0xfed003ff] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354268] pnp 00:02: disabling [io 0x0010-0x001f] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354270] pnp 00:02: disabling [io 0x0022-0x003f] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354272] pnp 00:02: disabling [io 0x0044-0x005f] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354274] pnp 00:02: disabling [io 0x0063] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354276] pnp 00:02: disabling [io 0x0065] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354278] pnp 00:02: disabling [io 0x0067-0x006f] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354280] pnp 00:02: disabling [io 0x0072-0x0073] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354282] pnp 00:02: disabling [io 0x0074-0x007f] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354284] pnp 00:02: disabling [io 0x0091-0x0093] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354286] pnp 00:02: disabling [io 0x0097-0x009f] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354288] pnp 00:02: disabling [io 0x00a2-0x00bf] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354290] pnp 00:02: disabling [io 0x00e0-0x00ef] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354292] pnp 00:02: disabling [io 0x0080] because it overlaps 0000:00:03.2 BAR 0 [io 0x0000-0x00ff] Apr 13 13:39:15 localhost vmunix: [ 0.354343] system 00:02: [io 0x0400-0x047f] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354345] system 00:02: [io 0x0480-0x04ff] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354348] system 00:02: [io 0x0500-0x057f] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354350] system 00:02: [io 0x0580-0x05ff] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354352] system 00:02: [io 0x0800-0x087f] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354354] system 00:02: [io 0x0880-0x08ff] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354356] system 00:02: [io 0x04d0-0x04d1] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.354358] system 00:02: [io 0x0295-0x0296] has been reserved Apr 13 13:39:15 localhost vmunix: [ 0.355040] pnp: PnP ACPI: found 4 devices Apr 13 13:39:15 localhost vmunix: [ 0.357159] thermal_sys: Registered thermal governor 'fair_share' Apr 13 13:39:15 localhost vmunix: [ 0.357160] thermal_sys: Registered thermal governor 'bang_bang' Apr 13 13:39:15 localhost vmunix: [ 0.357161] thermal_sys: Registered thermal governor 'step_wise' Apr 13 13:39:15 localhost vmunix: [ 0.357162] thermal_sys: Registered thermal governor 'user_space' Apr 13 13:39:15 localhost vmunix: [ 0.357163] thermal_sys: Registered thermal governor 'power_allocator' Apr 13 13:39:15 localhost vmunix: [ 0.361675] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns Apr 13 13:39:15 localhost vmunix: [ 0.361739] pci 0000:00:03.2: BAR 0: assigned [io 0x2000-0x20ff] Apr 13 13:39:15 localhost vmunix: [ 0.361745] pci 0000:00:0e.0: PCI bridge to [bus 01] Apr 13 13:39:15 localhost vmunix: [ 0.361757] pci 0000:00:0e.0: bridge window [mem 0xd3300000-0xd33fffff] Apr 13 13:39:15 localhost vmunix: [ 0.361778] pci 0000:00:15.0: PCI bridge to [bus 02] Apr 13 13:39:15 localhost vmunix: [ 0.361789] pci 0000:00:15.0: bridge window [mem 0xd3200000-0xd32fffff] Apr 13 13:39:15 localhost vmunix: [ 0.361810] pci 0000:00:16.0: PCI bridge to [bus 03] Apr 13 13:39:15 localhost vmunix: [ 0.361820] pci 0000:00:16.0: bridge window [mem 0xd3100000-0xd31fffff] Apr 13 13:39:15 localhost vmunix: [ 0.361841] pci 0000:00:17.0: PCI bridge to [bus 04] Apr 13 13:39:15 localhost vmunix: [ 0.361844] pci 0000:00:17.0: bridge window [io 0x1000-0x1fff] Apr 13 13:39:15 localhost vmunix: [ 0.361847] pci 0000:00:17.0: bridge window [mem 0xd2000000-0xd30fffff] Apr 13 13:39:15 localhost vmunix: [ 0.361850] pci 0000:00:17.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref] Apr 13 13:39:15 localhost vmunix: [ 0.361854] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] Apr 13 13:39:15 localhost vmunix: [ 0.361856] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] Apr 13 13:39:15 localhost vmunix: [ 0.361857] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] Apr 13 13:39:15 localhost vmunix: [ 0.361859] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window] Apr 13 13:39:15 localhost vmunix: [ 0.361861] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window] Apr 13 13:39:15 localhost vmunix: [ 0.361863] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window] Apr 13 13:39:15 localhost vmunix: [ 0.361864] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window] Apr 13 13:39:15 localhost vmunix: [ 0.361866] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window] Apr 13 13:39:15 localhost vmunix: [ 0.361868] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window] Apr 13 13:39:15 localhost vmunix: [ 0.361870] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window] Apr 13 13:39:15 localhost vmunix: [ 0.361871] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window] Apr 13 13:39:15 localhost vmunix: [ 0.361873] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window] Apr 13 13:39:15 localhost vmunix: [ 0.361875] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window] Apr 13 13:39:15 localhost vmunix: [ 0.361876] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window] Apr 13 13:39:15 localhost vmunix: [ 0.361878] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window] Apr 13 13:39:15 localhost vmunix: [ 0.361880] pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window] Apr 13 13:39:15 localhost vmunix: [ 0.361882] pci_bus 0000:00: resource 20 [mem 0xc0000000-0xfebfffff window] Apr 13 13:39:15 localhost vmunix: [ 0.361884] pci_bus 0000:01: resource 1 [mem 0xd3300000-0xd33fffff] Apr 13 13:39:15 localhost vmunix: [ 0.361886] pci_bus 0000:02: resource 1 [mem 0xd3200000-0xd32fffff] Apr 13 13:39:15 localhost vmunix: [ 0.361887] pci_bus 0000:03: resource 1 [mem 0xd3100000-0xd31fffff] Apr 13 13:39:15 localhost vmunix: [ 0.361889] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff] Apr 13 13:39:15 localhost vmunix: [ 0.361891] pci_bus 0000:04: resource 1 [mem 0xd2000000-0xd30fffff] Apr 13 13:39:15 localhost vmunix: [ 0.361892] pci_bus 0000:04: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref] Apr 13 13:39:15 localhost vmunix: [ 0.362008] NET: Registered protocol family 2 Apr 13 13:39:15 localhost vmunix: [ 0.362217] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.362304] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.362507] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.362587] TCP: Hash tables configured (established 32768 bind 32768) Apr 13 13:39:15 localhost vmunix: [ 0.362665] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.362696] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) Apr 13 13:39:15 localhost vmunix: [ 0.362750] NET: Registered protocol family 1 Apr 13 13:39:15 localhost vmunix: [ 0.363182] PCI Interrupt Link [LUS0] enabled at IRQ 23 Apr 13 13:39:15 localhost vmunix: [ 0.386269] pci 0000:00:04.0: quirk_usb_early_handoff+0x0/0x6c0 took 22863 usecs Apr 13 13:39:15 localhost vmunix: [ 0.386566] PCI Interrupt Link [LUS2] enabled at IRQ 22 Apr 13 13:39:15 localhost vmunix: [ 0.387023] PCI Interrupt Link [Z000] enabled at IRQ 21 Apr 13 13:39:15 localhost vmunix: [ 0.387472] PCI Interrupt Link [Z001] enabled at IRQ 20 Apr 13 13:39:15 localhost vmunix: [ 0.388110] pci 0000:04:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] Apr 13 13:39:15 localhost vmunix: [ 0.388112] PCI: CLS 256 bytes, default 64 Apr 13 13:39:15 localhost vmunix: [ 0.388186] Trying to unpack rootfs image as initramfs... Apr 13 13:39:15 localhost vmunix: [ 0.636542] Freeing initrd memory: 10428K Apr 13 13:39:15 localhost vmunix: [ 0.636561] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) Apr 13 13:39:15 localhost vmunix: [ 0.636563] software IO TLB: mapped [mem 0xab000000-0xaf000000] (64MB) Apr 13 13:39:15 localhost vmunix: [ 0.636802] check: Scanning for low memory corruption every 60 seconds Apr 13 13:39:15 localhost vmunix: [ 0.636831] efifb: dmi detected MacBookPro7,1 - framebuffer at 0xc0010000 (1280x800, stride 8192) Apr 13 13:39:15 localhost vmunix: [ 0.637337] Initialise system trusted keyrings Apr 13 13:39:15 localhost vmunix: [ 0.637423] workingset: timestamp_bits=40 max_order=20 bucket_order=0 Apr 13 13:39:15 localhost vmunix: [ 0.639447] zbud: loaded Apr 13 13:39:15 localhost vmunix: [ 0.640402] Allocating IMA blacklist keyring. Apr 13 13:39:15 localhost vmunix: [ 0.644643] Key type asymmetric registered Apr 13 13:39:15 localhost vmunix: [ 0.644645] Asymmetric key parser 'x509' registered Apr 13 13:39:15 localhost vmunix: [ 0.644657] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) Apr 13 13:39:15 localhost vmunix: [ 0.644704] io scheduler mq-deadline registered Apr 13 13:39:15 localhost vmunix: [ 0.645275] PCI Interrupt Link [Z00B] enabled at IRQ 19 Apr 13 13:39:15 localhost vmunix: [ 0.645829] PCI Interrupt Link [Z00J] enabled at IRQ 18 Apr 13 13:39:15 localhost vmunix: [ 0.646365] PCI Interrupt Link [Z00N] enabled at IRQ 17 Apr 13 13:39:15 localhost vmunix: [ 0.646632] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Apr 13 13:39:15 localhost vmunix: [ 0.646737] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0 Apr 13 13:39:15 localhost vmunix: [ 0.646789] ACPI: Lid Switch [LID0] Apr 13 13:39:15 localhost vmunix: [ 0.646835] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1 Apr 13 13:39:15 localhost vmunix: [ 0.646859] ACPI: Power Button [PWRB] Apr 13 13:39:15 localhost vmunix: [ 0.646908] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2 Apr 13 13:39:15 localhost vmunix: [ 0.646933] ACPI: Sleep Button [SLPB] Apr 13 13:39:15 localhost vmunix: [ 0.647017] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3 Apr 13 13:39:15 localhost vmunix: [ 0.647054] ACPI: Power Button [PWRF] Apr 13 13:39:15 localhost vmunix: [ 0.647182] tsc: Marking TSC unstable due to TSC halts in idle Apr 13 13:39:15 localhost vmunix: [ 0.647244] clocksource: Switched to clocksource hpet Apr 13 13:39:15 localhost vmunix: [ 0.647742] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled Apr 13 13:39:15 localhost vmunix: [ 0.650496] Linux agpgart interface v0.103 Apr 13 13:39:15 localhost vmunix: [ 0.654058] brd: module loaded Apr 13 13:39:15 localhost vmunix: [ 0.656844] loop: module loaded Apr 13 13:39:15 localhost vmunix: [ 0.657508] libphy: Fixed MDIO Bus: probed Apr 13 13:39:15 localhost vmunix: [ 0.657509] tun: Universal TUN/TAP device driver, 1.6 Apr 13 13:39:15 localhost vmunix: [ 0.657581] PPP generic driver version 2.4.2 Apr 13 13:39:15 localhost vmunix: [ 0.657646] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver Apr 13 13:39:15 localhost vmunix: [ 0.657651] ehci-pci: EHCI PCI platform driver Apr 13 13:39:15 localhost vmunix: [ 0.657905] ehci-pci 0000:00:04.1: EHCI Host Controller Apr 13 13:39:15 localhost vmunix: [ 0.657913] ehci-pci 0000:00:04.1: new USB bus registered, assigned bus number 1 Apr 13 13:39:15 localhost vmunix: [ 0.657923] ehci-pci 0000:00:04.1: debug port 1 Apr 13 13:39:15 localhost vmunix: [ 0.657958] ehci-pci 0000:00:04.1: disable ppcd for nvidia mcp89 Apr 13 13:39:15 localhost vmunix: [ 0.657963] ehci-pci 0000:00:04.1: cache line size of 256 is not supported Apr 13 13:39:15 localhost vmunix: [ 0.657980] ehci-pci 0000:00:04.1: irq 22, io mem 0xd348b100 Apr 13 13:39:15 localhost vmunix: [ 0.673244] ehci-pci 0000:00:04.1: USB 2.0 started, EHCI 1.10 Apr 13 13:39:15 localhost vmunix: [ 0.673321] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 Apr 13 13:39:15 localhost vmunix: [ 0.673324] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 Apr 13 13:39:15 localhost vmunix: [ 0.673332] usb usb1: Product: EHCI Host Controller Apr 13 13:39:15 localhost vmunix: [ 0.673333] usb usb1: Manufacturer: Linux 5.4.31-gnu ehci_hcd Apr 13 13:39:15 localhost vmunix: [ 0.673335] usb usb1: SerialNumber: 0000:00:04.1 Apr 13 13:39:15 localhost vmunix: [ 0.673504] hub 1-0:1.0: USB hub found Apr 13 13:39:15 localhost vmunix: [ 0.673512] hub 1-0:1.0: 6 ports detected Apr 13 13:39:15 localhost vmunix: [ 0.674037] ehci-pci 0000:00:06.1: EHCI Host Controller Apr 13 13:39:15 localhost vmunix: [ 0.674043] ehci-pci 0000:00:06.1: new USB bus registered, assigned bus number 2 Apr 13 13:39:15 localhost vmunix: [ 0.674051] ehci-pci 0000:00:06.1: debug port 1 Apr 13 13:39:15 localhost vmunix: [ 0.674080] ehci-pci 0000:00:06.1: disable ppcd for nvidia mcp89 Apr 13 13:39:15 localhost vmunix: [ 0.674085] ehci-pci 0000:00:06.1: cache line size of 256 is not supported Apr 13 13:39:15 localhost vmunix: [ 0.674096] ehci-pci 0000:00:06.1: irq 20, io mem 0xd348b000 Apr 13 13:39:15 localhost vmunix: [ 0.689211] ehci-pci 0000:00:06.1: USB 2.0 started, EHCI 1.10 Apr 13 13:39:15 localhost vmunix: [ 0.689298] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 Apr 13 13:39:15 localhost vmunix: [ 0.689301] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 Apr 13 13:39:15 localhost vmunix: [ 0.689303] usb usb2: Product: EHCI Host Controller Apr 13 13:39:15 localhost vmunix: [ 0.689306] usb usb2: Manufacturer: Linux 5.4.31-gnu ehci_hcd Apr 13 13:39:15 localhost vmunix: [ 0.689308] usb usb2: SerialNumber: 0000:00:06.1 Apr 13 13:39:15 localhost vmunix: [ 0.689483] hub 2-0:1.0: USB hub found Apr 13 13:39:15 localhost vmunix: [ 0.689497] hub 2-0:1.0: 6 ports detected Apr 13 13:39:15 localhost vmunix: [ 0.689829] ehci-platform: EHCI generic platform driver Apr 13 13:39:15 localhost vmunix: [ 0.689850] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver Apr 13 13:39:15 localhost vmunix: [ 0.689854] ohci-pci: OHCI PCI platform driver Apr 13 13:39:15 localhost vmunix: [ 0.690025] ohci-pci 0000:00:04.0: OHCI PCI host controller Apr 13 13:39:15 localhost vmunix: [ 0.690030] ohci-pci 0000:00:04.0: new USB bus registered, assigned bus number 3 Apr 13 13:39:15 localhost vmunix: [ 0.690056] ohci-pci 0000:00:04.0: irq 23, io mem 0xd348a000 Apr 13 13:39:15 localhost vmunix: [ 0.751232] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.04 Apr 13 13:39:15 localhost vmunix: [ 0.751234] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 Apr 13 13:39:15 localhost vmunix: [ 0.751236] usb usb3: Product: OHCI PCI host controller Apr 13 13:39:15 localhost vmunix: [ 0.751237] usb usb3: Manufacturer: Linux 5.4.31-gnu ohci_hcd Apr 13 13:39:15 localhost vmunix: [ 0.751239] usb usb3: SerialNumber: 0000:00:04.0 Apr 13 13:39:15 localhost vmunix: [ 0.751396] hub 3-0:1.0: USB hub found Apr 13 13:39:15 localhost vmunix: [ 0.751405] hub 3-0:1.0: 6 ports detected Apr 13 13:39:15 localhost vmunix: [ 0.751899] ohci-pci 0000:00:06.0: OHCI PCI host controller Apr 13 13:39:15 localhost vmunix: [ 0.751905] ohci-pci 0000:00:06.0: new USB bus registered, assigned bus number 4 Apr 13 13:39:15 localhost vmunix: [ 0.751927] ohci-pci 0000:00:06.0: irq 21, io mem 0xd3489000 Apr 13 13:39:15 localhost vmunix: [ 0.811230] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.04 Apr 13 13:39:15 localhost vmunix: [ 0.811232] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 Apr 13 13:39:15 localhost vmunix: [ 0.811234] usb usb4: Product: OHCI PCI host controller Apr 13 13:39:15 localhost vmunix: [ 0.811236] usb usb4: Manufacturer: Linux 5.4.31-gnu ohci_hcd Apr 13 13:39:15 localhost vmunix: [ 0.811237] usb usb4: SerialNumber: 0000:00:06.0 Apr 13 13:39:15 localhost vmunix: [ 0.811394] hub 4-0:1.0: USB hub found Apr 13 13:39:15 localhost vmunix: [ 0.811402] hub 4-0:1.0: 6 ports detected Apr 13 13:39:15 localhost vmunix: [ 0.811727] ohci-platform: OHCI generic platform driver Apr 13 13:39:15 localhost vmunix: [ 0.811741] uhci_hcd: USB Universal Host Controller Interface driver Apr 13 13:39:15 localhost vmunix: [ 0.811811] i8042: PNP: No PS/2 controller found. Apr 13 13:39:15 localhost vmunix: [ 0.811953] mousedev: PS/2 mouse device common for all mice Apr 13 13:39:15 localhost vmunix: [ 0.812299] rtc_cmos 00:03: RTC can wake from S4 Apr 13 13:39:15 localhost vmunix: [ 0.812675] rtc_cmos 00:03: registered as rtc0 Apr 13 13:39:15 localhost vmunix: [ 0.812699] rtc_cmos 00:03: alarms up to one year, y3k, 242 bytes nvram, hpet irqs Apr 13 13:39:15 localhost vmunix: [ 0.812706] i2c /dev entries driver Apr 13 13:39:15 localhost vmunix: [ 0.812761] device-mapper: uevent: version 1.0.3 Apr 13 13:39:15 localhost vmunix: [ 0.812847] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com Apr 13 13:39:15 localhost vmunix: [ 0.812851] intel_pstate: CPU model not supported Apr 13 13:39:15 localhost vmunix: [ 0.812881] ledtrig-cpu: registered to indicate activity on CPUs Apr 13 13:39:15 localhost vmunix: [ 0.813225] NET: Registered protocol family 10 Apr 13 13:39:15 localhost vmunix: [ 0.813558] Segment Routing with IPv6 Apr 13 13:39:15 localhost vmunix: [ 0.813580] NET: Registered protocol family 17 Apr 13 13:39:15 localhost vmunix: [ 0.813663] Key type dns_resolver registered Apr 13 13:39:15 localhost vmunix: [ 0.813880] microcode: sig=0x1067a, pf=0x80, revision=0xa07 Apr 13 13:39:15 localhost vmunix: [ 0.813953] microcode: Microcode Update Driver: v2.2. Apr 13 13:39:15 localhost vmunix: [ 0.813957] IPI shorthand broadcast: enabled Apr 13 13:39:15 localhost vmunix: [ 0.814053] registered taskstats version 1 Apr 13 13:39:15 localhost vmunix: [ 0.814057] Loading compiled-in X.509 certificates Apr 13 13:39:15 localhost vmunix: [ 0.814093] zswap: loaded using pool lzo/zbud Apr 13 13:39:15 localhost vmunix: [ 0.814871] Key type big_key registered Apr 13 13:39:15 localhost vmunix: [ 0.815153] Key type encrypted registered Apr 13 13:39:15 localhost vmunix: [ 0.815156] AppArmor: AppArmor sha1 policy hashing enabled Apr 13 13:39:15 localhost vmunix: [ 0.815168] ima: No TPM chip found, activating TPM-bypass! Apr 13 13:39:15 localhost vmunix: [ 0.815172] ima: Allocated hash algorithm: sha1 Apr 13 13:39:15 localhost vmunix: [ 0.815181] ima: No architecture policies found Apr 13 13:39:15 localhost vmunix: [ 0.815193] evm: Initialising EVM extended attributes: Apr 13 13:39:15 localhost vmunix: [ 0.815194] evm: security.selinux Apr 13 13:39:15 localhost vmunix: [ 0.815194] evm: security.SMACK64 Apr 13 13:39:15 localhost vmunix: [ 0.815195] evm: security.SMACK64EXEC Apr 13 13:39:15 localhost vmunix: [ 0.815196] evm: security.SMACK64TRANSMUTE Apr 13 13:39:15 localhost vmunix: [ 0.815197] evm: security.SMACK64MMAP Apr 13 13:39:15 localhost vmunix: [ 0.815197] evm: security.apparmor Apr 13 13:39:15 localhost vmunix: [ 0.815198] evm: security.ima Apr 13 13:39:15 localhost vmunix: [ 0.815199] evm: security.capability Apr 13 13:39:15 localhost vmunix: [ 0.815200] evm: HMAC attrs: 0x1 Apr 13 13:39:15 localhost vmunix: [ 0.816072] PM: Magic number: 0:710:630 Apr 13 13:39:15 localhost vmunix: [ 0.816252] rtc_cmos 00:03: setting system clock to 2020-04-13T11:38:20 UTC (1586777900) Apr 13 13:39:15 localhost vmunix: [ 0.816805] Unstable clock detected, switching default tracing clock to "global" Apr 13 13:39:15 localhost vmunix: [ 0.816805] If you want to keep using the local clock, then add: Apr 13 13:39:15 localhost vmunix: [ 0.816805] "trace_clock=local" Apr 13 13:39:15 localhost vmunix: [ 0.816805] on the kernel command line Apr 13 13:39:15 localhost vmunix: [ 0.819194] Freeing unused kernel image memory: 1916K Apr 13 13:39:15 localhost vmunix: [ 0.833275] Write protecting the kernel read-only data: 22528k Apr 13 13:39:15 localhost vmunix: [ 0.834434] Freeing unused kernel image memory: 2036K Apr 13 13:39:15 localhost vmunix: [ 0.835435] Freeing unused kernel image memory: 1964K Apr 13 13:39:15 localhost vmunix: [ 0.835512] Run /init as init process Apr 13 13:39:15 localhost vmunix: [ 0.928729] ahci: enabling MCP89 AHCI mode Apr 13 13:39:15 localhost vmunix: [ 0.929089] PCI Interrupt Link [LSI0] enabled at IRQ 16 Apr 13 13:39:15 localhost vmunix: [ 0.929220] ahci 0000:00:0a.0: AHCI 0001.0300 32 slots 2 ports 3 Gbps 0x3 impl SATA mode Apr 13 13:39:15 localhost vmunix: [ 0.929223] ahci 0000:00:0a.0: flags: 64bit ncq sntf pm led pio slum part apst Apr 13 13:39:15 localhost vmunix: [ 0.929684] scsi host0: ahci Apr 13 13:39:15 localhost vmunix: [ 0.929909] scsi host1: ahci Apr 13 13:39:15 localhost vmunix: [ 0.929987] ata1: SATA max UDMA/133 abar m8192@0xd3484000 port 0xd3484100 irq 27 Apr 13 13:39:15 localhost vmunix: [ 0.929988] ata2: SATA max UDMA/133 abar m8192@0xd3484000 port 0xd3484180 irq 27 Apr 13 13:39:15 localhost vmunix: [ 1.013225] usb 1-1: new high-speed USB device number 2 using ehci-pci Apr 13 13:39:15 localhost vmunix: [ 1.029171] usb 2-1: new high-speed USB device number 2 using ehci-pci Apr 13 13:39:15 localhost vmunix: [ 1.055577] usb 1-1: New USB device found, idVendor=0b95, idProduct=7720, bcdDevice= 0.01 Apr 13 13:39:15 localhost vmunix: [ 1.055580] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 Apr 13 13:39:15 localhost vmunix: [ 1.055583] usb 1-1: Product: AX88x72A Apr 13 13:39:15 localhost vmunix: [ 1.055585] usb 1-1: Manufacturer: ASIX Elec. Corp. Apr 13 13:39:15 localhost vmunix: [ 1.055588] usb 1-1: SerialNumber: 0004FA Apr 13 13:39:15 localhost vmunix: [ 1.062296] usb 2-1: New USB device found, idVendor=05ac, idProduct=8403, bcdDevice=98.33 Apr 13 13:39:15 localhost vmunix: [ 1.062299] usb 2-1: New USB device strings: Mfr=3, Product=4, SerialNumber=2 Apr 13 13:39:15 localhost vmunix: [ 1.062301] usb 2-1: Product: Card Reader Apr 13 13:39:15 localhost vmunix: [ 1.062304] usb 2-1: Manufacturer: Apple Apr 13 13:39:15 localhost vmunix: [ 1.062306] usb 2-1: SerialNumber: 000000009833 Apr 13 13:39:15 localhost vmunix: [ 1.181221] usb 1-6: new high-speed USB device number 3 using ehci-pci Apr 13 13:39:15 localhost vmunix: [ 1.188383] random: fast init done Apr 13 13:39:15 localhost vmunix: [ 1.219023] usb 1-6: New USB device found, idVendor=05ac, idProduct=8507, bcdDevice= 4.35 Apr 13 13:39:15 localhost vmunix: [ 1.219026] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3 Apr 13 13:39:15 localhost vmunix: [ 1.219029] usb 1-6: Product: Built-in iSight Apr 13 13:39:15 localhost vmunix: [ 1.219031] usb 1-6: Manufacturer: Apple Inc. Apr 13 13:39:15 localhost vmunix: [ 1.219034] usb 1-6: SerialNumber: 8HAAU0632DCLPL00 Apr 13 13:39:15 localhost vmunix: [ 1.243690] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 13 13:39:15 localhost vmunix: [ 1.244580] ata1.00: ATA-8: Hitachi HTS545025B9SA02, PB2AC60W, max UDMA/133 Apr 13 13:39:15 localhost vmunix: [ 1.244582] ata1.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 32) Apr 13 13:39:15 localhost vmunix: [ 1.245175] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) Apr 13 13:39:15 localhost vmunix: [ 1.245752] ata1.00: configured for UDMA/133 Apr 13 13:39:15 localhost vmunix: [ 1.246009] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54502 C60W PQ: 0 ANSI: 5 Apr 13 13:39:15 localhost vmunix: [ 1.246243] sd 0:0:0:0: Attached scsi generic sg0 type 0 Apr 13 13:39:15 localhost vmunix: [ 1.246344] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB) Apr 13 13:39:15 localhost vmunix: [ 1.246358] sd 0:0:0:0: [sda] Write Protect is off Apr 13 13:39:15 localhost vmunix: [ 1.246382] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA Apr 13 13:39:15 localhost vmunix: [ 1.246906] ata2.00: ATAPI: MATSHITADVD-R UJ-898, HC10, max UDMA/100 Apr 13 13:39:15 localhost vmunix: [ 1.249468] ata2.00: configured for UDMA/100 Apr 13 13:39:15 localhost vmunix: [ 1.253134] scsi 1:0:0:0: CD-ROM MATSHITA DVD-R UJ-898 HC10 PQ: 0 ANSI: 5 Apr 13 13:39:15 localhost vmunix: [ 1.316010] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray Apr 13 13:39:15 localhost vmunix: [ 1.316012] cdrom: Uniform CD-ROM driver Revision: 3.20 Apr 13 13:39:15 localhost vmunix: [ 1.329605] sr 1:0:0:0: Attached scsi generic sg1 type 5 Apr 13 13:39:15 localhost vmunix: [ 1.525205] usb 4-3: new full-speed USB device number 2 using ohci-pci Apr 13 13:39:15 localhost vmunix: [ 1.636661] sda: sda1 sda2 sda3 sda4 sda6 sda7 Apr 13 13:39:15 localhost vmunix: [ 1.637439] sd 0:0:0:0: [sda] Attached SCSI disk Apr 13 13:39:15 localhost vmunix: [ 1.640023] usb-storage 2-1:1.0: USB Mass Storage device detected Apr 13 13:39:15 localhost vmunix: [ 1.640193] scsi host2: usb-storage 2-1:1.0 Apr 13 13:39:15 localhost vmunix: [ 1.640296] usbcore: registered new interface driver usb-storage Apr 13 13:39:15 localhost vmunix: [ 1.642900] usbcore: registered new interface driver uas Apr 13 13:39:15 localhost vmunix: [ 1.645078] hidraw: raw HID events driver (C) Jiri Kosina Apr 13 13:39:15 localhost vmunix: [ 1.645704] usbcore: registered new interface driver usbhid Apr 13 13:39:15 localhost vmunix: [ 1.645705] usbhid: USB HID core driver Apr 13 13:39:15 localhost vmunix: [ 1.666117] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0 Apr 13 13:39:15 localhost vmunix: [ 1.769242] usb 4-3: New USB device found, idVendor=05ac, idProduct=0237, bcdDevice= 0.90 Apr 13 13:39:15 localhost vmunix: [ 1.769246] usb 4-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 Apr 13 13:39:15 localhost vmunix: [ 1.769249] usb 4-3: Product: Apple Internal Keyboard / Trackpad Apr 13 13:39:15 localhost vmunix: [ 1.769251] usb 4-3: Manufacturer: Apple Inc. Apr 13 13:39:15 localhost vmunix: [ 1.784969] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:06.0/usb4/4-3/4-3:1.0/0003:05AC:0237.0001/input/input4 Apr 13 13:39:15 localhost vmunix: [ 1.841401] apple 0003:05AC:0237.0001: input,hidraw0: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:06.0-3/input0 Apr 13 13:39:15 localhost vmunix: [ 1.849454] apple 0003:05AC:0237.0002: hidraw1: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:06.0-3/input1 Apr 13 13:39:15 localhost vmunix: [ 2.093225] usb 2-4: new high-speed USB device number 4 using ehci-pci Apr 13 13:39:15 localhost vmunix: [ 2.122164] usb 2-4: New USB device found, idVendor=13fd, idProduct=0840, bcdDevice= 1.12 Apr 13 13:39:15 localhost vmunix: [ 2.122166] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 Apr 13 13:39:15 localhost vmunix: [ 2.122167] usb 2-4: Product: External Apr 13 13:39:15 localhost vmunix: [ 2.122169] usb 2-4: Manufacturer: Generic Apr 13 13:39:15 localhost vmunix: [ 2.122171] usb 2-4: SerialNumber: 4D3030414244453534343520 Apr 13 13:39:15 localhost vmunix: [ 2.122357] usb-storage 2-4:1.0: USB Mass Storage device detected Apr 13 13:39:15 localhost vmunix: [ 2.122525] scsi host3: usb-storage 2-4:1.0 Apr 13 13:39:15 localhost vmunix: [ 2.457207] usb 4-5: new low-speed USB device number 3 using ohci-pci Apr 13 13:39:15 localhost vmunix: [ 2.651303] scsi 2:0:0:0: Direct-Access APPLE SD Card Reader 1.00 PQ: 0 ANSI: 0 Apr 13 13:39:15 localhost vmunix: [ 2.651586] sd 2:0:0:0: Attached scsi generic sg2 type 0 Apr 13 13:39:15 localhost vmunix: [ 2.666662] sd 2:0:0:0: [sdb] Attached SCSI removable disk Apr 13 13:39:15 localhost vmunix: [ 2.692290] usb 4-5: New USB device found, idVendor=05ac, idProduct=8242, bcdDevice= 0.16 Apr 13 13:39:15 localhost vmunix: [ 2.692293] usb 4-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0 Apr 13 13:39:15 localhost vmunix: [ 2.692296] usb 4-5: Product: IR Receiver Apr 13 13:39:15 localhost vmunix: [ 2.692298] usb 4-5: Manufacturer: Apple Computer, Inc. Apr 13 13:39:15 localhost vmunix: [ 3.135326] scsi 3:0:0:0: CD-ROM HL-DT-ST BDDVDRW CT30F YT04 PQ: 0 ANSI: 0 Apr 13 13:39:15 localhost vmunix: [ 3.139153] sr 3:0:0:0: [sr1] scsi3-mmc drive: 62x/62x writer dvd-ram cd/rw xa/form2 cdda tray Apr 13 13:39:15 localhost vmunix: [ 3.157504] sr 3:0:0:0: Attached scsi generic sg3 type 5 Apr 13 13:39:15 localhost vmunix: [ 3.293205] usb 4-6: new full-speed USB device number 4 using ohci-pci Apr 13 13:39:15 localhost vmunix: [ 3.535291] usb 4-6: New USB device found, idVendor=0a5c, idProduct=4500, bcdDevice= 1.00 Apr 13 13:39:15 localhost vmunix: [ 3.535295] usb 4-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0 Apr 13 13:39:15 localhost vmunix: [ 3.535297] usb 4-6: Product: BRCM2046 Hub Apr 13 13:39:15 localhost vmunix: [ 3.535300] usb 4-6: Manufacturer: Apple Inc. Apr 13 13:39:15 localhost vmunix: [ 3.538276] hub 4-6:1.0: USB hub found Apr 13 13:39:15 localhost vmunix: [ 3.541233] hub 4-6:1.0: 3 ports detected Apr 13 13:39:15 localhost vmunix: [ 3.865137] usb 4-6.1: new full-speed USB device number 5 using ohci-pci Apr 13 13:39:15 localhost vmunix: [ 4.006246] usb 4-6.1: New USB device found, idVendor=05ac, idProduct=8213, bcdDevice= 2.08 Apr 13 13:39:15 localhost vmunix: [ 4.006249] usb 4-6.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 Apr 13 13:39:15 localhost vmunix: [ 4.006252] usb 4-6.1: Product: Bluetooth USB Host Controller Apr 13 13:39:15 localhost vmunix: [ 4.006254] usb 4-6.1: Manufacturer: Apple Inc. Apr 13 13:39:15 localhost vmunix: [ 4.006257] usb 4-6.1: SerialNumber: F0B4790D3F48 Apr 13 13:39:15 localhost vmunix: [ 4.097153] usb 4-6.2: new full-speed USB device number 6 using ohci-pci Apr 13 13:39:15 localhost vmunix: [ 4.225259] usb 4-6.2: New USB device found, idVendor=05ac, idProduct=820a, bcdDevice= 1.00 Apr 13 13:39:15 localhost vmunix: [ 4.225263] usb 4-6.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0 Apr 13 13:39:15 localhost vmunix: [ 4.235784] input: HID 05ac:820a as /devices/pci0000:00/0000:00:06.0/usb4/4-6/4-6.2/4-6.2:1.0/0003:05AC:820A.0004/input/input5 Apr 13 13:39:15 localhost vmunix: [ 4.293369] hid-generic 0003:05AC:820A.0004: input,hidraw2: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:06.0-6.2/input0 Apr 13 13:39:15 localhost vmunix: [ 4.381173] usb 4-6.3: new full-speed USB device number 7 using ohci-pci Apr 13 13:39:15 localhost vmunix: [ 4.509223] usb 4-6.3: New USB device found, idVendor=05ac, idProduct=820b, bcdDevice= 1.00 Apr 13 13:39:15 localhost vmunix: [ 4.509226] usb 4-6.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0 Apr 13 13:39:15 localhost vmunix: [ 4.518719] input: HID 05ac:820b as /devices/pci0000:00/0000:00:06.0/usb4/4-6/4-6.3/4-6.3:1.0/0003:05AC:820B.0005/input/input6 Apr 13 13:39:15 localhost vmunix: [ 4.518936] hid-generic 0003:05AC:820B.0005: input,hidraw3: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:06.0-6.3/input0 Apr 13 13:39:15 localhost vmunix: [ 12.609083] random: dbus-uuidgen: uninitialized urandom read (12 bytes read) Apr 13 13:39:15 localhost vmunix: [ 12.609124] random: dbus-uuidgen: uninitialized urandom read (8 bytes read) Apr 13 13:39:15 localhost vmunix: [ 17.017126] random: crng init done Apr 13 13:39:15 localhost vmunix: [ 28.633268] shepherd[1]: Service root has been started. Apr 13 13:39:15 localhost vmunix: [ 38.013279] shepherd[1]: starting services... Apr 13 13:39:15 localhost vmunix: [ 38.014022] shepherd[1]: Service root-file-system has been started. Apr 13 13:39:15 localhost vmunix: [ 38.014660] shepherd[1]: Service user-file-systems has been started. Apr 13 13:39:15 localhost vmunix: [ 38.328476] shepherd[1]: waiting for udevd... Apr 13 13:39:15 localhost vmunix: [ 38.829845] shepherd[1]: waiting for udevd... Apr 13 13:39:15 localhost vmunix: [ 39.331113] shepherd[1]: waiting for udevd... Apr 13 13:39:15 localhost vmunix: [ 39.619754] udevd[187]: starting version 3.2.9 Apr 13 13:39:15 localhost vmunix: [ 40.992120] shepherd[1]: Service udev has been started. Apr 13 13:39:15 localhost vmunix: [ 40.993274] shepherd[1]: Service file-system-/tmp has been started. Apr 13 13:39:15 localhost vmunix: [ 40.994203] shepherd[1]: Service file-system-/dev/pts has been started. Apr 13 13:39:15 localhost vmunix: [ 40.995163] shepherd[1]: Service file-system-/dev/shm has been started. Apr 13 13:39:15 localhost vmunix: [ 40.996061] shepherd[1]: Service file-system-/gnu/store has been started. Apr 13 13:39:15 localhost vmunix: [ 40.996689] shepherd[1]: Service file-systems has been started. Apr 13 13:39:15 localhost vmunix: [ 40.997386] shepherd[1]: Service user-processes has been started. Apr 13 13:39:15 localhost vmunix: [ 40.998076] shepherd[1]: Service host-name has been started. Apr 13 13:39:15 localhost vmunix: [ 43.002598] shepherd[1]: Service user-homes has been started. Apr 13 13:39:15 localhost vmunix: [ 53.435860] udevd[187]: starting eudev-3.2.9 Apr 13 13:39:15 localhost vmunix: [ 53.438917] udevd[187]: no sender credentials received, message ignored Apr 13 13:39:15 localhost vmunix: [ 53.934158] uvesafb: NVIDIA Corporation, NVIDIA GeForce 320M Apr 13 13:39:15 localhost vmunix: [ 53.934158] , Chip Rev , OEM: NVIDIA, VBE v3.0 Apr 13 13:39:15 localhost vmunix: [ 54.060736] uvesafb: VBIOS/hardware doesn't support DDC transfers Apr 13 13:39:15 localhost vmunix: [ 54.060737] uvesafb: no monitor limits have been set, default refresh rate will be used Apr 13 13:39:15 localhost vmunix: [ 54.061957] uvesafb: scrolling: redraw Apr 13 13:39:15 localhost vmunix: [ 54.313538] Console: switching to colour frame buffer device 128x48 Apr 13 13:39:15 localhost vmunix: [ 54.315285] uvesafb: framebuffer at 0xd1000000, mapped to 0x00000000dd659301, using 8000k, total 14336k Apr 13 13:39:15 localhost vmunix: [ 54.315286] uvesafb: fb0: VESA VGA frame buffer device Apr 13 13:39:15 localhost vmunix: [ 54.318260] shepherd[1]: Service uvesafb has been started. Apr 13 13:39:20 localhost shepherd[1]: Service dbus-system could not be started. Apr 13 13:39:20 localhost shepherd[1]: Service networking depends on dbus-system. Apr 13 13:39:20 localhost shepherd[1]: Service networking could not be started. Apr 13 13:39:22 localhost vmunix: [ 63.305231] [Firmware Bug]: ACPI(IGPU) defines _DOD but not _DOS Apr 13 13:39:22 localhost vmunix: [ 63.305266] ACPI: Video Device [IGPU] (multi-head: yes rom: no post: no) Apr 13 13:39:22 localhost vmunix: [ 63.305460] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2f/LNXVIDEO:00/input/input7 Apr 13 13:39:23 localhost vmunix: [ 63.588593] ACPI: AC Adapter [ADP1] (on-line) Apr 13 13:39:23 localhost vmunix: [ 63.801495] smbus_hc ACPI0001:00: SBS HC: offset = 0x20, query_bit = 0x10 Apr 13 13:39:25 localhost vmunix: [ 65.555321] ACPI: Smart Battery System [SBS0]: Battery Slot [BAT0] (battery present) Apr 13 13:39:25 localhost shepherd[1]: Service dbus-system could not be started. Apr 13 13:39:30 localhost shepherd[1]: Service dbus-system has been started. Apr 13 13:39:30 localhost shepherd[1]: Service loopback has been started. Apr 13 13:39:32 localhost vmunix: [ 72.819443] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:06.0/usb4/4-5/4-5:1.0/0003:05AC:8242.0003/input/input8 Apr 13 13:39:32 localhost vmunix: [ 72.877411] appleir 0003:05AC:8242.0003: input,hiddev0,hidraw4: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:06.0-5/input0 Apr 13 13:39:34 localhost vmunix: [ 75.249997] input: bcm5974 as /devices/pci0000:00/0000:00:06.0/usb4/4-3/4-3:1.2/input/input9 Apr 13 13:39:34 localhost vmunix: [ 75.250132] usbcore: registered new interface driver bcm5974 Apr 13 13:39:35 localhost shepherd[1]: Service wpa-supplicant could not be started. Apr 13 13:39:37 localhost nscd: 239 monitoring file `/etc/hosts` (1) Apr 13 13:39:37 localhost nscd: 239 monitoring directory `/etc` (2) Apr 13 13:39:37 localhost nscd: 239 monitoring file `/etc/resolv.conf` (3) Apr 13 13:39:37 localhost nscd: 239 monitoring directory `/etc` (2) Apr 13 13:39:37 localhost shepherd[1]: Service nscd has been started. Apr 13 13:39:39 localhost /gnu/store/bfvr3brh7f9dqh26jf49767ypbanqycm-gpm-1.20.7/sbin/gpm[250]: *** info [daemon/startup.c(136)]: Apr 13 13:39:39 localhost /gnu/store/bfvr3brh7f9dqh26jf49767ypbanqycm-gpm-1.20.7/sbin/gpm[250]: Started gpm successfully. Entered daemon mode. Apr 13 13:39:40 localhost shepherd[1]: Service gpm has been started. Apr 13 13:39:40 localhost shepherd[1]: Service term-tty1 has been started. Apr 13 13:39:42 localhost vmunix: [ 82.536338] mc: Linux media interface: v0.10 Apr 13 13:39:47 localhost vmunix: [ 87.381679] asix 1-1:1.0 eth0: register 'asix' at usb-0000:00:04.1-1, ASIX AX88772 USB 2.0 Ethernet, 00:0e:c6:c3:a7:0a Apr 13 13:39:47 localhost vmunix: [ 87.381746] usbcore: registered new interface driver asix Apr 13 13:39:47 localhost vmunix: [ 87.400992] usbcore: registered new interface driver usbkbd Apr 13 13:39:47 localhost vmunix: [ 87.464852] videodev: Linux video capture interface: v2.00 Apr 13 13:39:47 localhost vmunix: [ 88.206758] usbcore: registered new interface driver usbmouse Apr 13 13:39:48 localhost vmunix: [ 88.362094] udevd[260]: Unable to EVIOCGABS device "/dev/input/event4" Apr 13 13:39:48 localhost vmunix: [ 88.362131] udevd[260]: Unable to EVIOCGABS device "/dev/input/event4" Apr 13 13:39:48 localhost vmunix: [ 88.362158] udevd[260]: Unable to EVIOCGABS device "/dev/input/event4" Apr 13 13:39:48 localhost vmunix: [ 88.362185] udevd[260]: Unable to EVIOCGABS device "/dev/input/event4" Apr 13 13:39:57 localhost vmunix: [ 97.841376] ssb: Found chip with id 0x4322, rev 0x01 and package 0x0A Apr 13 13:39:57 localhost vmunix: [ 97.953761] b43-pci-bridge 0000:02:00.0: Sonics Silicon Backplane found on PCI device 0000:02:00.0 Apr 13 13:40:06 localhost shepherd[1]: Service console-font-tty1 has been started. Apr 13 13:40:06 localhost shepherd[1]: Service host-name has been started. Apr 13 13:40:06 localhost shepherd[1]: Service virtual-terminal has been started. Apr 13 13:40:06 localhost shepherd[1]: Service term-tty2 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service console-font-tty2 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service host-name has been started. Apr 13 13:40:07 localhost shepherd[1]: Service term-tty3 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service console-font-tty3 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service host-name has been started. Apr 13 13:40:07 localhost shepherd[1]: Service term-tty4 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service console-font-tty4 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service host-name has been started. Apr 13 13:40:07 localhost shepherd[1]: Service term-tty5 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service console-font-tty5 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service host-name has been started. Apr 13 13:40:07 localhost shepherd[1]: Service term-tty6 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service console-font-tty6 has been started. Apr 13 13:40:07 localhost shepherd[1]: Service guix-daemon has been started. Apr 13 13:40:08 localhost vmunix: [ 108.994984] input: PC Speaker as /devices/platform/pcspkr/input/input10 Apr 13 13:40:08 localhost vmunix: [ 109.001197] pps_core: LinuxPPS API ver. 1 registered Apr 13 13:40:08 localhost vmunix: [ 109.001198] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti Apr 13 13:40:08 localhost vmunix: [ 109.061238] firewire_ohci 0000:01:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x0, physUB Apr 13 13:40:09 localhost vmunix: [ 109.597350] firewire_core 0000:01:00.0: created device fw0: GUID 70cd60fffe05b3a8, S800 Apr 13 13:40:09 localhost vmunix: [ 109.597358] firewire_core 0000:01:00.0: phy config: new root=ffc0, gap_count=63 Apr 13 13:40:10 localhost vmunix: [ 111.283301] PTP clock support registered Apr 13 13:40:15 localhost vmunix: [ 115.600063] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8507) Apr 13 13:40:15 localhost vmunix: [ 115.608547] uvcvideo 1-6:1.0: Entity type for entity Processing 3 was not initialized! Apr 13 13:40:15 localhost vmunix: [ 115.608550] uvcvideo 1-6:1.0: Entity type for entity Camera 1 was not initialized! Apr 13 13:40:15 localhost vmunix: [ 115.608646] input: Built-in iSight: Built-in iSigh as /devices/pci0000:00/0000:00:04.1/usb1/1-6/1-6:1.0/input/input11 Apr 13 13:40:15 localhost vmunix: [ 115.608751] usbcore: registered new interface driver uvcvideo Apr 13 13:40:15 localhost vmunix: [ 115.608752] USB Video Class driver (1.1.1) Apr 13 13:40:18 localhost vmunix: [ 118.770460] Error: Driver 'pcspkr' is already registered, aborting... Apr 13 13:40:24 localhost vmunix: [ 124.528135] tg3.c:v3.137 (May 11, 2014) Apr 13 13:40:24 localhost vmunix: [ 124.531783] asix 1-1:1.0 enp0s4f1u1: renamed from eth0 Apr 13 13:40:24 localhost vmunix: [ 124.637409] tg3 0000:03:00.0 eth0: Tigon3 [partno(BCM95764m) rev 5784100] (PCI Express) MAC address 10:9a:dd:46:4f:9f Apr 13 13:40:24 localhost vmunix: [ 124.637413] tg3 0000:03:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0]) Apr 13 13:40:24 localhost vmunix: [ 124.637415] tg3 0000:03:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] Apr 13 13:40:24 localhost vmunix: [ 124.637417] tg3 0000:03:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit] Apr 13 13:40:24 localhost vmunix: [ 124.755694] applesmc: key=323 fan=1 temp=15 index=15 acc=1 lux=2 kbd=1 Apr 13 13:40:24 localhost vmunix: [ 124.851050] input: applesmc as /devices/platform/applesmc.768/input/input12 Apr 13 13:40:24 localhost vmunix: [ 124.851243] applesmc applesmc.768: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info(). Apr 13 13:40:27 localhost vmunix: [ 127.897107] tg3 0000:03:00.0 enp3s0: renamed from eth0 Apr 13 13:40:32 localhost vmunix: [ 132.421620] PCI Interrupt Link [LAZA] enabled at IRQ 23 Apr 13 13:40:32 localhost vmunix: [ 132.421629] snd_hda_intel 0000:00:08.0: Disabling MSI Apr 13 13:40:32 localhost vmunix: [ 132.421632] snd_hda_intel 0000:00:08.0: position_fix set to 1 for device 10de:cb89 Apr 13 13:40:36 localhost vmunix: [ 137.151050] intel_powerclamp: No package C-state available Apr 13 13:40:36 localhost vmunix: [ 137.181438] intel_powerclamp: No package C-state available Apr 13 13:40:44 localhost vmunix: [ 145.205615] cfg80211: Loading compiled-in X.509 certificates for regulatory database Apr 13 13:40:49 localhost vmunix: [ 149.709197] snd_hda_codec_cirrus hdaudioC0D0: autoconfig for CS4206: line_outs=2 (0xb/0xa/0x0/0x0/0x0) type:speaker Apr 13 13:40:49 localhost vmunix: [ 149.709201] snd_hda_codec_cirrus hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) Apr 13 13:40:49 localhost vmunix: [ 149.709204] snd_hda_codec_cirrus hdaudioC0D0: hp_outs=1 (0x9/0x0/0x0/0x0/0x0) Apr 13 13:40:49 localhost vmunix: [ 149.709207] snd_hda_codec_cirrus hdaudioC0D0: mono: mono_out=0x0 Apr 13 13:40:49 localhost vmunix: [ 149.709209] snd_hda_codec_cirrus hdaudioC0D0: dig-out=0x10/0x0 Apr 13 13:40:49 localhost vmunix: [ 149.709211] snd_hda_codec_cirrus hdaudioC0D0: inputs: Apr 13 13:40:49 localhost vmunix: [ 149.709214] snd_hda_codec_cirrus hdaudioC0D0: Mic=0xd Apr 13 13:40:54 localhost vmunix: [ 154.367944] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' Apr 13 13:40:55 localhost vmunix: [ 156.305246] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2 Apr 13 13:40:55 localhost vmunix: [ 156.305250] cfg80211: failed to load regulatory.db Apr 13 13:40:56 localhost vmunix: [ 156.465778] input: HDA NVidia Headphone as /devices/pci0000:00/0000:00:08.0/sound/card0/input13 Apr 13 13:40:56 localhost vmunix: [ 156.465853] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.0/sound/card0/input14 Apr 13 13:40:56 localhost vmunix: [ 156.465921] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.0/sound/card0/input15 Apr 13 13:40:56 localhost vmunix: [ 156.465989] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.0/sound/card0/input16 Apr 13 13:41:01 localhost vmunix: [ 161.938780] Bluetooth: Core ver 2.22 Apr 13 13:41:01 localhost vmunix: [ 161.938808] NET: Registered protocol family 31 Apr 13 13:41:01 localhost vmunix: [ 161.938809] Bluetooth: HCI device and connection manager initialized Apr 13 13:41:01 localhost vmunix: [ 161.938816] Bluetooth: HCI socket layer initialized Apr 13 13:41:01 localhost vmunix: [ 161.938820] Bluetooth: L2CAP socket layer initialized Apr 13 13:41:01 localhost vmunix: [ 161.938825] Bluetooth: SCO socket layer initialized Apr 13 13:41:06 localhost vmunix: [ 166.499209] usbcore: registered new interface driver btusb Apr 13 13:41:06 localhost vmunix: [ 166.535237] usb 4-6.2: USB disconnect, device number 6 Apr 13 13:41:06 localhost vmunix: [ 166.623309] Bluetooth: hci0: BCM: chip id 254 build 0522 Apr 13 13:41:06 localhost vmunix: [ 166.626254] Bluetooth: hci0: BCM: product 05ac:8213 Apr 13 13:41:06 localhost vmunix: [ 166.629243] Bluetooth: hci0: BCM: features 0x00 Apr 13 13:41:06 localhost vmunix: [ 166.647319] Bluetooth: hci0: Bluetooth USB Host Controller Apr 13 13:41:06 localhost vmunix: [ 166.752240] usb 4-6.3: USB disconnect, device number 7 Apr 13 13:41:16 localhost vmunix: [ 176.630629] b43-phy0: Broadcom 4322 WLAN found (core revision 16) Apr 13 13:41:16 localhost vmunix: [ 176.673373] b43-phy0: Found PHY: Analog 8, Type 4 (N), Revision 4 Apr 13 13:41:16 localhost vmunix: [ 176.673396] b43-phy0: Found Radio: Manuf 0x17F, ID 0x2056, Revision 3, Version 0 Apr 13 13:41:16 localhost vmunix: [ 176.689404] ssb0:0: Missing Free firmware (non-Free firmware loading is disabled) Apr 13 13:41:16 localhost vmunix: [ 176.689490] b43 ssb0:0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2 Apr 13 13:41:16 localhost vmunix: [ 176.689497] ssb0:0: Missing Free firmware (non-Free firmware loading is disabled) Apr 13 13:41:16 localhost vmunix: [ 176.689544] ssb0:0: Missing Free firmware (non-Free firmware loading is disabled) Apr 13 13:41:16 localhost vmunix: [ 176.689592] b43 ssb0:0: Direct firmware load for /*(DEBLOBBED)*/ failed with error -2 Apr 13 13:41:16 localhost vmunix: [ 176.689597] ssb0:0: Missing Free firmware (non-Free firmware loading is disabled) Apr 13 13:41:16 localhost vmunix: [ 176.689642] b43-phy0 ERROR: Firmware file "/*(DEBLOBBED)*/" not found Apr 13 13:41:16 localhost vmunix: [ 176.689663] b43-phy0 ERROR: Firmware file "b43-open//*(DEBLOBBED)*/.fw" not found Apr 13 13:41:16 localhost vmunix: [ 176.689689] b43-phy0 ERROR: /*(DEBLOBBED)*/ Apr 13 13:41:16 localhost vmunix: [ 176.689734] Broadcom 43xx driver loaded [ Features: PNL ] Apr 13 13:42:25 localhost installer[351]: running step 'locale' Apr 13 13:42:25 localhost installer[351]: running step 'language' Apr 13 13:42:45 localhost installer[351]: running form # ("Locale language") with 0 clients Apr 13 13:44:53 localhost installer[351]: running step 'territory' Apr 13 13:44:53 localhost installer[351]: running form # ("Locale location") with 0 clients Apr 13 13:44:54 localhost installer[351]: running step 'codeset' Apr 13 13:44:54 localhost installer[351]: running step 'welcome' Apr 13 13:44:57 localhost installer[351]: running form # ("GNU Guix install") with 0 clients Apr 13 13:44:59 localhost installer[351]: running step 'timezone' Apr 13 13:44:59 localhost installer[351]: running form # ("Timezone") with 0 clients Apr 13 13:45:00 localhost installer[351]: running form # ("Timezone") with 0 clients Apr 13 13:45:00 localhost installer[351]: running step 'keymap' Apr 13 13:45:01 localhost installer[351]: running step 'layout' Apr 13 13:45:01 localhost installer[351]: running form # ("Layout") with 0 clients Apr 13 13:45:02 localhost installer[351]: running step 'variant' Apr 13 13:45:02 localhost installer[351]: running step 'hostname' Apr 13 13:45:02 localhost installer[351]: running form # ("Hostname") with 0 clients Apr 13 13:45:09 localhost installer[351]: running step 'network' Apr 13 13:45:09 localhost installer[351]: running step 'select-technology' --lpc7sqwgqhws4zyu Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=dbusdaemonlog-macbook 208: 0x7f6d8be49400: 1586777959.455212 [dbus-dataslot.c(135):_dbus_data_slot_allocator_alloc] Allocated slot 0 on allocator 0x7f6d8c0def20 total 1 slots allocated 1 used 208: 0x7f6d8be49400: 1586777959.455254 [dbus-sysdeps-unix.c(3179):_dbus_generate_random_bytes] /dev/urandom fd 3 opened 208: 0x7f6d8be49400: 1586777959.455277 [dbus-sysdeps-unix.c(3199):_dbus_generate_random_bytes] Read 12 bytes from /dev/urandom 208: 0x7f6d8be49400: 1586777960.081903 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 4 opened 208: 0x7f6d8be49400: 1586777960.347128 [dbus-userdb.c(162):_dbus_user_database_lookup] No cache for UID 0 208: 0x7f6d8be49400: 1586777960.347500 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 208: 0x7f6d8be49400: 1586777960.347536 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 208: 0x7f6d8be49400: 1586777960.347567 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 221: 0x7f96719ef400: 1586777960.736863 [dbus-dataslot.c(135):_dbus_data_slot_allocator_alloc] Allocated slot 0 on allocator 0x7f9671c84f20 total 1 slots allocated 1 used 221: 0x7f96719ef400: 1586777960.736924 [dbus-sysdeps-unix.c(3179):_dbus_generate_random_bytes] /dev/urandom fd 3 opened 221: 0x7f96719ef400: 1586777960.736947 [dbus-sysdeps-unix.c(3199):_dbus_generate_random_bytes] Read 12 bytes from /dev/urandom 221: 0x7f96719ef400: 1586777960.737009 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 4 opened 221: 0x7f96719ef400: 1586777960.737239 [dbus-userdb.c(162):_dbus_user_database_lookup] No cache for UID 0 221: 0x7f96719ef400: 1586777960.737567 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 221: 0x7f96719ef400: 1586777960.737602 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 221: 0x7f96719ef400: 1586777960.737633 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 221: 0x7f96719ef400: 1586777960.904989 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 4 opened 221: 0x7f96719ef400: 1586777963.107100 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 5 opened 221: 0x7f96719ef400: 1586777963.920055 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 221: 0x7f96719ef400: 1586777963.920173 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 5 opened 221: 0x7f96719ef400: 1586777964.485892 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 221: 0x7f96719ef400: 1586777964.486003 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 5 opened 221: 0x7f96719ef400: 1586777965.103029 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586777965.932138 [dbus-dataslot.c(135):_dbus_data_slot_allocator_alloc] Allocated slot 0 on allocator 0x7f98cd322f20 total 1 slots allocated 1 used 229: 0x7f98cd08d400: 1586777965.932178 [dbus-sysdeps-unix.c(3179):_dbus_generate_random_bytes] /dev/urandom fd 3 opened 229: 0x7f98cd08d400: 1586777965.932200 [dbus-sysdeps-unix.c(3199):_dbus_generate_random_bytes] Read 12 bytes from /dev/urandom 229: 0x7f98cd08d400: 1586777965.932263 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 4 opened 229: 0x7f98cd08d400: 1586777965.932495 [dbus-userdb.c(162):_dbus_user_database_lookup] No cache for UID 0 229: 0x7f98cd08d400: 1586777965.932821 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586777965.932857 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586777965.932918 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586777965.933082 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 4 opened 229: 0x7f98cd08d400: 1586777965.933166 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 5 opened 229: 0x7f98cd08d400: 1586777965.933207 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586777965.933280 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 5 opened 229: 0x7f98cd08d400: 1586777965.933324 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586777965.933393 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 5 opened 229: 0x7f98cd08d400: 1586777965.933430 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586777966.312156 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 5 opened 229: 0x7f98cd08d400: 1586777966.923770 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586777967.472366 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 5 opened 229: 0x7f98cd08d400: 1586777967.642864 [dbus-userdb.c(165):_dbus_user_database_lookup] No cache for user "polkitd" 229: 0x7f98cd08d400: 1586777967.642994 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 986 information 229: 0x7f98cd08d400: 1586777967.643103 [dbus-sysdeps-unix.c(1124):_dbus_listen_unix_socket] listening on unix socket /var/run/dbus/system_bus_socket abstract=0 229: 0x7f98cd08d400: 1586777967.643132 [dbus-sysdeps-unix.c(247):_dbus_open_socket] socket fd 4 opened 229: 0x7f98cd08d400: 1586777967.643213 [dbus-sysdeps-unix.c(3179):_dbus_generate_random_bytes] /dev/urandom fd 5 opened 229: 0x7f98cd08d400: 1586777967.643233 [dbus-sysdeps-unix.c(3199):_dbus_generate_random_bytes] Read 12 bytes from /dev/urandom 229: 0x7f98cd08d400: 1586777967.643260 [dbus-server.c(165):_dbus_server_init_base] Initialized server on address unix:path=/var/run/dbus/system_bus_socket,guid=0e20d1b5da4d7383c0b0fff85e944f6f 229: 0x7f98cd08d400: 1586777967.643293 [dbus-watch.c(318):_dbus_watch_list_set_functions] Adding a read watch on fd 4 using newly-set add watch function 229: 0x7f98cd08d400: 1586777968.688771 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 6 opened 229: 0x7f98cd08d400: 1586777969.370664 [activation.c(424):update_desktop_file_entry] Name of "/etc/dbus-1/system-services/net.connman.vpn.service" is as expected 229: 0x7f98cd08d400: 1586777969.370688 [activation.c(519):update_desktop_file_entry] Added "net.connman.vpn" to list of services 229: 0x7f98cd08d400: 1586777969.847867 [dbus-file-unix.c(80):_dbus_file_get_contents] file fd 6 opened 229: 0x7f98cd08d400: 1586777970.032356 [activation.c(424):update_desktop_file_entry] Name of "/etc/dbus-1/system-services/org.freedesktop.PolicyKit1.service" is as expected 229: 0x7f98cd08d400: 1586777970.032375 [activation.c(519):update_desktop_file_entry] Added "org.freedesktop.PolicyKit1" to list of services 229: 0x7f98cd08d400: 1586777970.032418 [dbus-dataslot.c(135):_dbus_data_slot_allocator_alloc] Allocated slot 0 on allocator 0x7f98cd322eb0 total 1 slots allocated 1 used 229: 0x7f98cd08d400: 1586777970.032455 [dbus-userdb.c(165):_dbus_user_database_lookup] No cache for user "messagebus" 229: 0x7f98cd08d400: 1586777970.032544 [bus.c(920):bus_context_new] Fork not requested 229: 0x7f98cd08d400: 1586777970.032562 [dbus-sysdeps-util-unix.c(237):_dbus_write_pid_to_file_and_pipe] writing pid file /var/run/dbus/pid 229: 0x7f98cd08d400: 1586777970.032627 [dbus-sysdeps-util-unix.c(291):_dbus_write_pid_to_file_and_pipe] No pid pipe to write to 229: 0x7f98cd08d400: 1586777970.032655 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 999 information 229: 0x7f98cd08d400: 1586777970.032795 [dbus-sysdeps-unix.c(3488):_dbus_socketpair] full-duplex pipe 6 <-> 7 229: 0x7f98cd08d400: 1586777970.032822 [main.c(719):main] We are on D-Bus... 229: 0x7f98cd08d400: 1586777970.032837 [dbus-mainloop.c(885):_dbus_loop_run] Running main loop, depth 0 -> 1 229: 0x7f98cd08d400: 1586778310.958627 [dbus-server-socket.c(182):socket_handle_watch] Handling client connection, flags 0x1 229: 0x7f98cd08d400: 1586778310.958663 [dbus-sysdeps-unix.c(2317):_dbus_accept] client fd 8 accepted 229: 0x7f98cd08d400: 1586778310.958680 [dbus-server-socket.c(95):handle_new_client_fd_and_unlock] Creating new client connection with fd 8 229: 0x7f98cd08d400: 1586778310.958763 [dbus-connection.c(1360):_dbus_connection_new_for_transport] LOCK 229: 0x7f98cd08d400: 1586778310.958782 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.958801 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778310.958820 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.958838 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.958861 [dbus-connection.c(5542):dbus_connection_set_route_peer_messages] LOCK 229: 0x7f98cd08d400: 1586778310.958877 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.958895 [dbus-connection.c(4964):dbus_connection_set_watch_functions] LOCK 229: 0x7f98cd08d400: 1586778310.958912 [dbus-watch.c(318):_dbus_watch_list_set_functions] Adding a write watch on fd 8 using newly-set add watch function 229: 0x7f98cd08d400: 1586778310.958938 [dbus-watch.c(318):_dbus_watch_list_set_functions] Adding a read watch on fd 8 using newly-set add watch function 229: 0x7f98cd08d400: 1586778310.958958 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.958975 [dbus-connection.c(5027):dbus_connection_set_timeout_functions] LOCK 229: 0x7f98cd08d400: 1586778310.958991 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959008 [dbus-connection.c(5347):dbus_connection_set_unix_user_function] LOCK 229: 0x7f98cd08d400: 1586778310.959024 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959041 [dbus-connection.c(5110):dbus_connection_set_dispatch_status_function] LOCK 229: 0x7f98cd08d400: 1586778310.959057 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959074 [dbus-connection.c(5585):dbus_connection_add_filter] LOCK 229: 0x7f98cd08d400: 1586778310.959090 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959107 [dbus-connection.c(4385):dbus_connection_get_dispatch_status] start 229: 0x7f98cd08d400: 1586778310.959122 [dbus-connection.c(4387):dbus_connection_get_dispatch_status] LOCK 229: 0x7f98cd08d400: 1586778310.959141 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.959157 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959181 [connection.c(972):bus_connections_expire_incomplete] Connection 0xbcb020 authentication expires in 29999 milliseconds 229: 0x7f98cd08d400: 1586778310.959199 [expirelist.c(103):bus_expire_timeout_set_interval] Enabled an expire timeout with interval 29999 229: 0x7f98cd08d400: 1586778310.959217 [dbus-connection.c(6215):dbus_connection_set_max_received_size] LOCK 229: 0x7f98cd08d400: 1586778310.959232 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959249 [dbus-connection.c(6120):dbus_connection_set_max_message_size] LOCK 229: 0x7f98cd08d400: 1586778310.959265 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959282 [dbus-connection.c(6257):dbus_connection_set_max_received_unix_fds] LOCK 229: 0x7f98cd08d400: 1586778310.959297 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959314 [dbus-connection.c(6159):dbus_connection_set_max_message_unix_fds] LOCK 229: 0x7f98cd08d400: 1586778310.959330 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959346 [dbus-connection.c(5514):dbus_connection_set_allow_anonymous] LOCK 229: 0x7f98cd08d400: 1586778310.959362 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959378 [dbus-connection.c(2150):_dbus_connection_close_if_only_one_ref] LOCK 229: 0x7f98cd08d400: 1586778310.959395 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959578 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778310.959594 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778310.959611 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.959626 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.959642 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778310.959658 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.959673 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.959689 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.959706 [dbus-transport-socket.c(975):socket_handle_watch] handling read watch 0xbcae90 flags = 1 229: 0x7f98cd08d400: 1586778310.959723 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 1, do_writing = 0 229: 0x7f98cd08d400: 1586778310.959748 [dbus-sysdeps-unix.c(2028):_dbus_read_credentials_socket] read credentials byte 229: 0x7f98cd08d400: 1586778310.959768 [dbus-sysdeps-unix.c(2215):_dbus_read_credentials_socket] Credentials: pid 357 uid 0 229: 0x7f98cd08d400: 1586778310.959791 [dbus-sysdeps-unix.c(1828):add_linux_security_label_to_credentials] getsockopt failed with Protocol not available, len now 1024 229: 0x7f98cd08d400: 1586778310.959808 [dbus-sysdeps-unix.c(1833):add_linux_security_label_to_credentials] Failed to getsockopt(SO_PEERSEC): Protocol not available 229: 0x7f98cd08d400: 1586778310.959826 [dbus-transport-socket.c(450):do_authentication] server auth state: waiting for input 229: 0x7f98cd08d400: 1586778310.959849 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.959865 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778310.959881 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.959897 [dbus-transport-socket.c(751):do_reading] fd = 8 229: 0x7f98cd08d400: 1586778310.959913 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.959929 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.959946 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.959961 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778310.959978 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.959994 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.960009 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778310.960049 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778310.960065 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778310.960080 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.960096 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.960111 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778310.960127 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.960142 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.960158 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.960177 [dbus-transport-socket.c(975):socket_handle_watch] handling read watch 0xbcae90 flags = 1 229: 0x7f98cd08d400: 1586778310.960194 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 1, do_writing = 0 229: 0x7f98cd08d400: 1586778310.960211 [dbus-transport-socket.c(450):do_authentication] server auth state: waiting for input 229: 0x7f98cd08d400: 1586778310.960230 [dbus-transport-socket.c(265):read_data_into_auth] read 18 bytes in auth phase 229: 0x7f98cd08d400: 1586778310.960248 [dbus-auth.c(2256):process_command] server: got command "AUTH EXTERNAL 30" 229: 0x7f98cd08d400: 1586778310.960270 [dbus-auth.c(1773):handle_auth] server: Trying mechanism EXTERNAL 229: 0x7f98cd08d400: 1586778310.960289 [dbus-auth.c(1693):process_data] server: data: '0' 229: 0x7f98cd08d400: 1586778310.960311 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586778310.960331 [dbus-auth.c(2203):goto_state] server: going from state WaitingForAuth to state WaitingForBegin 229: 0x7f98cd08d400: 1586778310.960347 [dbus-auth.c(1189):handle_server_data_external_mech] server: authenticated client based on socket credentials 229: 0x7f98cd08d400: 1586778310.960364 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 1, do_writing = 0 229: 0x7f98cd08d400: 1586778310.960380 [dbus-transport-socket.c(464):do_authentication] server auth state: bytes to send 229: 0x7f98cd08d400: 1586778310.960397 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.960413 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 0 229: 0x7f98cd08d400: 1586778310.960428 [dbus-watch.c(458):_dbus_watch_list_toggle_watch] Toggling watch 0xbcae90 on fd 8 to 0 229: 0x7f98cd08d400: 1586778310.960447 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 1 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.960463 [dbus-watch.c(458):_dbus_watch_list_toggle_watch] Toggling watch 0xbcae40 on fd 8 to 1 229: 0x7f98cd08d400: 1586778310.960481 [dbus-transport-socket.c(751):do_reading] fd = 8 229: 0x7f98cd08d400: 1586778310.960498 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.960513 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.960529 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.960544 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778310.960560 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.960576 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.960591 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778310.960615 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778310.960630 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778310.960646 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.960661 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.960677 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778310.960692 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.960708 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.960723 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.960742 [dbus-transport-socket.c(1004):socket_handle_watch] handling write watch, have_outgoing_messages = 0 229: 0x7f98cd08d400: 1586778310.960759 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 0, do_writing = 1 229: 0x7f98cd08d400: 1586778310.960776 [dbus-transport-socket.c(464):do_authentication] server auth state: bytes to send 229: 0x7f98cd08d400: 1586778310.960798 [dbus-auth.c(2575):_dbus_auth_bytes_sent] server: Sent 37 bytes of: OK 0e20d1b5da4d7383c0b0fff85e944f6f 229: 0x7f98cd08d400: 1586778310.960814 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 0, do_writing = 1 229: 0x7f98cd08d400: 1586778310.960830 [dbus-transport-socket.c(450):do_authentication] server auth state: waiting for input 229: 0x7f98cd08d400: 1586778310.960846 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.960862 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778310.960890 [dbus-watch.c(458):_dbus_watch_list_toggle_watch] Toggling watch 0xbcae90 on fd 8 to 1 229: 0x7f98cd08d400: 1586778310.960910 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.960926 [dbus-watch.c(458):_dbus_watch_list_toggle_watch] Toggling watch 0xbcae40 on fd 8 to 0 229: 0x7f98cd08d400: 1586778310.960944 [dbus-transport-socket.c(512):do_writing] Not authenticated, not writing anything 229: 0x7f98cd08d400: 1586778310.960960 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.960977 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.960992 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.961008 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.961023 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778310.961040 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.961055 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.961071 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778310.961087 [dbus-watch.c(754):dbus_watch_handle] After sanitization, watch flags on fd 8 were 0 229: 0x7f98cd08d400: 1586778310.961161 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778310.961177 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778310.961192 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.961208 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.961223 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778310.961239 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.961254 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.961270 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.961286 [dbus-transport-socket.c(975):socket_handle_watch] handling read watch 0xbcae90 flags = 1 229: 0x7f98cd08d400: 1586778310.961302 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 1, do_writing = 0 229: 0x7f98cd08d400: 1586778310.961319 [dbus-transport-socket.c(450):do_authentication] server auth state: waiting for input 229: 0x7f98cd08d400: 1586778310.961341 [dbus-transport-socket.c(265):read_data_into_auth] read 19 bytes in auth phase 229: 0x7f98cd08d400: 1586778310.961360 [dbus-auth.c(2256):process_command] server: got command "NEGOTIATE_UNIX_FD" 229: 0x7f98cd08d400: 1586778310.961376 [dbus-auth.c(1723):send_agree_unix_fd] Agreed to UNIX FD passing 229: 0x7f98cd08d400: 1586778310.961392 [dbus-auth.c(2203):goto_state] server: going from state WaitingForBegin to state WaitingForBegin 229: 0x7f98cd08d400: 1586778310.961409 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 1, do_writing = 0 229: 0x7f98cd08d400: 1586778310.961425 [dbus-transport-socket.c(464):do_authentication] server auth state: bytes to send 229: 0x7f98cd08d400: 1586778310.961441 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.961457 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 0 229: 0x7f98cd08d400: 1586778310.961472 [dbus-watch.c(458):_dbus_watch_list_toggle_watch] Toggling watch 0xbcae90 on fd 8 to 0 229: 0x7f98cd08d400: 1586778310.961491 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 1 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.961507 [dbus-watch.c(458):_dbus_watch_list_toggle_watch] Toggling watch 0xbcae40 on fd 8 to 1 229: 0x7f98cd08d400: 1586778310.961526 [dbus-transport-socket.c(751):do_reading] fd = 8 229: 0x7f98cd08d400: 1586778310.961542 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.961557 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.961573 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.961589 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778310.961605 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.961621 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.961637 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778310.961661 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778310.961677 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778310.961692 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.961708 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.961723 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778310.961739 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.961755 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.961770 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.961786 [dbus-transport-socket.c(1004):socket_handle_watch] handling write watch, have_outgoing_messages = 0 229: 0x7f98cd08d400: 1586778310.961802 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 0, do_writing = 1 229: 0x7f98cd08d400: 1586778310.961819 [dbus-transport-socket.c(464):do_authentication] server auth state: bytes to send 229: 0x7f98cd08d400: 1586778310.961837 [dbus-auth.c(2575):_dbus_auth_bytes_sent] server: Sent 15 bytes of: AGREE_UNIX_FD 229: 0x7f98cd08d400: 1586778310.961854 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 0, do_writing = 1 229: 0x7f98cd08d400: 1586778310.961870 [dbus-transport-socket.c(450):do_authentication] server auth state: waiting for input 229: 0x7f98cd08d400: 1586778310.961886 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.961906 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778310.961921 [dbus-watch.c(458):_dbus_watch_list_toggle_watch] Toggling watch 0xbcae90 on fd 8 to 1 229: 0x7f98cd08d400: 1586778310.961940 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.961956 [dbus-watch.c(458):_dbus_watch_list_toggle_watch] Toggling watch 0xbcae40 on fd 8 to 0 229: 0x7f98cd08d400: 1586778310.961975 [dbus-transport-socket.c(512):do_writing] Not authenticated, not writing anything 229: 0x7f98cd08d400: 1586778310.961991 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.962007 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.962023 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.962039 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.962054 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778310.962070 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.962086 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.962102 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778310.962117 [dbus-watch.c(754):dbus_watch_handle] After sanitization, watch flags on fd 8 were 0 229: 0x7f98cd08d400: 1586778310.962170 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778310.962186 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778310.962202 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.962218 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.962233 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778310.962249 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.962264 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.962280 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.962296 [dbus-transport-socket.c(975):socket_handle_watch] handling read watch 0xbcae90 flags = 1 229: 0x7f98cd08d400: 1586778310.962312 [dbus-transport-socket.c(349):exchange_credentials] exchange_credentials: do_reading = 1, do_writing = 0 229: 0x7f98cd08d400: 1586778310.962329 [dbus-transport-socket.c(450):do_authentication] server auth state: waiting for input 229: 0x7f98cd08d400: 1586778310.962348 [dbus-transport-socket.c(265):read_data_into_auth] read 7 bytes in auth phase 229: 0x7f98cd08d400: 1586778310.962366 [dbus-auth.c(2256):process_command] server: got command "BEGIN" 229: 0x7f98cd08d400: 1586778310.962382 [dbus-auth.c(2203):goto_state] server: going from state WaitingForBegin to state Authenticated 229: 0x7f98cd08d400: 1586778310.962400 [dbus-transport.c(558):auth_via_unix_user_function] unlock 229: 0x7f98cd08d400: 1586778310.962416 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.962434 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586778310.962455 [policy.c(405):list_allows_user] List 0xbb4668 user rule uid=18446744073709551615 229: 0x7f98cd08d400: 1586778310.962472 [policy.c(475):bus_policy_allow_unix_user] UID 0 allowed = 1 229: 0x7f98cd08d400: 1586778310.962491 [dbus-transport.c(565):auth_via_unix_user_function] lock post unix user function 229: 0x7f98cd08d400: 1586778310.962508 [dbus-connection.c(390):_dbus_connection_lock] LOCK 229: 0x7f98cd08d400: 1586778310.962524 [dbus-transport.c(570):auth_via_unix_user_function] Client UID 0 authorized 229: 0x7f98cd08d400: 1586778310.962540 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.962555 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778310.962570 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.962586 [dbus-transport-socket.c(996):socket_handle_watch] Not reading anything since we just completed the authentication 229: 0x7f98cd08d400: 1586778310.962602 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.962618 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.962633 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.962649 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778310.962666 [dbus-transport.c(1098):recover_unused_bytes] 0 unused bytes sent to message loader 229: 0x7f98cd08d400: 1586778310.962684 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.962700 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.962716 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778310.962760 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778310.962776 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778310.962792 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.962808 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.962823 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778310.962839 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.962854 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.962869 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.962885 [dbus-transport-socket.c(975):socket_handle_watch] handling read watch 0xbcae90 flags = 1 229: 0x7f98cd08d400: 1586778310.962901 [dbus-transport-socket.c(751):do_reading] fd = 8 229: 0x7f98cd08d400: 1586778310.962917 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.962932 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778310.962955 [dbus-transport-socket.c(903):do_reading] read 128 bytes 229: 0x7f98cd08d400: 1586778310.962973 [dbus-marshal-header.c(747):_dbus_header_have_message_untrusted] have 128 bytes, need body 0 + header 128 = 128 229: 0x7f98cd08d400: 1586778310.962993 [dbus-marshal-validate.c(728):_dbus_validate_body_with_reason] validating body from pos 0 len 128 sig 'yyyyuua(yv)' 229: 0x7f98cd08d400: 1586778310.963028 [dbus-marshal-header.c(821):load_and_validate_field] initially caching field 1 229: 0x7f98cd08d400: 1586778310.963047 [dbus-marshal-header.c(821):load_and_validate_field] initially caching field 6 229: 0x7f98cd08d400: 1586778310.963065 [dbus-marshal-header.c(821):load_and_validate_field] initially caching field 2 229: 0x7f98cd08d400: 1586778310.963083 [dbus-marshal-header.c(821):load_and_validate_field] initially caching field 3 229: 0x7f98cd08d400: 1586778310.963104 [dbus-marshal-validate.c(728):_dbus_validate_body_with_reason] validating body from pos 128 len 0 sig '' 229: 0x7f98cd08d400: 1586778310.963123 [dbus-message.c(4564):load_message] Loaded message 0xbcc150 229: 0x7f98cd08d400: 1586778310.963139 [dbus-transport.c(1182):_dbus_transport_queue_messages] queueing received message 0xbcc150 229: 0x7f98cd08d400: 1586778310.963157 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.963172 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778310.963192 [dbus-connection.c(530):_dbus_connection_queue_received_message_link] Message 0xbcc150 (method_call /org/freedesktop/DBus org.freedesktop.DBus Hello '' reply to 0) added to incoming queue 0xbcb020, 1 incoming 229: 0x7f98cd08d400: 1586778310.963210 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778310.963225 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778310.963244 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.963260 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.963275 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.963291 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778310.963306 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.963322 [dbus-connection.c(4346):_dbus_connection_update_dispatch_status_and_unlock] Notifying of change to dispatch status of 0xbcb020 now 0 (data remains) 229: 0x7f98cd08d400: 1586778310.963338 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778310.963356 [dbus-connection.c(4588):dbus_connection_dispatch] 229: 0x7f98cd08d400: 1586778310.963372 [dbus-connection.c(4590):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778310.963388 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.963403 [dbus-connection.c(4137):_dbus_connection_acquire_dispatch] locking dispatch_mutex 229: 0x7f98cd08d400: 1586778310.963419 [dbus-connection.c(4151):_dbus_connection_acquire_dispatch] unlocking dispatch_mutex 229: 0x7f98cd08d400: 1586778310.963434 [dbus-connection.c(4154):_dbus_connection_acquire_dispatch] LOCK 229: 0x7f98cd08d400: 1586778310.963452 [dbus-connection.c(4001):_dbus_connection_pop_message_link_unlocked] Message 0xbcc150 (method_call /org/freedesktop/DBus org.freedesktop.DBus Hello sig:'' serial:1) removed from incoming queue 0xbcb020, 0 incoming 229: 0x7f98cd08d400: 1586778310.963469 [dbus-connection.c(4636):dbus_connection_dispatch] dispatching message 0xbcc150 (method_call org.freedesktop.DBus Hello '') 229: 0x7f98cd08d400: 1586778310.963488 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.963504 [dbus-connection.c(4703):dbus_connection_dispatch] running filter on message 0xbcc150 229: 0x7f98cd08d400: 1586778310.963522 [dbus-connection.c(3172):dbus_connection_preallocate_send] LOCK 229: 0x7f98cd08d400: 1586778310.963538 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.963579 [dispatch.c(303):bus_dispatch] DISPATCH: org.freedesktop.DBus Hello (no error name) to org.freedesktop.DBus 229: 0x7f98cd08d400: 1586778310.963611 [bus.c(1662):bus_context_check_security_policy] security check allowing Hello message 229: 0x7f98cd08d400: 1586778310.963627 [dispatch.c(391):bus_dispatch] Giving message to org.freedesktop.DBus 229: 0x7f98cd08d400: 1586778310.963644 [driver.c(2891):bus_driver_handle_message] Driver got a method call: Hello 229: 0x7f98cd08d400: 1586778310.963662 [driver.c(2914):bus_driver_handle_message] Found driver handler for Hello 229: 0x7f98cd08d400: 1586778310.963681 [dbus-connection.c(5230):dbus_connection_get_unix_user] LOCK 229: 0x7f98cd08d400: 1586778310.963699 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.963722 [connection.c(1558):bus_connection_complete] Name :1.0 assigned to 0xbcb020 229: 0x7f98cd08d400: 1586778310.963740 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9810 with type 2 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963756 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9890 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963772 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9910 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963789 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9970 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963805 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb99f0 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963821 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9a50 with type 1 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963837 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9ad0 with type 1 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963853 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9b30 with type 1 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963869 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9b90 with type 1 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963885 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9c10 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963901 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbb9fd0 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963917 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbba080 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963933 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbba190 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963949 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbba260 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963965 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbba300 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963982 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc9360 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.963997 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbca190 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964014 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbcace0 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964029 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbcbe00 with type 2 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964046 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbcbe80 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964062 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbcbf00 with type 1 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964078 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbca960 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964094 [dbus-connection.c(5230):dbus_connection_get_unix_user] LOCK 229: 0x7f98cd08d400: 1586778310.964110 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.964125 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbbba20 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964142 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbbbf70 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964158 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbbbfd0 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964174 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc8f10 with type 2 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964190 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc9170 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964210 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc9210 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964226 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc9290 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964242 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc7c50 with type 2 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964258 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc7cb0 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964274 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbcaa60 with type 2 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964290 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbcac60 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964306 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc8d30 with type 2 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964322 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc9e80 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964338 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbc9f00 with type 0 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964355 [policy.c(866):bus_client_policy_append_rule] Appending rule 0xbcbd40 with type 1 to policy 0xbb5280 229: 0x7f98cd08d400: 1586778310.964372 [dbus-userdb.c(155):_dbus_user_database_lookup] Using cache for UID 0 information 229: 0x7f98cd08d400: 1586778310.964389 [policy.c(801):bus_client_policy_optimize] Optimizing policy with 37 rules 229: 0x7f98cd08d400: 1586778310.964406 [policy.c(858):bus_client_policy_optimize] After optimization, policy has 37 rules 229: 0x7f98cd08d400: 1586778310.964422 [dbus-connection.c(5230):dbus_connection_get_unix_user] LOCK 229: 0x7f98cd08d400: 1586778310.964437 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.964453 [connection.c(172):adjust_connections_for_uid] Adjusting connection count for UID 0: was 0 adjustment 1 making 1 229: 0x7f98cd08d400: 1586778310.964471 [dbus-connection.c(5230):dbus_connection_get_unix_user] LOCK 229: 0x7f98cd08d400: 1586778310.964487 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.964506 [dbus-connection.c(5266):dbus_connection_get_unix_process_id] LOCK 229: 0x7f98cd08d400: 1586778310.964522 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.964579 [dbus-connection.c(5423):dbus_connection_get_windows_user] LOCK 229: 0x7f98cd08d400: 1586778310.964596 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.964612 [dbus-connection.c(5367):_dbus_connection_get_linux_security_label] LOCK 229: 0x7f98cd08d400: 1586778310.964628 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.964645 [expirelist.c(109):bus_expire_timeout_set_interval] Disabled an expire timeout 229: 0x7f98cd08d400: 1586778310.964707 [connection.c(2347):bus_transaction_send_from_driver] Sending (no interface) (no member) (no error name) from driver 229: 0x7f98cd08d400: 1586778310.964751 [policy.c(1118):bus_client_policy_check_can_receive] (policy) checking receive rules, eavesdropping = 0 229: 0x7f98cd08d400: 1586778310.964767 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964782 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964797 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964812 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964828 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964843 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778310.964863 [policy.c(1302):bus_client_policy_check_can_receive] (policy) used rule, allow now = 1 229: 0x7f98cd08d400: 1586778310.964898 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778310.964913 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778310.964929 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964944 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964959 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964975 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.964990 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965005 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965020 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965035 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965050 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965065 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965081 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965096 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778310.965111 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965126 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965141 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965156 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965171 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965186 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965201 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965217 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965232 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965247 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965262 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965277 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965292 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965307 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965322 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965338 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778310.965358 [dbus-connection.c(6299):dbus_connection_get_outgoing_size] LOCK 229: 0x7f98cd08d400: 1586778310.965374 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.965390 [dbus-connection.c(6360):dbus_connection_get_outgoing_unix_fds] LOCK 229: 0x7f98cd08d400: 1586778310.965406 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.965421 [bus.c(1798):bus_context_check_security_policy] security policy allowing message 229: 0x7f98cd08d400: 1586778310.965437 [dbus-connection.c(2980):dbus_connection_get_is_connected] LOCK 229: 0x7f98cd08d400: 1586778310.965453 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.965469 [connection.c(2415):bus_transaction_send] trying to add reply interface=(unset) member=(unset) error=(unset) to transaction 229: 0x7f98cd08d400: 1586778310.965485 [dbus-connection.c(2980):dbus_connection_get_is_connected] LOCK 229: 0x7f98cd08d400: 1586778310.965500 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.965516 [dbus-connection.c(3172):dbus_connection_preallocate_send] LOCK 229: 0x7f98cd08d400: 1586778310.965532 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.965549 [connection.c(2442):bus_transaction_send] about to prepend message 229: 0x7f98cd08d400: 1586778310.965566 [connection.c(2450):bus_transaction_send] prepended message 229: 0x7f98cd08d400: 1586778310.965585 [services.c(273):bus_registry_ensure] copying string 0x7fff3d0abef0 ':1.0' to service->name 229: 0x7f98cd08d400: 1586778310.965601 [services.c(282):bus_registry_ensure] copied string 0x7fff3d0abef0 ':1.0' to ':1.0' 229: 0x7f98cd08d400: 1586778310.965617 [driver.c(229):bus_driver_send_service_owner_changed] sending name owner changed: :1.0 [ -> :1.0] 229: 0x7f98cd08d400: 1586778310.965700 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 0, interface 229: 0x7f98cd08d400: 1586778310.965716 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 0, interface org.freedesktop.DBus 229: 0x7f98cd08d400: 1586778310.965732 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 4, interface 229: 0x7f98cd08d400: 1586778310.965748 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 4, interface org.freedesktop.DBus 229: 0x7f98cd08d400: 1586778310.965789 [connection.c(2347):bus_transaction_send_from_driver] Sending org.freedesktop.DBus NameAcquired (no error name) from driver 229: 0x7f98cd08d400: 1586778310.965838 [policy.c(1118):bus_client_policy_check_can_receive] (policy) checking receive rules, eavesdropping = 0 229: 0x7f98cd08d400: 1586778310.965853 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965869 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965884 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965899 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965914 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.965929 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778310.965944 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778310.965959 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778310.965975 [policy.c(1302):bus_client_policy_check_can_receive] (policy) used rule, allow now = 1 229: 0x7f98cd08d400: 1586778310.965990 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966009 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966024 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966039 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966054 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966069 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966084 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966099 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966114 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966129 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966144 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966161 [policy.c(1253):bus_client_policy_check_can_receive] (policy) skipping rule because message sender is not fi.w1.wpa_supplicant1 229: 0x7f98cd08d400: 1586778310.966176 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966192 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966207 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966222 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966237 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966251 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966266 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966281 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966296 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966311 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966327 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966341 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966356 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966371 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966386 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778310.966402 [policy.c(1253):bus_client_policy_check_can_receive] (policy) skipping rule because message sender is not fi.w1.wpa_supplicant1 229: 0x7f98cd08d400: 1586778310.966417 [dbus-connection.c(6299):dbus_connection_get_outgoing_size] LOCK 229: 0x7f98cd08d400: 1586778310.966433 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.966448 [dbus-connection.c(6360):dbus_connection_get_outgoing_unix_fds] LOCK 229: 0x7f98cd08d400: 1586778310.966464 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.966479 [bus.c(1798):bus_context_check_security_policy] security policy allowing message 229: 0x7f98cd08d400: 1586778310.966498 [dbus-connection.c(2980):dbus_connection_get_is_connected] LOCK 229: 0x7f98cd08d400: 1586778310.966513 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.966529 [connection.c(2415):bus_transaction_send] trying to add message interface=org.freedesktop.DBus member=NameAcquired error=(unset) to transaction 229: 0x7f98cd08d400: 1586778310.966545 [dbus-connection.c(2980):dbus_connection_get_is_connected] LOCK 229: 0x7f98cd08d400: 1586778310.966560 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.966576 [dbus-connection.c(3172):dbus_connection_preallocate_send] LOCK 229: 0x7f98cd08d400: 1586778310.966592 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.966608 [connection.c(2442):bus_transaction_send] about to prepend message 229: 0x7f98cd08d400: 1586778310.966624 [connection.c(2450):bus_transaction_send] prepended message 229: 0x7f98cd08d400: 1586778310.966642 [connection.c(2658):bus_transaction_add_cancel_hook] adding cancel hook function = 0x425c21 data = 0xbb5bc0 229: 0x7f98cd08d400: 1586778310.966661 [driver.c(2952):bus_driver_handle_message] Driver handler succeeded 229: 0x7f98cd08d400: 1586778310.966677 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 0, interface 229: 0x7f98cd08d400: 1586778310.966693 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 0, interface org.freedesktop.DBus 229: 0x7f98cd08d400: 1586778310.966708 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 1, interface 229: 0x7f98cd08d400: 1586778310.966724 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 1, interface org.freedesktop.DBus 229: 0x7f98cd08d400: 1586778310.966740 [connection.c(2583):bus_transaction_execute_and_free] TRANSACTION: executing 229: 0x7f98cd08d400: 1586778310.966758 [dbus-connection.c(3233):dbus_connection_send_preallocated] LOCK 229: 0x7f98cd08d400: 1586778310.966777 [dbus-connection.c(2034):_dbus_connection_send_preallocated_unlocked_no_update] Message 0xbb5570 (method_return no path no interface no member 's') for :1.0 added to outgoing queue 0xbcb020, 1 pending to send 229: 0x7f98cd08d400: 1586778310.966795 [dbus-connection.c(2050):_dbus_connection_send_preallocated_unlocked_no_update] Message 0xbb5570 serial is 1 229: 0x7f98cd08d400: 1586778310.966811 [dbus-connection.c(1203):_dbus_connection_do_iteration_unlocked] start 229: 0x7f98cd08d400: 1586778310.966826 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.966842 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.966857 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 0 229: 0x7f98cd08d400: 1586778310.966873 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.966889 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.966904 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.966919 [dbus-transport.c(1006):_dbus_transport_do_iteration] Transport iteration flags 0x1 timeout -1 connected = 1 229: 0x7f98cd08d400: 1586778310.966935 [dbus-transport-socket.c(1103):socket_do_iteration] iteration flags = write timeout = -1 read_watch = 0xbcae90 write_watch = 0xbcae40 fd = 8 229: 0x7f98cd08d400: 1586778310.966951 [dbus-transport-socket.c(525):do_writing] do_writing(), have_messages = 1, fd = 8 229: 0x7f98cd08d400: 1586778310.966974 [dbus-transport-socket.c(712):do_writing] wrote 89 bytes of 89 229: 0x7f98cd08d400: 1586778310.966991 [dbus-connection.c(660):_dbus_connection_message_sent_unlocked] Message 0xbb5570 (method_return no path no interface no member 's') removed from outgoing queue 0xbcb020, 0 left to send 229: 0x7f98cd08d400: 1586778310.967016 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.967033 [dbus-transport-socket.c(1247):socket_do_iteration] ... leaving do_iteration() 229: 0x7f98cd08d400: 1586778310.967049 [dbus-transport.c(1020):_dbus_transport_do_iteration] end 229: 0x7f98cd08d400: 1586778310.967064 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.967080 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.967095 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.967111 [dbus-connection.c(1236):_dbus_connection_do_iteration_unlocked] end 229: 0x7f98cd08d400: 1586778310.967126 [dbus-connection.c(2081):_dbus_connection_send_preallocated_and_unlock] middle 229: 0x7f98cd08d400: 1586778310.967144 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.967159 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.967175 [dbus-connection.c(4346):_dbus_connection_update_dispatch_status_and_unlock] Notifying of change to dispatch status of 0xbcb020 now 1 (complete) 229: 0x7f98cd08d400: 1586778310.967193 [dbus-connection.c(3233):dbus_connection_send_preallocated] LOCK 229: 0x7f98cd08d400: 1586778310.967211 [dbus-connection.c(2034):_dbus_connection_send_preallocated_unlocked_no_update] Message 0xbb5990 (signal /org/freedesktop/DBus org.freedesktop.DBus NameAcquired 's') for :1.0 added to outgoing queue 0xbcb020, 1 pending to send 229: 0x7f98cd08d400: 1586778310.967228 [dbus-connection.c(2050):_dbus_connection_send_preallocated_unlocked_no_update] Message 0xbb5990 serial is 2 229: 0x7f98cd08d400: 1586778310.967243 [dbus-connection.c(1203):_dbus_connection_do_iteration_unlocked] start 229: 0x7f98cd08d400: 1586778310.967259 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.967274 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.967290 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 0 229: 0x7f98cd08d400: 1586778310.967305 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778310.967321 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.967336 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778310.967352 [dbus-transport.c(1006):_dbus_transport_do_iteration] Transport iteration flags 0x1 timeout -1 connected = 1 229: 0x7f98cd08d400: 1586778310.967367 [dbus-transport-socket.c(1103):socket_do_iteration] iteration flags = write timeout = -1 read_watch = 0xbcae90 write_watch = 0xbcae40 fd = 8 229: 0x7f98cd08d400: 1586778310.967384 [dbus-transport-socket.c(525):do_writing] do_writing(), have_messages = 1, fd = 8 229: 0x7f98cd08d400: 1586778310.967403 [dbus-transport-socket.c(712):do_writing] wrote 169 bytes of 169 229: 0x7f98cd08d400: 1586778310.967420 [dbus-connection.c(660):_dbus_connection_message_sent_unlocked] Message 0xbb5990 (signal /org/freedesktop/DBus org.freedesktop.DBus NameAcquired 's') removed from outgoing queue 0xbcb020, 0 left to send 229: 0x7f98cd08d400: 1586778310.967438 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778310.967454 [dbus-transport-socket.c(1247):socket_do_iteration] ... leaving do_iteration() 229: 0x7f98cd08d400: 1586778310.967469 [dbus-transport.c(1020):_dbus_transport_do_iteration] end 229: 0x7f98cd08d400: 1586778310.967484 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778310.967504 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778310.967519 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778310.967535 [dbus-connection.c(1236):_dbus_connection_do_iteration_unlocked] end 229: 0x7f98cd08d400: 1586778310.967550 [dbus-connection.c(2081):_dbus_connection_send_preallocated_and_unlock] middle 229: 0x7f98cd08d400: 1586778310.967565 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.967581 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.967600 [dbus-connection.c(4717):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778310.967616 [dbus-connection.c(4726):dbus_connection_dispatch] filter handled message in dispatch 229: 0x7f98cd08d400: 1586778310.967631 [dbus-connection.c(4857):dbus_connection_dispatch] ... done dispatching 229: 0x7f98cd08d400: 1586778310.967646 [dbus-connection.c(4170):_dbus_connection_release_dispatch] locking dispatch_mutex 229: 0x7f98cd08d400: 1586778310.967662 [dbus-connection.c(4178):_dbus_connection_release_dispatch] unlocking dispatch_mutex 229: 0x7f98cd08d400: 1586778310.967677 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778310.967694 [dbus-connection.c(4874):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778310.967709 [dbus-connection.c(4880):dbus_connection_dispatch] before final status update 229: 0x7f98cd08d400: 1586778310.967725 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778310.967740 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.079552 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778311.079569 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778311.079586 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.079601 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778311.079617 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778311.079632 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778311.079648 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778311.079663 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778311.079680 [dbus-transport-socket.c(975):socket_handle_watch] handling read watch 0xbcae90 flags = 1 229: 0x7f98cd08d400: 1586778311.079696 [dbus-transport-socket.c(751):do_reading] fd = 8 229: 0x7f98cd08d400: 1586778311.079711 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778311.079726 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778311.079749 [dbus-transport-socket.c(903):do_reading] read 112 bytes 229: 0x7f98cd08d400: 1586778311.079765 [dbus-marshal-header.c(747):_dbus_header_have_message_untrusted] have 112 bytes, need body 0 + header 112 = 112 229: 0x7f98cd08d400: 1586778311.079783 [dbus-marshal-validate.c(728):_dbus_validate_body_with_reason] validating body from pos 0 len 112 sig 'yyyyuua(yv)' 229: 0x7f98cd08d400: 1586778311.079809 [dbus-marshal-header.c(821):load_and_validate_field] initially caching field 1 229: 0x7f98cd08d400: 1586778311.079827 [dbus-marshal-header.c(821):load_and_validate_field] initially caching field 6 229: 0x7f98cd08d400: 1586778311.079845 [dbus-marshal-header.c(821):load_and_validate_field] initially caching field 2 229: 0x7f98cd08d400: 1586778311.079863 [dbus-marshal-header.c(821):load_and_validate_field] initially caching field 3 229: 0x7f98cd08d400: 1586778311.079885 [dbus-marshal-validate.c(728):_dbus_validate_body_with_reason] validating body from pos 112 len 0 sig '' 229: 0x7f98cd08d400: 1586778311.079902 [dbus-message.c(4564):load_message] Loaded message 0xbb5570 229: 0x7f98cd08d400: 1586778311.079918 [dbus-transport.c(1182):_dbus_transport_queue_messages] queueing received message 0xbb5570 229: 0x7f98cd08d400: 1586778311.079935 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778311.079950 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778311.079967 [dbus-connection.c(530):_dbus_connection_queue_received_message_link] Message 0xbb5570 (method_call / net.connman.Manager GetTechnologies '' reply to 0) added to incoming queue 0xbcb020, 1 incoming 229: 0x7f98cd08d400: 1586778311.079984 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778311.080000 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778311.080018 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778311.080034 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778311.080049 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778311.080064 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778311.080080 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.080095 [dbus-connection.c(4346):_dbus_connection_update_dispatch_status_and_unlock] Notifying of change to dispatch status of 0xbcb020 now 0 (data remains) 229: 0x7f98cd08d400: 1586778311.080112 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778311.080129 [dbus-connection.c(4588):dbus_connection_dispatch] 229: 0x7f98cd08d400: 1586778311.080144 [dbus-connection.c(4590):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778311.080160 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.080175 [dbus-connection.c(4137):_dbus_connection_acquire_dispatch] locking dispatch_mutex 229: 0x7f98cd08d400: 1586778311.080190 [dbus-connection.c(4151):_dbus_connection_acquire_dispatch] unlocking dispatch_mutex 229: 0x7f98cd08d400: 1586778311.080205 [dbus-connection.c(4154):_dbus_connection_acquire_dispatch] LOCK 229: 0x7f98cd08d400: 1586778311.080222 [dbus-connection.c(4001):_dbus_connection_pop_message_link_unlocked] Message 0xbb5570 (method_call / net.connman.Manager GetTechnologies sig:'' serial:2) removed from incoming queue 0xbcb020, 0 incoming 229: 0x7f98cd08d400: 1586778311.080240 [dbus-connection.c(4636):dbus_connection_dispatch] dispatching message 0xbb5570 (method_call net.connman.Manager GetTechnologies '') 229: 0x7f98cd08d400: 1586778311.080257 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.080272 [dbus-connection.c(4703):dbus_connection_dispatch] running filter on message 0xbb5570 229: 0x7f98cd08d400: 1586778311.080290 [dispatch.c(303):bus_dispatch] DISPATCH: net.connman.Manager GetTechnologies (no error name) to net.connman 229: 0x7f98cd08d400: 1586778311.080425 [dispatch.c(442):bus_dispatch] bus_activation_activate_service() failed: org.freedesktop.DBus.Error.ServiceUnknown 229: 0x7f98cd08d400: 1586778311.080442 [connection.c(2626):bus_transaction_send_error_reply] Sending error reply org.freedesktop.DBus.Error.ServiceUnknown "The name net.connman was not provided by any .service files" 229: 0x7f98cd08d400: 1586778311.080482 [connection.c(2347):bus_transaction_send_from_driver] Sending (no interface) (no member) org.freedesktop.DBus.Error.ServiceUnknown from driver 229: 0x7f98cd08d400: 1586778311.080529 [policy.c(1118):bus_client_policy_check_can_receive] (policy) checking receive rules, eavesdropping = 0 229: 0x7f98cd08d400: 1586778311.080545 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080565 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080580 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080595 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080610 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080625 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778311.080640 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778311.080656 [policy.c(1302):bus_client_policy_check_can_receive] (policy) used rule, allow now = 1 229: 0x7f98cd08d400: 1586778311.080671 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778311.080686 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080701 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080717 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080732 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080747 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080762 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080777 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080792 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080807 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080822 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080837 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080853 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778311.080868 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080903 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080918 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080933 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080949 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080964 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080979 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.080994 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.081009 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.081024 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.081040 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.081058 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.081073 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.081088 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.081104 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.081119 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778311.081135 [dbus-connection.c(6299):dbus_connection_get_outgoing_size] LOCK 229: 0x7f98cd08d400: 1586778311.081150 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.081166 [dbus-connection.c(6360):dbus_connection_get_outgoing_unix_fds] LOCK 229: 0x7f98cd08d400: 1586778311.081181 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.081197 [bus.c(1798):bus_context_check_security_policy] security policy allowing message 229: 0x7f98cd08d400: 1586778311.081212 [dbus-connection.c(2980):dbus_connection_get_is_connected] LOCK 229: 0x7f98cd08d400: 1586778311.081227 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.081243 [connection.c(2415):bus_transaction_send] trying to add error interface=(unset) member=(unset) error=org.freedesktop.DBus.Error.ServiceUnknown to transaction 229: 0x7f98cd08d400: 1586778311.081259 [dbus-connection.c(2980):dbus_connection_get_is_connected] LOCK 229: 0x7f98cd08d400: 1586778311.081274 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.081290 [dbus-connection.c(3172):dbus_connection_preallocate_send] LOCK 229: 0x7f98cd08d400: 1586778311.081306 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.081322 [connection.c(2442):bus_transaction_send] about to prepend message 229: 0x7f98cd08d400: 1586778311.081338 [connection.c(2450):bus_transaction_send] prepended message 229: 0x7f98cd08d400: 1586778311.081354 [connection.c(2583):bus_transaction_execute_and_free] TRANSACTION: executing 229: 0x7f98cd08d400: 1586778311.081371 [dbus-connection.c(3233):dbus_connection_send_preallocated] LOCK 229: 0x7f98cd08d400: 1586778311.081388 [dbus-connection.c(2034):_dbus_connection_send_preallocated_unlocked_no_update] Message 0xbb5990 (error no path no interface no member 's') for :1.0 added to outgoing queue 0xbcb020, 1 pending to send 229: 0x7f98cd08d400: 1586778311.081405 [dbus-connection.c(2050):_dbus_connection_send_preallocated_unlocked_no_update] Message 0xbb5990 serial is 3 229: 0x7f98cd08d400: 1586778311.081421 [dbus-connection.c(1203):_dbus_connection_do_iteration_unlocked] start 229: 0x7f98cd08d400: 1586778311.081436 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.081452 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778311.081467 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 0 229: 0x7f98cd08d400: 1586778311.081483 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778311.081498 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778311.081513 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778311.081529 [dbus-transport.c(1006):_dbus_transport_do_iteration] Transport iteration flags 0x1 timeout -1 connected = 1 229: 0x7f98cd08d400: 1586778311.081545 [dbus-transport-socket.c(1103):socket_do_iteration] iteration flags = write timeout = -1 read_watch = 0xbcae90 write_watch = 0xbcae40 fd = 8 229: 0x7f98cd08d400: 1586778311.081561 [dbus-transport-socket.c(525):do_writing] do_writing(), have_messages = 1, fd = 8 229: 0x7f98cd08d400: 1586778311.081911 [dbus-transport-socket.c(712):do_writing] wrote 200 bytes of 200 229: 0x7f98cd08d400: 1586778311.081929 [dbus-connection.c(660):_dbus_connection_message_sent_unlocked] Message 0xbb5990 (error no path no interface no member 's') removed from outgoing queue 0xbcb020, 0 left to send 229: 0x7f98cd08d400: 1586778311.081947 [dbus-transport-socket.c(165):check_write_watch] check_write_watch(): needed = 0 on connection 0xbcb020 watch 0xbcae40 fd = 8 outgoing messages exist 0 229: 0x7f98cd08d400: 1586778311.081964 [dbus-transport-socket.c(1247):socket_do_iteration] ... leaving do_iteration() 229: 0x7f98cd08d400: 1586778311.081979 [dbus-transport.c(1020):_dbus_transport_do_iteration] end 229: 0x7f98cd08d400: 1586778311.081994 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778311.082010 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778311.082025 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778311.082041 [dbus-connection.c(1236):_dbus_connection_do_iteration_unlocked] end 229: 0x7f98cd08d400: 1586778311.082056 [dbus-connection.c(2081):_dbus_connection_send_preallocated_and_unlock] middle 229: 0x7f98cd08d400: 1586778311.082072 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778311.082088 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.082104 [dbus-connection.c(4346):_dbus_connection_update_dispatch_status_and_unlock] Notifying of change to dispatch status of 0xbcb020 now 1 (complete) 229: 0x7f98cd08d400: 1586778311.082122 [dbus-connection.c(4717):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778311.082138 [dbus-connection.c(4726):dbus_connection_dispatch] filter handled message in dispatch 229: 0x7f98cd08d400: 1586778311.082153 [dbus-connection.c(4857):dbus_connection_dispatch] ... done dispatching 229: 0x7f98cd08d400: 1586778311.082168 [dbus-connection.c(4170):_dbus_connection_release_dispatch] locking dispatch_mutex 229: 0x7f98cd08d400: 1586778311.082184 [dbus-connection.c(4178):_dbus_connection_release_dispatch] unlocking dispatch_mutex 229: 0x7f98cd08d400: 1586778311.082199 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.082216 [dbus-connection.c(4874):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778311.082231 [dbus-connection.c(4880):dbus_connection_dispatch] before final status update 229: 0x7f98cd08d400: 1586778311.082247 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 1 229: 0x7f98cd08d400: 1586778311.082263 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.205417 [dbus-connection.c(1496):_dbus_connection_handle_watch] start 229: 0x7f98cd08d400: 1586778311.205435 [dbus-connection.c(1498):_dbus_connection_handle_watch] LOCK 229: 0x7f98cd08d400: 1586778311.205452 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.205468 [dbus-connection.c(1074):_dbus_connection_acquire_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778311.205484 [dbus-connection.c(1078):_dbus_connection_acquire_io_path] start connection->io_path_acquired = 0 timeout = 1 229: 0x7f98cd08d400: 1586778311.205501 [dbus-connection.c(1121):_dbus_connection_acquire_io_path] end connection->io_path_acquired = 1 we_acquired = 1 229: 0x7f98cd08d400: 1586778311.205520 [dbus-connection.c(1123):_dbus_connection_acquire_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778311.205540 [dbus-connection.c(1126):_dbus_connection_acquire_io_path] LOCK 229: 0x7f98cd08d400: 1586778311.205563 [dbus-transport-socket.c(975):socket_handle_watch] handling read watch 0xbcae90 flags = 9 229: 0x7f98cd08d400: 1586778311.205581 [dbus-transport-socket.c(751):do_reading] fd = 8 229: 0x7f98cd08d400: 1586778311.205604 [dbus-transport-socket.c(181):check_read_watch] fd = 8 229: 0x7f98cd08d400: 1586778311.205621 [dbus-transport-socket.c(227):check_read_watch] setting read watch enabled = 1 229: 0x7f98cd08d400: 1586778311.205644 [dbus-transport-socket.c(897):do_reading] Disconnected from remote app 229: 0x7f98cd08d400: 1586778311.205659 [dbus-transport.c(510):_dbus_transport_disconnect] start 229: 0x7f98cd08d400: 1586778311.205675 [dbus-transport-socket.c(1041):socket_disconnect] 229: 0x7f98cd08d400: 1586778311.205690 [dbus-transport-socket.c(76):free_watches] start 229: 0x7f98cd08d400: 1586778311.205710 [dbus-watch.c(424):_dbus_watch_list_remove_watch] Removing watch on fd 8 229: 0x7f98cd08d400: 1586778311.205732 [dbus-watch.c(424):_dbus_watch_list_remove_watch] Removing watch on fd 8 229: 0x7f98cd08d400: 1586778311.205757 [dbus-watch.c(686):dbus_watch_set_data] Setting watch fd -1 data to data = (nil) function = (nil) from data = (nil) function = (nil) 229: 0x7f98cd08d400: 1586778311.205774 [dbus-transport-socket.c(98):free_watches] end 229: 0x7f98cd08d400: 1586778311.205804 [dbus-transport.c(521):_dbus_transport_disconnect] end 229: 0x7f98cd08d400: 1586778311.205820 [dbus-watch.c(686):dbus_watch_set_data] Setting watch fd -1 data to data = (nil) function = (nil) from data = (nil) function = (nil) 229: 0x7f98cd08d400: 1586778311.205837 [dbus-connection.c(1147):_dbus_connection_release_io_path] locking io_path_mutex 229: 0x7f98cd08d400: 1586778311.205852 [dbus-connection.c(1153):_dbus_connection_release_io_path] start connection->io_path_acquired = 1 229: 0x7f98cd08d400: 1586778311.205868 [dbus-connection.c(1158):_dbus_connection_release_io_path] unlocking io_path_mutex 229: 0x7f98cd08d400: 1586778311.205884 [dbus-connection.c(1515):_dbus_connection_handle_watch] middle 229: 0x7f98cd08d400: 1586778311.205900 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 0 229: 0x7f98cd08d400: 1586778311.205917 [dbus-connection.c(4231):notify_disconnected_and_dispatch_complete_unlocked] Sending disconnect message 229: 0x7f98cd08d400: 1586778311.205935 [dbus-connection.c(560):_dbus_connection_queue_synthesized_message_link] Synthesized message 0xbcb130 added to incoming queue 0xbcb020, 1 incoming 229: 0x7f98cd08d400: 1586778311.205951 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.205967 [dbus-connection.c(4346):_dbus_connection_update_dispatch_status_and_unlock] Notifying of change to dispatch status of 0xbcb020 now 0 (data remains) 229: 0x7f98cd08d400: 1586778311.205985 [dbus-connection.c(1522):_dbus_connection_handle_watch] end 229: 0x7f98cd08d400: 1586778311.206001 [dbus-connection.c(4588):dbus_connection_dispatch] 229: 0x7f98cd08d400: 1586778311.206016 [dbus-connection.c(4590):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778311.206032 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.206048 [dbus-connection.c(4137):_dbus_connection_acquire_dispatch] locking dispatch_mutex 229: 0x7f98cd08d400: 1586778311.206063 [dbus-connection.c(4151):_dbus_connection_acquire_dispatch] unlocking dispatch_mutex 229: 0x7f98cd08d400: 1586778311.206079 [dbus-connection.c(4154):_dbus_connection_acquire_dispatch] LOCK 229: 0x7f98cd08d400: 1586778311.206103 [dbus-connection.c(4001):_dbus_connection_pop_message_link_unlocked] Message 0xbcb130 (signal /org/freedesktop/DBus/Local org.freedesktop.DBus.Local Disconnected sig:'' serial:0) removed from incoming queue 0xbcb020, 0 incoming 229: 0x7f98cd08d400: 1586778311.206123 [dbus-connection.c(4636):dbus_connection_dispatch] dispatching message 0xbcb130 (signal org.freedesktop.DBus.Local Disconnected '') 229: 0x7f98cd08d400: 1586778311.206143 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.206158 [dbus-connection.c(4703):dbus_connection_dispatch] running filter on message 0xbcb130 229: 0x7f98cd08d400: 1586778311.206176 [dispatch.c(303):bus_dispatch] DISPATCH: org.freedesktop.DBus.Local Disconnected (no error name) to peer 229: 0x7f98cd08d400: 1586778311.206198 [connection.c(213):bus_connection_disconnected] :1.0 disconnected, dropping all service ownership and releasing 229: 0x7f98cd08d400: 1586778311.206259 [connection.c(2347):bus_transaction_send_from_driver] Sending org.freedesktop.DBus NameLost (no error name) from driver 229: 0x7f98cd08d400: 1586778311.206320 [policy.c(1118):bus_client_policy_check_can_receive] (policy) checking receive rules, eavesdropping = 0 229: 0x7f98cd08d400: 1586778311.206338 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206355 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206371 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206387 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206404 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206420 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778311.206437 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778311.206453 [policy.c(1139):bus_client_policy_check_can_receive] (policy) skipping rule for different message type 229: 0x7f98cd08d400: 1586778311.206471 [policy.c(1302):bus_client_policy_check_can_receive] (policy) used rule, allow now = 1 229: 0x7f98cd08d400: 1586778311.206487 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206503 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206519 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206535 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206551 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206568 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206584 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206600 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206616 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206632 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206648 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206666 [policy.c(1253):bus_client_policy_check_can_receive] (policy) skipping rule because message sender is not fi.w1.wpa_supplicant1 229: 0x7f98cd08d400: 1586778311.206682 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206698 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206715 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206731 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206747 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206763 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206784 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206801 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206818 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206834 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206851 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206867 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206883 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206899 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206916 [policy.c(1131):bus_client_policy_check_can_receive] (policy) skipping non-receive rule 229: 0x7f98cd08d400: 1586778311.206933 [policy.c(1253):bus_client_policy_check_can_receive] (policy) skipping rule because message sender is not fi.w1.wpa_supplicant1 229: 0x7f98cd08d400: 1586778311.206950 [dbus-connection.c(6299):dbus_connection_get_outgoing_size] LOCK 229: 0x7f98cd08d400: 1586778311.206967 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.206984 [dbus-connection.c(6360):dbus_connection_get_outgoing_unix_fds] LOCK 229: 0x7f98cd08d400: 1586778311.207000 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207017 [bus.c(1798):bus_context_check_security_policy] security policy allowing message 229: 0x7f98cd08d400: 1586778311.207034 [dbus-connection.c(2980):dbus_connection_get_is_connected] LOCK 229: 0x7f98cd08d400: 1586778311.207050 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207068 [connection.c(2415):bus_transaction_send] trying to add message interface=org.freedesktop.DBus member=NameLost error=(unset) to transaction (disconnected) 229: 0x7f98cd08d400: 1586778311.207085 [dbus-connection.c(2980):dbus_connection_get_is_connected] LOCK 229: 0x7f98cd08d400: 1586778311.207102 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207121 [driver.c(229):bus_driver_send_service_owner_changed] sending name owner changed: :1.0 [:1.0 -> ] 229: 0x7f98cd08d400: 1586778311.207206 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 0, interface 229: 0x7f98cd08d400: 1586778311.207223 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 0, interface org.freedesktop.DBus 229: 0x7f98cd08d400: 1586778311.207242 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 4, interface 229: 0x7f98cd08d400: 1586778311.207258 [signals.c(1333):bus_matchmaker_get_rules] Looking up rules for message_type 4, interface org.freedesktop.DBus 229: 0x7f98cd08d400: 1586778311.207284 [connection.c(2658):bus_transaction_add_cancel_hook] adding cancel hook function = 0x425fce data = 0xbbe1d0 229: 0x7f98cd08d400: 1586778311.207307 [connection.c(2583):bus_transaction_execute_and_free] TRANSACTION: executing 229: 0x7f98cd08d400: 1586778311.207334 [dbus-connection.c(5631):dbus_connection_remove_filter] LOCK 229: 0x7f98cd08d400: 1586778311.207351 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207368 [dbus-connection.c(4964):dbus_connection_set_watch_functions] LOCK 229: 0x7f98cd08d400: 1586778311.207385 [dbus-watch.c(354):_dbus_watch_list_set_functions] Removing all pre-existing watches 229: 0x7f98cd08d400: 1586778311.207401 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207417 [dbus-connection.c(5027):dbus_connection_set_timeout_functions] LOCK 229: 0x7f98cd08d400: 1586778311.207435 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207458 [dbus-connection.c(5347):dbus_connection_set_unix_user_function] LOCK 229: 0x7f98cd08d400: 1586778311.207475 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207494 [dbus-connection.c(5472):dbus_connection_set_windows_user_function] LOCK 229: 0x7f98cd08d400: 1586778311.207511 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207528 [dbus-connection.c(5110):dbus_connection_set_dispatch_status_function] LOCK 229: 0x7f98cd08d400: 1586778311.207545 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207568 [dbus-connection.c(5230):dbus_connection_get_unix_user] LOCK 229: 0x7f98cd08d400: 1586778311.207585 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207603 [connection.c(172):adjust_connections_for_uid] Adjusting connection count for UID 0: was 1 adjustment -1 making 0 229: 0x7f98cd08d400: 1586778311.207623 [connection.c(1830):bus_connection_drop_pending_replies] Dropping pending replies that involve connection 0xbcb020 229: 0x7f98cd08d400: 1586778311.207656 [dbus-connection.c(4717):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778311.207672 [dbus-connection.c(4726):dbus_connection_dispatch] filter handled message in dispatch 229: 0x7f98cd08d400: 1586778311.207689 [dbus-connection.c(4857):dbus_connection_dispatch] ... done dispatching 229: 0x7f98cd08d400: 1586778311.207705 [dbus-connection.c(4170):_dbus_connection_release_dispatch] locking dispatch_mutex 229: 0x7f98cd08d400: 1586778311.207722 [dbus-connection.c(4178):_dbus_connection_release_dispatch] unlocking dispatch_mutex 229: 0x7f98cd08d400: 1586778311.207738 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207755 [dbus-connection.c(4874):dbus_connection_dispatch] LOCK 229: 0x7f98cd08d400: 1586778311.207771 [dbus-connection.c(4880):dbus_connection_dispatch] before final status update 229: 0x7f98cd08d400: 1586778311.207788 [dbus-connection.c(4269):_dbus_connection_get_dispatch_status_unlocked] dispatch status = complete is_connected = 0 229: 0x7f98cd08d400: 1586778311.207805 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207822 [dbus-connection.c(2717):_dbus_connection_last_unref] Finalizing connection 0xbcb020 229: 0x7f98cd08d400: 1586778311.207843 [dbus-connection.c(5110):dbus_connection_set_dispatch_status_function] LOCK 229: 0x7f98cd08d400: 1586778311.207859 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207878 [dbus-connection.c(5064):dbus_connection_set_wakeup_main_function] LOCK 229: 0x7f98cd08d400: 1586778311.207894 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207912 [dbus-connection.c(5347):dbus_connection_set_unix_user_function] LOCK 229: 0x7f98cd08d400: 1586778311.207929 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207946 [dbus-connection.c(5472):dbus_connection_set_windows_user_function] LOCK 229: 0x7f98cd08d400: 1586778311.207962 [dbus-connection.c(406):_dbus_connection_unlock] UNLOCK 229: 0x7f98cd08d400: 1586778311.207988 [dbus-transport.c(491):_dbus_transport_unref] finalizing 229: 0x7f98cd08d400: 1586778311.208005 [dbus-transport-socket.c(106):socket_finalize] 229: 0x7f98cd08d400: 1586778311.208021 [dbus-transport-socket.c(76):free_watches] start 229: 0x7f98cd08d400: 1586778311.208037 [dbus-transport-socket.c(98):free_watches] end 229: 0x7f98cd08d400: 1586778311.208059 [dbus-auth.c(433):shutdown_mech] server: Shutting down mechanism EXTERNAL --lpc7sqwgqhws4zyu--