2024-03-21T13:20:15.806 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-03-21T13:20:15.806 DEBUG:teuthology.run:Teuthology command: teuthology --name adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi --owner scheduled_adking@teuthology --verbose --archive /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868 --description orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} -- /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868/orig.config.yaml 2024-03-21T13:20:15.839 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-21T13:20:15.922 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868 branch: wip-adk-testing-2024-03-20-2326 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: adking@redhat.com first_in_suite: false job_id: '7614868' kernel: kdb: true sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-adk-testing-2024-03-20-2326 ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 workunit: branch: wip-adk-testing-2024-03-20-2326 sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 owner: scheduled_adking@teuthology priority: 80 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 4016 sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 sleep_before_teardown: 0 subset: 1/16 suite: orch:cephadm suite_branch: wip-adk-testing-2024-03-20-2326 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 targets: smithi042.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEZqdqdQbcZ5Z2np84Cs81hiPuAwrGx7bUJAfEG+3lxsHTi3Zq3W8lH5juGI1RZpNxuSIvbRyv0JQqY0Szam/Xs= smithi119.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOPluJFLblNXF3CYZWxkO3pqg/sQSjKnZPzo/FURe10tIRZjgxvyb3jMdLKQIlvucluxEaTpaKz1Y1oFV9pipkk= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: e691533f9cbb33d85b2187bba20d7102f098636d timestamp: 2024-03-21_11:21:25 tube: smithi user: adking verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-03-21T13:20:15.922 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa; will attempt to use it 2024-03-21T13:20:15.922 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks 2024-03-21T13:20:15.923 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-03-21T13:20:15.924 INFO:teuthology.task.internal:Checking packages... 2024-03-21T13:20:15.946 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash 'ba760091cd7bd2b0d23f4825ac856ba66450e988' 2024-03-21T13:20:15.946 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-03-21T13:20:15.946 INFO:teuthology.packaging:ref: None 2024-03-21T13:20:15.946 INFO:teuthology.packaging:tag: None 2024-03-21T13:20:15.946 INFO:teuthology.packaging:branch: wip-adk-testing-2024-03-20-2326 2024-03-21T13:20:15.946 INFO:teuthology.packaging:sha1: ba760091cd7bd2b0d23f4825ac856ba66450e988 2024-03-21T13:20:15.946 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-adk-testing-2024-03-20-2326 2024-03-21T13:20:16.089 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2309-gba760091-1jammy 2024-03-21T13:20:16.090 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-03-21T13:20:16.096 INFO:teuthology.task.internal:no buildpackages task found 2024-03-21T13:20:16.097 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-03-21T13:20:16.117 INFO:teuthology.task.internal:Saving configuration 2024-03-21T13:20:16.129 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-03-21T13:20:16.135 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-21T13:20:16.162 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi042.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-03-21 13:13:49.897812', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGPwUXue7YkKOydKQjhJlc3cpxrtynVobBGg+SotDEV0'} 2024-03-21T13:20:16.187 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi119.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-03-21 13:13:49.895958', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL96vazsF5z4n2O2M1WxMCyv4GOEH0jQOkGmX4dm5ORY'} 2024-03-21T13:20:16.187 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-03-21T13:20:16.193 INFO:teuthology.task.internal:roles: ubuntu@smithi042.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-03-21T13:20:16.193 INFO:teuthology.task.internal:roles: ubuntu@smithi119.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-03-21T13:20:16.193 INFO:teuthology.run_tasks:Running task console_log... 2024-03-21T13:20:16.266 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f666e4f3430>, signals=[15]) 2024-03-21T13:20:16.266 INFO:teuthology.run_tasks:Running task internal.connect... 2024-03-21T13:20:16.272 INFO:teuthology.task.internal:Opening connections... 2024-03-21T13:20:16.273 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi042.front.sepia.ceph.com 2024-03-21T13:20:16.274 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:20:16.357 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi119.front.sepia.ceph.com 2024-03-21T13:20:16.358 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:20:16.434 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-03-21T13:20:16.440 DEBUG:teuthology.orchestra.run.smithi042:> uname -m 2024-03-21T13:20:16.445 INFO:teuthology.orchestra.run.smithi042.stdout:x86_64 2024-03-21T13:20:16.445 DEBUG:teuthology.orchestra.run.smithi042:> cat /etc/os-release 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:NAME="Ubuntu" 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:VERSION_ID="22.04" 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:VERSION_CODENAME=jammy 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:ID=ubuntu 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:ID_LIKE=debian 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-21T13:20:16.495 INFO:teuthology.orchestra.run.smithi042.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-21T13:20:16.496 INFO:teuthology.orchestra.run.smithi042.stdout:UBUNTU_CODENAME=jammy 2024-03-21T13:20:16.496 INFO:teuthology.lock.ops:Updating smithi042.front.sepia.ceph.com on lock server 2024-03-21T13:20:16.514 DEBUG:teuthology.orchestra.run.smithi119:> uname -m 2024-03-21T13:20:16.519 INFO:teuthology.orchestra.run.smithi119.stdout:x86_64 2024-03-21T13:20:16.519 DEBUG:teuthology.orchestra.run.smithi119:> cat /etc/os-release 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:NAME="Ubuntu" 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:VERSION_ID="22.04" 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:VERSION_CODENAME=jammy 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:ID=ubuntu 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:ID_LIKE=debian 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:HOME_URL="https://www.ubuntu.com/" 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-03-21T13:20:16.566 INFO:teuthology.orchestra.run.smithi119.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-03-21T13:20:16.567 INFO:teuthology.orchestra.run.smithi119.stdout:UBUNTU_CODENAME=jammy 2024-03-21T13:20:16.567 INFO:teuthology.lock.ops:Updating smithi119.front.sepia.ceph.com on lock server 2024-03-21T13:20:16.597 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-03-21T13:20:16.605 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-03-21T13:20:16.611 INFO:teuthology.task.internal:Checking for old test directory... 2024-03-21T13:20:16.611 DEBUG:teuthology.orchestra.run.smithi042:> test '!' -e /home/ubuntu/cephtest 2024-03-21T13:20:16.613 DEBUG:teuthology.orchestra.run.smithi119:> test '!' -e /home/ubuntu/cephtest 2024-03-21T13:20:16.618 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-03-21T13:20:16.624 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-03-21T13:20:16.624 DEBUG:teuthology.orchestra.run.smithi042:> test -z $(ls -A /var/lib/ceph) 2024-03-21T13:20:16.665 DEBUG:teuthology.orchestra.run.smithi119:> test -z $(ls -A /var/lib/ceph) 2024-03-21T13:20:16.680 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-03-21T13:20:16.731 INFO:teuthology.run_tasks:Running task kernel... 2024-03-21T13:20:16.744 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-03-21T13:20:16.744 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-03-21T13:20:16.744 DEBUG:teuthology.orchestra.run.smithi042:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-21T13:20:16.745 DEBUG:teuthology.orchestra.run.smithi119:> test -f /run/.containerenv -o -f /.dockerenv 2024-03-21T13:20:16.749 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:20:16.749 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:20:16.750 DEBUG:teuthology.orchestra.run.smithi042:> uname -r 2024-03-21T13:20:16.750 DEBUG:teuthology.orchestra.run.smithi119:> uname -r 2024-03-21T13:20:16.796 INFO:teuthology.orchestra.run.smithi042.stdout:5.15.0-56-generic 2024-03-21T13:20:16.796 INFO:teuthology.task.kernel:Running kernel on smithi042: 5.15.0-56-generic 2024-03-21T13:20:16.796 DEBUG:teuthology.orchestra.run.smithi042:> sudo apt-get clean 2024-03-21T13:20:16.798 INFO:teuthology.orchestra.run.smithi119.stdout:5.15.0-56-generic 2024-03-21T13:20:16.798 INFO:teuthology.task.kernel:Running kernel on smithi119: 5.15.0-56-generic 2024-03-21T13:20:16.798 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-get clean 2024-03-21T13:20:16.919 DEBUG:teuthology.orchestra.run.smithi042:> sudo apt-get update 2024-03-21T13:20:16.946 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-get update 2024-03-21T13:20:17.151 INFO:teuthology.orchestra.run.smithi042.stdout:Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-21T13:20:17.154 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-21T13:20:17.168 INFO:teuthology.orchestra.run.smithi119.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-21T13:20:17.245 INFO:teuthology.orchestra.run.smithi119.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-21T13:20:17.258 INFO:teuthology.orchestra.run.smithi042.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-21T13:20:17.261 INFO:teuthology.orchestra.run.smithi119.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB] 2024-03-21T13:20:17.340 INFO:teuthology.orchestra.run.smithi042.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB] 2024-03-21T13:20:17.391 INFO:teuthology.orchestra.run.smithi119.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,502 kB] 2024-03-21T13:20:17.395 INFO:teuthology.orchestra.run.smithi042.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [428 kB] 2024-03-21T13:20:17.472 INFO:teuthology.orchestra.run.smithi042.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,286 kB] 2024-03-21T13:20:17.502 INFO:teuthology.orchestra.run.smithi119.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [594 kB] 2024-03-21T13:20:17.508 INFO:teuthology.orchestra.run.smithi119.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [289 kB] 2024-03-21T13:20:17.512 INFO:teuthology.orchestra.run.smithi119.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-21T13:20:17.512 INFO:teuthology.orchestra.run.smithi119.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-21T13:20:17.513 INFO:teuthology.orchestra.run.smithi119.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,619 kB] 2024-03-21T13:20:17.519 INFO:teuthology.orchestra.run.smithi042.stdout:Get:6 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [229 kB] 2024-03-21T13:20:17.522 INFO:teuthology.orchestra.run.smithi042.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-21T13:20:17.523 INFO:teuthology.orchestra.run.smithi042.stdout:Get:8 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-21T13:20:17.523 INFO:teuthology.orchestra.run.smithi042.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,591 kB] 2024-03-21T13:20:17.548 INFO:teuthology.orchestra.run.smithi119.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [271 kB] 2024-03-21T13:20:17.552 INFO:teuthology.orchestra.run.smithi119.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-21T13:20:17.552 INFO:teuthology.orchestra.run.smithi119.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,059 kB] 2024-03-21T13:20:17.561 INFO:teuthology.orchestra.run.smithi042.stdout:Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [267 kB] 2024-03-21T13:20:17.566 INFO:teuthology.orchestra.run.smithi042.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-21T13:20:17.566 INFO:teuthology.orchestra.run.smithi042.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [851 kB] 2024-03-21T13:20:17.570 INFO:teuthology.orchestra.run.smithi119.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [697 kB] 2024-03-21T13:20:17.579 INFO:teuthology.orchestra.run.smithi042.stdout:Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-03-21T13:20:17.585 INFO:teuthology.orchestra.run.smithi119.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [240 kB] 2024-03-21T13:20:17.598 INFO:teuthology.orchestra.run.smithi042.stdout:Get:14 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-03-21T13:20:17.600 INFO:teuthology.orchestra.run.smithi042.stdout:Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-21T13:20:17.601 INFO:teuthology.orchestra.run.smithi042.stdout:Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-21T13:20:17.602 INFO:teuthology.orchestra.run.smithi042.stdout:Get:17 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-21T13:20:17.602 INFO:teuthology.orchestra.run.smithi042.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-21T13:20:17.602 INFO:teuthology.orchestra.run.smithi042.stdout:Get:19 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-21T13:20:17.603 INFO:teuthology.orchestra.run.smithi119.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-21T13:20:17.604 INFO:teuthology.orchestra.run.smithi119.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.1 kB] 2024-03-21T13:20:17.604 INFO:teuthology.orchestra.run.smithi119.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,160 B] 2024-03-21T13:20:17.604 INFO:teuthology.orchestra.run.smithi119.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.1 kB] 2024-03-21T13:20:17.621 INFO:teuthology.orchestra.run.smithi119.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-21T13:20:17.621 INFO:teuthology.orchestra.run.smithi119.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-03-21T13:20:17.621 INFO:teuthology.orchestra.run.smithi119.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-03-21T13:20:17.622 INFO:teuthology.orchestra.run.smithi119.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-03-21T13:20:17.622 INFO:teuthology.orchestra.run.smithi119.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-21T13:20:17.641 INFO:teuthology.orchestra.run.smithi119.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-03-21T13:20:17.641 INFO:teuthology.orchestra.run.smithi119.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-03-21T13:20:17.642 INFO:teuthology.orchestra.run.smithi119.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-03-21T13:20:17.642 INFO:teuthology.orchestra.run.smithi119.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-21T13:20:17.692 INFO:teuthology.orchestra.run.smithi042.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB] 2024-03-21T13:20:17.701 INFO:teuthology.orchestra.run.smithi119.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [428 kB] 2024-03-21T13:20:17.831 INFO:teuthology.orchestra.run.smithi042.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [594 kB] 2024-03-21T13:20:17.980 INFO:teuthology.orchestra.run.smithi119.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,286 kB] 2024-03-21T13:20:18.028 INFO:teuthology.orchestra.run.smithi042.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [1,502 kB] 2024-03-21T13:20:18.146 INFO:teuthology.orchestra.run.smithi119.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [229 kB] 2024-03-21T13:20:18.158 INFO:teuthology.orchestra.run.smithi119.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [11.4 kB] 2024-03-21T13:20:18.159 INFO:teuthology.orchestra.run.smithi119.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [1,591 kB] 2024-03-21T13:20:18.175 INFO:teuthology.orchestra.run.smithi042.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [289 kB] 2024-03-21T13:20:18.190 INFO:teuthology.orchestra.run.smithi042.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [16.1 kB] 2024-03-21T13:20:18.191 INFO:teuthology.orchestra.run.smithi042.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [35.3 kB] 2024-03-21T13:20:18.193 INFO:teuthology.orchestra.run.smithi042.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [1,619 kB] 2024-03-21T13:20:18.239 INFO:teuthology.orchestra.run.smithi119.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [33.7 kB] 2024-03-21T13:20:18.240 INFO:teuthology.orchestra.run.smithi119.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [267 kB] 2024-03-21T13:20:18.249 INFO:teuthology.orchestra.run.smithi119.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [520 B] 2024-03-21T13:20:18.249 INFO:teuthology.orchestra.run.smithi119.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [851 kB] 2024-03-21T13:20:18.251 INFO:teuthology.orchestra.run.smithi042.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [271 kB] 2024-03-21T13:20:18.258 INFO:teuthology.orchestra.run.smithi042.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [520 B] 2024-03-21T13:20:18.272 INFO:teuthology.orchestra.run.smithi119.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [599 kB] 2024-03-21T13:20:18.422 INFO:teuthology.orchestra.run.smithi042.stdout:Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,059 kB] 2024-03-21T13:20:18.450 INFO:teuthology.orchestra.run.smithi119.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [162 kB] 2024-03-21T13:20:18.849 INFO:teuthology.orchestra.run.smithi119.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [16.8 kB] 2024-03-21T13:20:18.855 INFO:teuthology.orchestra.run.smithi119.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-03-21T13:20:18.855 INFO:teuthology.orchestra.run.smithi119.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.1 kB] 2024-03-21T13:20:18.870 INFO:teuthology.orchestra.run.smithi119.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,476 B] 2024-03-21T13:20:18.872 INFO:teuthology.orchestra.run.smithi119.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [260 B] 2024-03-21T13:20:19.053 INFO:teuthology.orchestra.run.smithi042.stdout:Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [697 kB] 2024-03-21T13:20:19.091 INFO:teuthology.orchestra.run.smithi042.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [240 kB] 2024-03-21T13:20:19.103 INFO:teuthology.orchestra.run.smithi042.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [22.1 kB] 2024-03-21T13:20:19.104 INFO:teuthology.orchestra.run.smithi042.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,160 B] 2024-03-21T13:20:19.105 INFO:teuthology.orchestra.run.smithi042.stdout:Get:34 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [42.1 kB] 2024-03-21T13:20:19.107 INFO:teuthology.orchestra.run.smithi042.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.1 kB] 2024-03-21T13:20:19.107 INFO:teuthology.orchestra.run.smithi042.stdout:Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [472 B] 2024-03-21T13:20:19.108 INFO:teuthology.orchestra.run.smithi042.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.2 kB] 2024-03-21T13:20:19.134 INFO:teuthology.orchestra.run.smithi042.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.1 kB] 2024-03-21T13:20:19.137 INFO:teuthology.orchestra.run.smithi042.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.0 kB] 2024-03-21T13:20:19.302 INFO:teuthology.orchestra.run.smithi042.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-03-21T13:20:19.385 INFO:teuthology.orchestra.run.smithi042.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.2 kB] 2024-03-21T13:20:19.466 INFO:teuthology.orchestra.run.smithi042.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.4 kB] 2024-03-21T13:20:19.548 INFO:teuthology.orchestra.run.smithi042.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.2 kB] 2024-03-21T13:20:19.577 INFO:teuthology.orchestra.run.smithi042.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [644 B] 2024-03-21T13:20:23.325 INFO:teuthology.orchestra.run.smithi119.stdout:Fetched 12.5 MB in 2s (6,731 kB/s) 2024-03-21T13:20:24.089 INFO:teuthology.orchestra.run.smithi042.stdout:Fetched 12.5 MB in 3s (4,812 kB/s) 2024-03-21T13:20:24.719 INFO:teuthology.orchestra.run.smithi119.stdout:Reading package lists... 2024-03-21T13:20:24.735 DEBUG:teuthology.orchestra.run.smithi119:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-21T13:20:24.796 INFO:teuthology.orchestra.run.smithi119.stdout:Reading package lists... 2024-03-21T13:20:24.992 INFO:teuthology.orchestra.run.smithi119.stdout:Building dependency tree... 2024-03-21T13:20:24.993 INFO:teuthology.orchestra.run.smithi119.stdout:Reading state information... 2024-03-21T13:20:25.162 INFO:teuthology.orchestra.run.smithi119.stdout:The following packages were automatically installed and are no longer required: 2024-03-21T13:20:25.162 INFO:teuthology.orchestra.run.smithi119.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-21T13:20:25.163 INFO:teuthology.orchestra.run.smithi119.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-21T13:20:25.163 INFO:teuthology.orchestra.run.smithi119.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-21T13:20:25.163 INFO:teuthology.orchestra.run.smithi119.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-21T13:20:25.163 INFO:teuthology.orchestra.run.smithi119.stdout: python2.7-minimal 2024-03-21T13:20:25.164 INFO:teuthology.orchestra.run.smithi119.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-21T13:20:25.165 INFO:teuthology.orchestra.run.smithi119.stdout:The following additional packages will be installed: 2024-03-21T13:20:25.165 INFO:teuthology.orchestra.run.smithi119.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-21T13:20:25.165 INFO:teuthology.orchestra.run.smithi119.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-03-21T13:20:25.165 INFO:teuthology.orchestra.run.smithi119.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-03-21T13:20:25.166 INFO:teuthology.orchestra.run.smithi119.stdout:Suggested packages: 2024-03-21T13:20:25.166 INFO:teuthology.orchestra.run.smithi119.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-21T13:20:25.166 INFO:teuthology.orchestra.run.smithi119.stdout:Recommended packages: 2024-03-21T13:20:25.167 INFO:teuthology.orchestra.run.smithi119.stdout: thermald 2024-03-21T13:20:25.207 INFO:teuthology.orchestra.run.smithi119.stdout:The following NEW packages will be installed: 2024-03-21T13:20:25.207 INFO:teuthology.orchestra.run.smithi119.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-21T13:20:25.207 INFO:teuthology.orchestra.run.smithi119.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-03-21T13:20:25.207 INFO:teuthology.orchestra.run.smithi119.stdout: linux-modules-extra-5.15.0-101-generic 2024-03-21T13:20:25.209 INFO:teuthology.orchestra.run.smithi119.stdout:The following packages will be upgraded: 2024-03-21T13:20:25.209 INFO:teuthology.orchestra.run.smithi119.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-21T13:20:25.389 INFO:teuthology.orchestra.run.smithi119.stdout:3 upgraded, 5 newly installed, 0 to remove and 298 not upgraded. 2024-03-21T13:20:25.390 INFO:teuthology.orchestra.run.smithi119.stdout:Need to get 113 MB of archives. 2024-03-21T13:20:25.390 INFO:teuthology.orchestra.run.smithi119.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-21T13:20:25.390 INFO:teuthology.orchestra.run.smithi119.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-03-21T13:20:25.497 INFO:teuthology.orchestra.run.smithi042.stdout:Reading package lists... 2024-03-21T13:20:25.514 DEBUG:teuthology.orchestra.run.smithi042:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-21T13:20:25.570 INFO:teuthology.orchestra.run.smithi042.stdout:Reading package lists... 2024-03-21T13:20:25.768 INFO:teuthology.orchestra.run.smithi042.stdout:Building dependency tree... 2024-03-21T13:20:25.768 INFO:teuthology.orchestra.run.smithi042.stdout:Reading state information... 2024-03-21T13:20:25.947 INFO:teuthology.orchestra.run.smithi042.stdout:The following packages were automatically installed and are no longer required: 2024-03-21T13:20:25.947 INFO:teuthology.orchestra.run.smithi042.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-21T13:20:25.947 INFO:teuthology.orchestra.run.smithi042.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-21T13:20:25.948 INFO:teuthology.orchestra.run.smithi042.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-21T13:20:25.948 INFO:teuthology.orchestra.run.smithi042.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-03-21T13:20:25.948 INFO:teuthology.orchestra.run.smithi042.stdout: python2.7-minimal 2024-03-21T13:20:25.948 INFO:teuthology.orchestra.run.smithi042.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-21T13:20:25.949 INFO:teuthology.orchestra.run.smithi042.stdout:The following additional packages will be installed: 2024-03-21T13:20:25.949 INFO:teuthology.orchestra.run.smithi042.stdout: linux-generic linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-21T13:20:25.949 INFO:teuthology.orchestra.run.smithi042.stdout: linux-headers-generic linux-image-5.15.0-101-generic 2024-03-21T13:20:25.950 INFO:teuthology.orchestra.run.smithi042.stdout: linux-modules-5.15.0-101-generic linux-modules-extra-5.15.0-101-generic 2024-03-21T13:20:25.951 INFO:teuthology.orchestra.run.smithi042.stdout:Suggested packages: 2024-03-21T13:20:25.951 INFO:teuthology.orchestra.run.smithi042.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-03-21T13:20:25.951 INFO:teuthology.orchestra.run.smithi042.stdout:Recommended packages: 2024-03-21T13:20:25.951 INFO:teuthology.orchestra.run.smithi042.stdout: thermald 2024-03-21T13:20:26.004 INFO:teuthology.orchestra.run.smithi042.stdout:The following NEW packages will be installed: 2024-03-21T13:20:26.004 INFO:teuthology.orchestra.run.smithi042.stdout: linux-headers-5.15.0-101 linux-headers-5.15.0-101-generic 2024-03-21T13:20:26.004 INFO:teuthology.orchestra.run.smithi042.stdout: linux-image-5.15.0-101-generic linux-modules-5.15.0-101-generic 2024-03-21T13:20:26.004 INFO:teuthology.orchestra.run.smithi042.stdout: linux-modules-extra-5.15.0-101-generic 2024-03-21T13:20:26.006 INFO:teuthology.orchestra.run.smithi042.stdout:The following packages will be upgraded: 2024-03-21T13:20:26.006 INFO:teuthology.orchestra.run.smithi042.stdout: linux-generic linux-headers-generic linux-image-generic 2024-03-21T13:20:26.065 INFO:teuthology.orchestra.run.smithi042.stdout:3 upgraded, 5 newly installed, 0 to remove and 298 not upgraded. 2024-03-21T13:20:26.066 INFO:teuthology.orchestra.run.smithi042.stdout:Need to get 113 MB of archives. 2024-03-21T13:20:26.066 INFO:teuthology.orchestra.run.smithi042.stdout:After this operation, 582 MB of additional disk space will be used. 2024-03-21T13:20:26.066 INFO:teuthology.orchestra.run.smithi042.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-101-generic amd64 5.15.0-101.111 [22.6 MB] 2024-03-21T13:20:26.569 INFO:teuthology.orchestra.run.smithi042.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-03-21T13:20:26.800 INFO:teuthology.orchestra.run.smithi042.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-03-21T13:20:26.808 INFO:teuthology.orchestra.run.smithi119.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-101-generic amd64 5.15.0-101.111 [11.5 MB] 2024-03-21T13:20:27.160 INFO:teuthology.orchestra.run.smithi119.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-101-generic amd64 5.15.0-101.111 [63.9 MB] 2024-03-21T13:20:27.862 INFO:teuthology.orchestra.run.smithi042.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-03-21T13:20:27.862 INFO:teuthology.orchestra.run.smithi042.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-03-21T13:20:27.862 INFO:teuthology.orchestra.run.smithi042.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-03-21T13:20:28.009 INFO:teuthology.orchestra.run.smithi042.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-03-21T13:20:28.036 INFO:teuthology.orchestra.run.smithi042.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-03-21T13:20:28.459 INFO:teuthology.orchestra.run.smithi042.stdout:Fetched 113 MB in 2s (55.9 MB/s) 2024-03-21T13:20:28.641 INFO:teuthology.orchestra.run.smithi042.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-03-21T13:20:29.444 INFO:teuthology.orchestra.run.smithi119.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.101.98 [1,698 B] 2024-03-21T13:20:29.444 INFO:teuthology.orchestra.run.smithi119.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.101.98 [2,486 B] 2024-03-21T13:20:29.445 INFO:teuthology.orchestra.run.smithi119.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101 all 5.15.0-101.111 [12.3 MB] 2024-03-21T13:20:29.948 INFO:teuthology.orchestra.run.smithi119.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-101-generic amd64 5.15.0-101.111 [2,876 kB] 2024-03-21T13:20:30.085 INFO:teuthology.orchestra.run.smithi119.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.101.98 [2,332 B] 2024-03-21T13:20:30.489 INFO:teuthology.orchestra.run.smithi119.stdout:Fetched 113 MB in 5s (23.2 MB/s) 2024-03-21T13:20:30.669 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-modules-5.15.0-101-generic. 2024-03-21T13:20:30.674 INFO:teuthology.orchestra.run.smithi042.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-03-21T13:20:30.681 INFO:teuthology.orchestra.run.smithi042.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-21T13:20:30.763 INFO:teuthology.orchestra.run.smithi042.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:32.706 INFO:teuthology.orchestra.run.smithi119.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-03-21T13:20:32.710 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../0-linux-modules-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-21T13:20:32.792 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:32.823 INFO:teuthology.orchestra.run.smithi042.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-03-21T13:20:32.844 INFO:teuthology.orchestra.run.smithi042.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-21T13:20:32.920 INFO:teuthology.orchestra.run.smithi042.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:33.385 INFO:teuthology.orchestra.run.smithi042.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-03-21T13:20:33.406 INFO:teuthology.orchestra.run.smithi042.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-21T13:20:33.443 INFO:teuthology.orchestra.run.smithi042.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:35.311 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-image-5.15.0-101-generic. 2024-03-21T13:20:35.332 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../1-linux-image-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-21T13:20:35.411 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:35.864 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-101-generic. 2024-03-21T13:20:35.885 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-21T13:20:35.922 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:40.412 INFO:teuthology.orchestra.run.smithi042.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-03-21T13:20:40.536 INFO:teuthology.orchestra.run.smithi042.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-21T13:20:40.869 INFO:teuthology.orchestra.run.smithi042.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-03-21T13:20:40.990 INFO:teuthology.orchestra.run.smithi042.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-21T13:20:41.276 INFO:teuthology.orchestra.run.smithi042.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-03-21T13:20:41.299 INFO:teuthology.orchestra.run.smithi042.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-03-21T13:20:41.343 INFO:teuthology.orchestra.run.smithi042.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-21T13:20:42.412 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../3-linux-generic_5.15.0.101.98_amd64.deb ... 2024-03-21T13:20:42.531 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-21T13:20:42.864 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.101.98_amd64.deb ... 2024-03-21T13:20:42.968 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-image-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-21T13:20:43.246 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-headers-5.15.0-101. 2024-03-21T13:20:43.268 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../5-linux-headers-5.15.0-101_5.15.0-101.111_all.deb ... 2024-03-21T13:20:43.312 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-21T13:20:47.196 INFO:teuthology.orchestra.run.smithi042.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-03-21T13:20:47.233 INFO:teuthology.orchestra.run.smithi042.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-21T13:20:47.270 INFO:teuthology.orchestra.run.smithi042.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:49.019 INFO:teuthology.orchestra.run.smithi119.stdout:Selecting previously unselected package linux-headers-5.15.0-101-generic. 2024-03-21T13:20:49.055 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../6-linux-headers-5.15.0-101-generic_5.15.0-101.111_amd64.deb ... 2024-03-21T13:20:49.094 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:49.994 INFO:teuthology.orchestra.run.smithi042.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-03-21T13:20:50.107 INFO:teuthology.orchestra.run.smithi042.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-21T13:20:50.433 INFO:teuthology.orchestra.run.smithi042.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-21T13:20:50.562 INFO:teuthology.orchestra.run.smithi042.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:50.688 INFO:teuthology.orchestra.run.smithi042.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-03-21T13:20:50.817 INFO:teuthology.orchestra.run.smithi042.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:51.831 INFO:teuthology.orchestra.run.smithi119.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.101.98_amd64.deb ... 2024-03-21T13:20:51.954 INFO:teuthology.orchestra.run.smithi119.stdout:Unpacking linux-headers-generic (5.15.0.101.98) over (5.15.0.56.54) ... 2024-03-21T13:20:52.184 INFO:teuthology.orchestra.run.smithi042.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-21T13:20:52.184 INFO:teuthology.orchestra.run.smithi042.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-21T13:20:52.185 INFO:teuthology.orchestra.run.smithi042.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-03-21T13:20:52.185 INFO:teuthology.orchestra.run.smithi042.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-03-21T13:20:52.329 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-headers-5.15.0-101 (5.15.0-101.111) ... 2024-03-21T13:20:52.370 INFO:teuthology.orchestra.run.smithi042.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:52.506 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-headers-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:53.319 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-headers-generic (5.15.0.101.98) ... 2024-03-21T13:20:53.423 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:53.996 INFO:teuthology.orchestra.run.smithi042.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:54.728 INFO:teuthology.orchestra.run.smithi119.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-03-21T13:20:54.728 INFO:teuthology.orchestra.run.smithi119.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-03-21T13:20:54.728 INFO:teuthology.orchestra.run.smithi119.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-101-generic 2024-03-21T13:20:54.728 INFO:teuthology.orchestra.run.smithi119.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-101-generic 2024-03-21T13:20:54.892 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-modules-extra-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:55.430 INFO:teuthology.orchestra.run.smithi042.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-03-21T13:20:55.564 INFO:teuthology.orchestra.run.smithi042.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-03-21T13:20:55.699 INFO:teuthology.orchestra.run.smithi042.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:55.756 INFO:teuthology.orchestra.run.smithi042.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-21T13:20:55.756 INFO:teuthology.orchestra.run.smithi042.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-03-21T13:20:56.375 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-modules-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:57.769 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-image-generic (5.15.0.101.98) ... 2024-03-21T13:20:57.894 INFO:teuthology.orchestra.run.smithi119.stdout:Setting up linux-generic (5.15.0.101.98) ... 2024-03-21T13:20:58.012 INFO:teuthology.orchestra.run.smithi119.stdout:Processing triggers for linux-image-5.15.0-101-generic (5.15.0-101.111) ... 2024-03-21T13:20:58.088 INFO:teuthology.orchestra.run.smithi119.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-03-21T13:20:58.088 INFO:teuthology.orchestra.run.smithi119.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-101-generic 2024-03-21T13:21:10.464 INFO:teuthology.orchestra.run.smithi042.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-21T13:21:10.464 INFO:teuthology.orchestra.run.smithi042.stdout:Sourcing file `/etc/default/grub' 2024-03-21T13:21:10.483 INFO:teuthology.orchestra.run.smithi042.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-21T13:21:10.502 INFO:teuthology.orchestra.run.smithi042.stdout:Generating grub configuration file ... 2024-03-21T13:21:10.752 INFO:teuthology.orchestra.run.smithi042.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-21T13:21:10.771 INFO:teuthology.orchestra.run.smithi042.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-21T13:21:11.053 INFO:teuthology.orchestra.run.smithi042.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-21T13:21:11.059 INFO:teuthology.orchestra.run.smithi042.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-21T13:21:11.131 INFO:teuthology.orchestra.run.smithi042.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-21T13:21:11.137 INFO:teuthology.orchestra.run.smithi042.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-21T13:21:11.299 INFO:teuthology.orchestra.run.smithi042.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-21T13:21:11.299 INFO:teuthology.orchestra.run.smithi042.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-21T13:21:11.299 INFO:teuthology.orchestra.run.smithi042.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-21T13:21:11.338 INFO:teuthology.orchestra.run.smithi042.stdout:done 2024-03-21T13:21:11.823 DEBUG:teuthology.orchestra.run.smithi042:> dpkg -s linux-image-generic 2024-03-21T13:21:11.844 INFO:teuthology.orchestra.run.smithi042.stdout:Package: linux-image-generic 2024-03-21T13:21:11.844 INFO:teuthology.orchestra.run.smithi042.stdout:Status: install ok installed 2024-03-21T13:21:11.844 INFO:teuthology.orchestra.run.smithi042.stdout:Priority: optional 2024-03-21T13:21:11.844 INFO:teuthology.orchestra.run.smithi042.stdout:Section: kernel 2024-03-21T13:21:11.844 INFO:teuthology.orchestra.run.smithi042.stdout:Installed-Size: 21 2024-03-21T13:21:11.844 INFO:teuthology.orchestra.run.smithi042.stdout:Maintainer: Ubuntu Kernel Team 2024-03-21T13:21:11.844 INFO:teuthology.orchestra.run.smithi042.stdout:Architecture: amd64 2024-03-21T13:21:11.845 INFO:teuthology.orchestra.run.smithi042.stdout:Source: linux-meta 2024-03-21T13:21:11.845 INFO:teuthology.orchestra.run.smithi042.stdout:Version: 5.15.0.101.98 2024-03-21T13:21:11.845 INFO:teuthology.orchestra.run.smithi042.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-21T13:21:11.845 INFO:teuthology.orchestra.run.smithi042.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-21T13:21:11.845 INFO:teuthology.orchestra.run.smithi042.stdout:Recommends: thermald 2024-03-21T13:21:11.845 INFO:teuthology.orchestra.run.smithi042.stdout:Description: Generic Linux kernel image 2024-03-21T13:21:11.845 INFO:teuthology.orchestra.run.smithi042.stdout: This package will always depend on the latest generic kernel image 2024-03-21T13:21:11.845 INFO:teuthology.orchestra.run.smithi042.stdout: available. 2024-03-21T13:21:11.845 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-03-21T13:21:11.845 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-21T13:21:11.845 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-21T13:21:11.845 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-03-21T13:21:11.846 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi042.front.sepia.ceph.com, path=None, version=distro) 2024-03-21T13:21:11.846 DEBUG:teuthology.orchestra.run.smithi042:> sudo apt-get clean 2024-03-21T13:21:12.045 INFO:teuthology.orchestra.run.smithi119.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-03-21T13:21:12.045 INFO:teuthology.orchestra.run.smithi119.stdout:Sourcing file `/etc/default/grub' 2024-03-21T13:21:12.046 DEBUG:teuthology.orchestra.run.smithi042:> sudo apt-get update 2024-03-21T13:21:12.055 INFO:teuthology.orchestra.run.smithi119.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-21T13:21:12.088 INFO:teuthology.orchestra.run.smithi119.stdout:Generating grub configuration file ... 2024-03-21T13:21:12.315 INFO:teuthology.orchestra.run.smithi042.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-21T13:21:12.315 INFO:teuthology.orchestra.run.smithi042.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-21T13:21:12.356 INFO:teuthology.orchestra.run.smithi119.stdout:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-21T13:21:12.378 INFO:teuthology.orchestra.run.smithi119.stdout:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-21T13:21:12.380 INFO:teuthology.orchestra.run.smithi042.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-21T13:21:12.461 INFO:teuthology.orchestra.run.smithi042.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-21T13:21:12.686 INFO:teuthology.orchestra.run.smithi119.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-21T13:21:12.692 INFO:teuthology.orchestra.run.smithi119.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-21T13:21:12.760 INFO:teuthology.orchestra.run.smithi119.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-21T13:21:12.767 INFO:teuthology.orchestra.run.smithi119.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-21T13:21:12.903 INFO:teuthology.orchestra.run.smithi119.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-21T13:21:12.903 INFO:teuthology.orchestra.run.smithi119.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-03-21T13:21:12.903 INFO:teuthology.orchestra.run.smithi119.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-21T13:21:12.953 INFO:teuthology.orchestra.run.smithi119.stdout:done 2024-03-21T13:21:13.384 DEBUG:teuthology.orchestra.run.smithi119:> dpkg -s linux-image-generic 2024-03-21T13:21:13.409 INFO:teuthology.orchestra.run.smithi119.stdout:Package: linux-image-generic 2024-03-21T13:21:13.409 INFO:teuthology.orchestra.run.smithi119.stdout:Status: install ok installed 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Priority: optional 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Section: kernel 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Installed-Size: 21 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Maintainer: Ubuntu Kernel Team 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Architecture: amd64 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Source: linux-meta 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Version: 5.15.0.101.98 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Recommends: thermald 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout:Description: Generic Linux kernel image 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout: This package will always depend on the latest generic kernel image 2024-03-21T13:21:13.410 INFO:teuthology.orchestra.run.smithi119.stdout: available. 2024-03-21T13:21:13.411 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-101-generic 2024-03-21T13:21:13.411 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-03-21T13:21:13.411 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-03-21T13:21:13.411 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-03-21T13:21:13.411 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi119.front.sepia.ceph.com, path=None, version=distro) 2024-03-21T13:21:13.411 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-get clean 2024-03-21T13:21:13.615 DEBUG:teuthology.orchestra.run.smithi119:> sudo apt-get update 2024-03-21T13:21:13.781 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:1 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-03-21T13:21:13.810 INFO:teuthology.orchestra.run.smithi042.stdout:Reading package lists... 2024-03-21T13:21:13.828 DEBUG:teuthology.orchestra.run.smithi042:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-21T13:21:13.844 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-03-21T13:21:13.879 INFO:teuthology.orchestra.run.smithi042.stdout:Reading package lists... 2024-03-21T13:21:13.926 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-03-21T13:21:14.007 INFO:teuthology.orchestra.run.smithi119.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-03-21T13:21:14.058 INFO:teuthology.orchestra.run.smithi042.stdout:Building dependency tree... 2024-03-21T13:21:14.059 INFO:teuthology.orchestra.run.smithi042.stdout:Reading state information... 2024-03-21T13:21:14.219 INFO:teuthology.orchestra.run.smithi042.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-03-21T13:21:14.219 INFO:teuthology.orchestra.run.smithi042.stdout:The following packages were automatically installed and are no longer required: 2024-03-21T13:21:14.219 INFO:teuthology.orchestra.run.smithi042.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-21T13:21:14.219 INFO:teuthology.orchestra.run.smithi042.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-21T13:21:14.219 INFO:teuthology.orchestra.run.smithi042.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-21T13:21:14.219 INFO:teuthology.orchestra.run.smithi042.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-21T13:21:14.220 INFO:teuthology.orchestra.run.smithi042.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-21T13:21:14.220 INFO:teuthology.orchestra.run.smithi042.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-21T13:21:14.259 INFO:teuthology.orchestra.run.smithi042.stdout:0 upgraded, 0 newly installed, 0 to remove and 298 not upgraded. 2024-03-21T13:21:14.261 DEBUG:teuthology.orchestra.run.smithi042:> dpkg -s linux-image-generic 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Package: linux-image-generic 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Status: install ok installed 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Priority: optional 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Section: kernel 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Installed-Size: 21 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Maintainer: Ubuntu Kernel Team 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Architecture: amd64 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Source: linux-meta 2024-03-21T13:21:14.319 INFO:teuthology.orchestra.run.smithi042.stdout:Version: 5.15.0.101.98 2024-03-21T13:21:14.320 INFO:teuthology.orchestra.run.smithi042.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-21T13:21:14.320 INFO:teuthology.orchestra.run.smithi042.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-21T13:21:14.320 INFO:teuthology.orchestra.run.smithi042.stdout:Recommends: thermald 2024-03-21T13:21:14.320 INFO:teuthology.orchestra.run.smithi042.stdout:Description: Generic Linux kernel image 2024-03-21T13:21:14.320 INFO:teuthology.orchestra.run.smithi042.stdout: This package will always depend on the latest generic kernel image 2024-03-21T13:21:14.320 INFO:teuthology.orchestra.run.smithi042.stdout: available. 2024-03-21T13:21:14.320 DEBUG:teuthology.orchestra.run.smithi042:> mktemp 2024-03-21T13:21:14.368 INFO:teuthology.orchestra.run.smithi042.stdout:/tmp/tmp.20u4qVxCL1 2024-03-21T13:21:14.368 DEBUG:teuthology.orchestra.run.smithi042:> sudo cp /boot/grub/grub.cfg /tmp/tmp.20u4qVxCL1 2024-03-21T13:21:14.424 DEBUG:teuthology.orchestra.run.smithi042:> sudo chmod 0666 /tmp/tmp.20u4qVxCL1 2024-03-21T13:21:14.546 DEBUG:teuthology.orchestra.remote:smithi042:/tmp/tmp.20u4qVxCL1 is 10KB 2024-03-21T13:21:14.558 DEBUG:teuthology.orchestra.run.smithi042:> rm -fr /tmp/tmp.20u4qVxCL1 2024-03-21T13:21:14.564 DEBUG:teuthology.orchestra.run.smithi042:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-21T13:21:14.623 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-03-21T13:21:14.623 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-21T13:21:14.623 DEBUG:teuthology.orchestra.run.smithi042:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-21T13:21:14.697 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-03-21T13:21:14.697 DEBUG:teuthology.orchestra.run.smithi042:> sudo update-grub 2024-03-21T13:21:15.103 INFO:teuthology.orchestra.run.smithi119.stdout:Reading package lists... 2024-03-21T13:21:15.120 DEBUG:teuthology.orchestra.run.smithi119:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-03-21T13:21:15.170 INFO:teuthology.orchestra.run.smithi119.stdout:Reading package lists... 2024-03-21T13:21:15.349 INFO:teuthology.orchestra.run.smithi119.stdout:Building dependency tree... 2024-03-21T13:21:15.350 INFO:teuthology.orchestra.run.smithi119.stdout:Reading state information... 2024-03-21T13:21:15.505 INFO:teuthology.orchestra.run.smithi119.stdout:linux-image-generic is already the newest version (5.15.0.101.98). 2024-03-21T13:21:15.505 INFO:teuthology.orchestra.run.smithi119.stdout:The following packages were automatically installed and are no longer required: 2024-03-21T13:21:15.505 INFO:teuthology.orchestra.run.smithi119.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-03-21T13:21:15.505 INFO:teuthology.orchestra.run.smithi119.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-03-21T13:21:15.505 INFO:teuthology.orchestra.run.smithi119.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-03-21T13:21:15.506 INFO:teuthology.orchestra.run.smithi119.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-03-21T13:21:15.506 INFO:teuthology.orchestra.run.smithi119.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-03-21T13:21:15.506 INFO:teuthology.orchestra.run.smithi119.stdout:Use 'sudo apt autoremove' to remove them. 2024-03-21T13:21:15.544 INFO:teuthology.orchestra.run.smithi119.stdout:0 upgraded, 0 newly installed, 0 to remove and 298 not upgraded. 2024-03-21T13:21:15.546 DEBUG:teuthology.orchestra.run.smithi119:> dpkg -s linux-image-generic 2024-03-21T13:21:15.603 INFO:teuthology.orchestra.run.smithi119.stdout:Package: linux-image-generic 2024-03-21T13:21:15.603 INFO:teuthology.orchestra.run.smithi119.stdout:Status: install ok installed 2024-03-21T13:21:15.603 INFO:teuthology.orchestra.run.smithi119.stdout:Priority: optional 2024-03-21T13:21:15.603 INFO:teuthology.orchestra.run.smithi119.stdout:Section: kernel 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Installed-Size: 21 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Maintainer: Ubuntu Kernel Team 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Architecture: amd64 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Source: linux-meta 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Version: 5.15.0.101.98 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.3), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-101), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.3) 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Depends: linux-image-5.15.0-101-generic, linux-modules-extra-5.15.0-101-generic, linux-firmware, intel-microcode, amd64-microcode 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Recommends: thermald 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout:Description: Generic Linux kernel image 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout: This package will always depend on the latest generic kernel image 2024-03-21T13:21:15.604 INFO:teuthology.orchestra.run.smithi119.stdout: available. 2024-03-21T13:21:15.604 DEBUG:teuthology.orchestra.run.smithi119:> mktemp 2024-03-21T13:21:15.649 INFO:teuthology.orchestra.run.smithi119.stdout:/tmp/tmp.5jYDa3fWTP 2024-03-21T13:21:15.649 DEBUG:teuthology.orchestra.run.smithi119:> sudo cp /boot/grub/grub.cfg /tmp/tmp.5jYDa3fWTP 2024-03-21T13:21:15.705 DEBUG:teuthology.orchestra.run.smithi119:> sudo chmod 0666 /tmp/tmp.5jYDa3fWTP 2024-03-21T13:21:15.822 DEBUG:teuthology.orchestra.remote:smithi119:/tmp/tmp.5jYDa3fWTP is 10KB 2024-03-21T13:21:15.834 DEBUG:teuthology.orchestra.run.smithi119:> rm -fr /tmp/tmp.5jYDa3fWTP 2024-03-21T13:21:15.839 DEBUG:teuthology.orchestra.run.smithi119:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-03-21T13:21:15.892 DEBUG:teuthology.orchestra.run.smithi119:> set -ex 2024-03-21T13:21:15.893 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-03-21T13:21:15.893 DEBUG:teuthology.orchestra.run.smithi119:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-03-21T13:21:15.961 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-101-generic 2024-03-21T13:21:15.962 DEBUG:teuthology.orchestra.run.smithi119:> sudo update-grub 2024-03-21T13:21:16.029 INFO:teuthology.orchestra.run.smithi042.stderr:Sourcing file `/etc/default/grub' 2024-03-21T13:21:16.031 INFO:teuthology.orchestra.run.smithi042.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-21T13:21:16.033 INFO:teuthology.orchestra.run.smithi042.stderr:Generating grub configuration file ... 2024-03-21T13:21:16.206 INFO:teuthology.orchestra.run.smithi042.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-21T13:21:16.213 INFO:teuthology.orchestra.run.smithi042.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-21T13:21:16.435 INFO:teuthology.orchestra.run.smithi042.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-21T13:21:16.441 INFO:teuthology.orchestra.run.smithi042.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-21T13:21:16.483 INFO:teuthology.orchestra.run.smithi042.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-21T13:21:16.489 INFO:teuthology.orchestra.run.smithi042.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-21T13:21:16.612 INFO:teuthology.orchestra.run.smithi042.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-21T13:21:16.612 INFO:teuthology.orchestra.run.smithi042.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-21T13:21:16.612 INFO:teuthology.orchestra.run.smithi042.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-21T13:21:16.645 INFO:teuthology.orchestra.run.smithi042.stderr:done 2024-03-21T13:21:16.653 DEBUG:teuthology.orchestra.run.smithi042:> sudo shutdown -r now 2024-03-21T13:21:17.194 INFO:teuthology.orchestra.run.smithi119.stderr:Sourcing file `/etc/default/grub' 2024-03-21T13:21:17.196 INFO:teuthology.orchestra.run.smithi119.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-03-21T13:21:17.197 INFO:teuthology.orchestra.run.smithi119.stderr:Generating grub configuration file ... 2024-03-21T13:21:17.419 INFO:teuthology.orchestra.run.smithi119.stderr:Found linux image: /boot/vmlinuz-5.15.0-101-generic 2024-03-21T13:21:17.424 INFO:teuthology.orchestra.run.smithi119.stderr:Found initrd image: /boot/initrd.img-5.15.0-101-generic 2024-03-21T13:21:17.674 INFO:teuthology.orchestra.run.smithi119.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-03-21T13:21:17.678 INFO:teuthology.orchestra.run.smithi119.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-03-21T13:21:17.716 INFO:teuthology.orchestra.run.smithi119.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-03-21T13:21:17.721 INFO:teuthology.orchestra.run.smithi119.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-03-21T13:21:17.831 INFO:teuthology.orchestra.run.smithi119.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-03-21T13:21:17.831 INFO:teuthology.orchestra.run.smithi119.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-03-21T13:21:17.831 INFO:teuthology.orchestra.run.smithi119.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-03-21T13:21:17.851 INFO:teuthology.orchestra.run.smithi119.stderr:done 2024-03-21T13:21:17.859 DEBUG:teuthology.orchestra.run.smithi119:> sudo shutdown -r now 2024-03-21T13:21:46.673 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-03-21T13:21:46.674 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-03-21T13:21:46.675 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:21:47.863 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-03-21T13:21:47.864 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-03-21T13:21:47.864 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:05.214 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.42 2024-03-21T13:22:06.242 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.119 2024-03-21T13:22:14.224 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-03-21T13:22:14.224 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:15.244 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-03-21T13:22:15.245 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:18.302 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.119 2024-03-21T13:22:30.314 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-03-21T13:22:30.315 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:22:48.739 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.119 2024-03-21T13:23:03.754 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-03-21T13:23:03.755 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:23:04.483 DEBUG:teuthology.orchestra.run.smithi119:> true 2024-03-21T13:23:05.207 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-03-21T13:23:05.207 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-101-generic"... 2024-03-21T13:23:05.207 DEBUG:teuthology.orchestra.run.smithi119:> uname -r 2024-03-21T13:23:05.259 INFO:teuthology.orchestra.run.smithi119.stdout:5.15.0-101-generic 2024-03-21T13:23:05.259 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-03-21T13:23:05.259 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-21T13:23:05.259 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-21T13:23:06.260 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-03-21T13:23:06.260 DEBUG:teuthology.orchestra.run.smithi119:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-21T13:23:06.348 INFO:teuthology.orchestra.run.smithi119.stdout:ttyS1 2024-03-21T13:23:06.372 DEBUG:teuthology.parallel:result is None 2024-03-21T13:23:14.228 DEBUG:teuthology.orchestra.remote:timed out 2024-03-21T13:23:26.228 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-03-21T13:23:26.229 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:23:26.468 DEBUG:teuthology.orchestra.run.smithi042:> true 2024-03-21T13:23:27.084 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-03-21T13:23:27.084 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-101-generic"... 2024-03-21T13:23:27.085 DEBUG:teuthology.orchestra.run.smithi042:> uname -r 2024-03-21T13:23:27.132 INFO:teuthology.orchestra.run.smithi042.stdout:5.15.0-101-generic 2024-03-21T13:23:27.132 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-101-generic vs 5.15.0-101-generic 2024-03-21T13:23:27.132 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-03-21T13:23:27.132 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-03-21T13:23:28.133 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-03-21T13:23:28.133 DEBUG:teuthology.orchestra.run.smithi042:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-03-21T13:23:28.208 INFO:teuthology.orchestra.run.smithi042.stdout:ttyS1 2024-03-21T13:23:28.233 DEBUG:teuthology.parallel:result is None 2024-03-21T13:23:28.233 INFO:teuthology.run_tasks:Running task internal.base... 2024-03-21T13:23:28.240 INFO:teuthology.task.internal:Creating test directory... 2024-03-21T13:23:28.240 DEBUG:teuthology.orchestra.run.smithi042:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-21T13:23:28.243 DEBUG:teuthology.orchestra.run.smithi119:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-03-21T13:23:28.249 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-03-21T13:23:28.262 INFO:teuthology.run_tasks:Running task internal.archive... 2024-03-21T13:23:28.271 INFO:teuthology.task.internal:Creating archive directory... 2024-03-21T13:23:28.272 DEBUG:teuthology.orchestra.run.smithi042:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-21T13:23:28.292 DEBUG:teuthology.orchestra.run.smithi119:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-03-21T13:23:28.391 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-03-21T13:23:28.396 INFO:teuthology.task.internal:Enabling coredump saving... 2024-03-21T13:23:28.397 DEBUG:teuthology.orchestra.run.smithi042:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-03-21T13:23:28.399 DEBUG:teuthology.orchestra.run.smithi119:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-03-21T13:23:28.417 INFO:teuthology.orchestra.run.smithi042.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-21T13:23:28.421 INFO:teuthology.orchestra.run.smithi119.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-21T13:23:28.425 INFO:teuthology.orchestra.run.smithi042.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-21T13:23:28.431 INFO:teuthology.orchestra.run.smithi119.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-03-21T13:23:28.432 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-03-21T13:23:28.438 INFO:teuthology.task.internal:Configuring sudo... 2024-03-21T13:23:28.439 DEBUG:teuthology.orchestra.run.smithi042:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-21T13:23:28.472 DEBUG:teuthology.orchestra.run.smithi119:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-03-21T13:23:28.486 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-03-21T13:23:28.495 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-03-21T13:23:28.495 DEBUG:teuthology.orchestra.run.smithi042:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-21T13:23:28.528 DEBUG:teuthology.orchestra.run.smithi119:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-03-21T13:23:28.534 DEBUG:teuthology.orchestra.run.smithi042:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-21T13:23:28.582 DEBUG:teuthology.orchestra.run.smithi042:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-21T13:23:28.628 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-03-21T13:23:28.628 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-21T13:23:28.691 DEBUG:teuthology.orchestra.run.smithi119:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-03-21T13:23:28.697 DEBUG:teuthology.orchestra.run.smithi119:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-03-21T13:23:28.743 DEBUG:teuthology.orchestra.run.smithi119:> set -ex 2024-03-21T13:23:28.743 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-03-21T13:23:28.815 DEBUG:teuthology.orchestra.run.smithi042:> sudo service rsyslog restart 2024-03-21T13:23:28.818 DEBUG:teuthology.orchestra.run.smithi119:> sudo service rsyslog restart 2024-03-21T13:23:28.908 INFO:teuthology.run_tasks:Running task internal.timer... 2024-03-21T13:23:28.915 INFO:teuthology.task.internal:Starting timer... 2024-03-21T13:23:28.915 INFO:teuthology.run_tasks:Running task pcp... 2024-03-21T13:23:28.926 INFO:teuthology.run_tasks:Running task selinux... 2024-03-21T13:23:28.934 DEBUG:teuthology.task.selinux:Excluding smithi042: OS 'ubuntu' does not support SELinux 2024-03-21T13:23:28.934 DEBUG:teuthology.task.selinux:Excluding smithi119: OS 'ubuntu' does not support SELinux 2024-03-21T13:23:28.934 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-03-21T13:23:28.934 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-03-21T13:23:28.935 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-03-21T13:23:28.935 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-03-21T13:23:28.944 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-03-21T13:23:28.961 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-03-21T13:23:28.963 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi042.front.sepia.ceph.com,smithi119.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-03-21T13:30:36.784 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi042.front.sepia.ceph.com'), Remote(name='ubuntu@smithi119.front.sepia.ceph.com')] 2024-03-21T13:30:36.785 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-03-21T13:30:36.786 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi042.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:30:36.871 DEBUG:teuthology.orchestra.run.smithi042:> true 2024-03-21T13:30:36.954 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi042.front.sepia.ceph.com' 2024-03-21T13:30:36.955 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-03-21T13:30:36.955 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi119.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-03-21T13:30:37.040 DEBUG:teuthology.orchestra.run.smithi119:> true 2024-03-21T13:30:37.113 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi119.front.sepia.ceph.com' 2024-03-21T13:30:37.114 INFO:teuthology.run_tasks:Running task clock... 2024-03-21T13:30:37.126 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-03-21T13:30:37.126 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-21T13:30:37.126 DEBUG:teuthology.orchestra.run.smithi042:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-21T13:30:37.129 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-03-21T13:30:37.129 DEBUG:teuthology.orchestra.run.smithi119:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-21T13:30:37.157 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-21T13:30:37.157 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Command line: ntpd -gq 2024-03-21T13:30:37.158 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: ---------------------------------------------------- 2024-03-21T13:30:37.158 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: ntp-4 is maintained by Network Time Foundation, 2024-03-21T13:30:37.158 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-21T13:30:37.158 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: corporation. Support and training for ntp-4 are 2024-03-21T13:30:37.158 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: available at https://www.nwtime.org/support 2024-03-21T13:30:37.158 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: ---------------------------------------------------- 2024-03-21T13:30:37.159 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: proto: precision = 0.066 usec (-24) 2024-03-21T13:30:37.159 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: basedate set to 2022-02-04 2024-03-21T13:30:37.159 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: gps base set to 2022-02-06 (week 2196) 2024-03-21T13:30:37.159 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-21T13:30:37.159 INFO:teuthology.orchestra.run.smithi042.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-21T13:30:37.159 INFO:teuthology.orchestra.run.smithi042.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-21T13:30:37.160 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: restrict ::: KOD does nothing without LIMITED. 2024-03-21T13:30:37.160 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Listen and drop on 0 v6wildcard [::]:123 2024-03-21T13:30:37.160 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-21T13:30:37.161 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Listen normally on 2 lo 127.0.0.1:123 2024-03-21T13:30:37.161 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Listen normally on 3 ens1f0 172.21.15.42:123 2024-03-21T13:30:37.161 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Listen normally on 4 lo [::1]:123 2024-03-21T13:30:37.161 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Listen normally on 5 ens1f0 [fe80::ec4:7aff:febd:1440%4]:123 2024-03-21T13:30:37.161 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:37 ntpd[17115]: Listening on routing socket on fd #22 for interface updates 2024-03-21T13:30:37.178 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-03-21T13:30:37.178 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Command line: ntpd -gq 2024-03-21T13:30:37.178 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: ---------------------------------------------------- 2024-03-21T13:30:37.178 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: ntp-4 is maintained by Network Time Foundation, 2024-03-21T13:30:37.178 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-03-21T13:30:37.179 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: corporation. Support and training for ntp-4 are 2024-03-21T13:30:37.179 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: available at https://www.nwtime.org/support 2024-03-21T13:30:37.179 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: ---------------------------------------------------- 2024-03-21T13:30:37.179 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: proto: precision = 0.060 usec (-24) 2024-03-21T13:30:37.179 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: basedate set to 2022-02-04 2024-03-21T13:30:37.179 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: gps base set to 2022-02-06 (week 2196) 2024-03-21T13:30:37.180 INFO:teuthology.orchestra.run.smithi119.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-21T13:30:37.180 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-03-21T13:30:37.180 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: restrict ::: KOD does nothing without LIMITED. 2024-03-21T13:30:37.180 INFO:teuthology.orchestra.run.smithi119.stderr:restrict ::: KOD does nothing without LIMITED. 2024-03-21T13:30:37.181 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Listen and drop on 0 v6wildcard [::]:123 2024-03-21T13:30:37.181 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-03-21T13:30:37.181 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Listen normally on 2 lo 127.0.0.1:123 2024-03-21T13:30:37.181 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Listen normally on 3 enp3s0f1 172.21.15.119:123 2024-03-21T13:30:37.182 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Listen normally on 4 lo [::1]:123 2024-03-21T13:30:37.182 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d5ef%5]:123 2024-03-21T13:30:37.182 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:37 ntpd[17194]: Listening on routing socket on fd #22 for interface updates 2024-03-21T13:30:38.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:38.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:38.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:38.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:38.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:38.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:38.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:38.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:38.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:38.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:38.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:38.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:38.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:38.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:38 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:38.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:38 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:38.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:38 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:38.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:38 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:38.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:38 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:38.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:38 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:38.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:38 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:38.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:38 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:38.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:38 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:40.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.161 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:40.161 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:40 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:40.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.179 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:40.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:40 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:42.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:42.231 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.232 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.232 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:42.232 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:42.232 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.232 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.232 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:42.232 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:42 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:42.234 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:42.235 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.235 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.235 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:42.235 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:42.235 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:42.235 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:42.235 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:42.235 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:42 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:44.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.159 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:44.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:44.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.160 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:44.160 INFO:teuthology.orchestra.run.smithi042.stdout:21 Mar 13:30:44 ntpd[17115]: ntpd: time slew +0.003274 s 2024-03-21T13:30:44.160 INFO:teuthology.orchestra.run.smithi042.stdout:ntpd: time slew +0.003274s 2024-03-21T13:30:44.161 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:44.161 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-21T13:30:44.161 INFO:teuthology.orchestra.run.smithi042.stderr:21 Mar 13:30:44 ntpd[17115]: can't open /var/log/ntpstats/loopstats.20240321: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.180 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/rawstats.20240321: Permission denied 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/peerstats.20240321: Permission denied 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stdout:21 Mar 13:30:44 ntpd[17194]: ntpd: time slew -0.004443 s 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stdout:ntpd: time slew -0.004443s 2024-03-21T13:30:44.181 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-03-21T13:30:44.182 INFO:teuthology.orchestra.run.smithi119.stderr:21 Mar 13:30:44 ntpd[17194]: can't open /var/log/ntpstats/loopstats.20240321: Permission denied 2024-03-21T13:30:44.224 INFO:teuthology.orchestra.run.smithi042.stdout: remote refid st t when poll reach delay offset jitter 2024-03-21T13:30:44.224 INFO:teuthology.orchestra.run.smithi042.stdout:============================================================================== 2024-03-21T13:30:44.224 INFO:teuthology.orchestra.run.smithi042.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:44.224 INFO:teuthology.orchestra.run.smithi042.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:44.224 INFO:teuthology.orchestra.run.smithi042.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:44.225 INFO:teuthology.orchestra.run.smithi042.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:44.230 INFO:teuthology.orchestra.run.smithi119.stdout: remote refid st t when poll reach delay offset jitter 2024-03-21T13:30:44.230 INFO:teuthology.orchestra.run.smithi119.stdout:============================================================================== 2024-03-21T13:30:44.230 INFO:teuthology.orchestra.run.smithi119.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:44.231 INFO:teuthology.orchestra.run.smithi119.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:44.231 INFO:teuthology.orchestra.run.smithi119.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:44.231 INFO:teuthology.orchestra.run.smithi119.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:44.231 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-03-21T13:30:44.241 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-03-21T13:30:44.241 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-03-21T13:30:44.241 DEBUG:teuthology.orchestra.run.smithi042:> dd if=/scratch_devs of=/dev/stdout 2024-03-21T13:30:44.273 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-03-21T13:30:44.273 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/vg_nvme/lv_1 2024-03-21T13:30:44.321 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-21T13:30:44.321 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:30:44.321 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 878 Links: 1 2024-03-21T13:30:44.321 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:30:44.322 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-03-21 13:27:16.773850738 +0000 2024-03-21T13:30:44.322 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-03-21 13:27:16.505853131 +0000 2024-03-21T13:30:44.322 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-03-21 13:27:16.505853131 +0000 2024-03-21T13:30:44.322 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: - 2024-03-21T13:30:44.322 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-21T13:30:44.376 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-03-21T13:30:44.376 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-03-21T13:30:44.376 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000269588 s, 1.9 MB/s 2024-03-21T13:30:44.378 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-21T13:30:44.428 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/vg_nvme/lv_2 2024-03-21T13:30:44.481 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-21T13:30:44.481 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:30:44.481 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 898 Links: 1 2024-03-21T13:30:44.481 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:30:44.481 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-03-21 13:27:17.281846201 +0000 2024-03-21T13:30:44.481 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-03-21 13:27:17.021848523 +0000 2024-03-21T13:30:44.482 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-03-21 13:27:17.021848523 +0000 2024-03-21T13:30:44.482 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: - 2024-03-21T13:30:44.482 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-21T13:30:44.535 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-03-21T13:30:44.535 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-03-21T13:30:44.536 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000277437 s, 1.8 MB/s 2024-03-21T13:30:44.537 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-21T13:30:44.587 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/vg_nvme/lv_3 2024-03-21T13:30:44.633 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-21T13:30:44.633 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:30:44.633 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 914 Links: 1 2024-03-21T13:30:44.633 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:30:44.633 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-03-21 13:27:17.841841198 +0000 2024-03-21T13:30:44.633 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-03-21 13:27:17.545843842 +0000 2024-03-21T13:30:44.633 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-03-21 13:27:17.545843842 +0000 2024-03-21T13:30:44.633 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: - 2024-03-21T13:30:44.634 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-21T13:30:44.687 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-03-21T13:30:44.687 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-03-21T13:30:44.687 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000249689 s, 2.1 MB/s 2024-03-21T13:30:44.689 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-21T13:30:44.739 DEBUG:teuthology.orchestra.run.smithi042:> stat /dev/vg_nvme/lv_4 2024-03-21T13:30:44.785 INFO:teuthology.orchestra.run.smithi042.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-21T13:30:44.785 INFO:teuthology.orchestra.run.smithi042.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:30:44.785 INFO:teuthology.orchestra.run.smithi042.stdout:Device: 5h/5d Inode: 932 Links: 1 2024-03-21T13:30:44.785 INFO:teuthology.orchestra.run.smithi042.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:30:44.785 INFO:teuthology.orchestra.run.smithi042.stdout:Access: 2024-03-21 13:27:18.313836981 +0000 2024-03-21T13:30:44.786 INFO:teuthology.orchestra.run.smithi042.stdout:Modify: 2024-03-21 13:27:18.073839126 +0000 2024-03-21T13:30:44.786 INFO:teuthology.orchestra.run.smithi042.stdout:Change: 2024-03-21 13:27:18.073839126 +0000 2024-03-21T13:30:44.786 INFO:teuthology.orchestra.run.smithi042.stdout: Birth: - 2024-03-21T13:30:44.786 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-21T13:30:44.839 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records in 2024-03-21T13:30:44.839 INFO:teuthology.orchestra.run.smithi042.stderr:1+0 records out 2024-03-21T13:30:44.839 INFO:teuthology.orchestra.run.smithi042.stderr:512 bytes copied, 0.000301224 s, 1.7 MB/s 2024-03-21T13:30:44.841 DEBUG:teuthology.orchestra.run.smithi042:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-21T13:30:44.891 DEBUG:teuthology.orchestra.run.smithi042:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-03-21T13:30:45.025 INFO:teuthology.orchestra.run.smithi042.stdout:loop 2024-03-21T13:30:45.026 INFO:tasks.nvme_loop:Connecting nvme_loop smithi042:/dev/vg_nvme/lv_1... 2024-03-21T13:30:45.027 DEBUG:teuthology.orchestra.run.smithi042:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-03-21T13:30:45.044 INFO:teuthology.orchestra.run.smithi042.stdout:1 2024-03-21T13:30:45.065 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/vg_nvme/lv_11 2024-03-21T13:30:45.083 INFO:tasks.nvme_loop:Connecting nvme_loop smithi042:/dev/vg_nvme/lv_2... 2024-03-21T13:30:45.083 DEBUG:teuthology.orchestra.run.smithi042:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-03-21T13:30:45.141 INFO:teuthology.orchestra.run.smithi042.stdout:1 2024-03-21T13:30:45.159 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/vg_nvme/lv_21 2024-03-21T13:30:45.175 INFO:tasks.nvme_loop:Connecting nvme_loop smithi042:/dev/vg_nvme/lv_3... 2024-03-21T13:30:45.175 DEBUG:teuthology.orchestra.run.smithi042:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-03-21T13:30:45.233 INFO:teuthology.orchestra.run.smithi042.stdout:1 2024-03-21T13:30:45.253 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/vg_nvme/lv_31 2024-03-21T13:30:45.269 INFO:tasks.nvme_loop:Connecting nvme_loop smithi042:/dev/vg_nvme/lv_4... 2024-03-21T13:30:45.269 DEBUG:teuthology.orchestra.run.smithi042:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-03-21T13:30:45.328 INFO:teuthology.orchestra.run.smithi042.stdout:1 2024-03-21T13:30:45.347 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/vg_nvme/lv_41 2024-03-21T13:30:45.363 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-03-21T13:30:45.363 DEBUG:teuthology.orchestra.run.smithi042:> dd if=/scratch_devs of=/dev/stdout 2024-03-21T13:30:45.409 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme list 2024-03-21T13:30:45.465 INFO:teuthology.orchestra.run.smithi042.stdout:Node SN Model Namespace Usage Format FW Rev 2024-03-21T13:30:45.465 INFO:teuthology.orchestra.run.smithi042.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-03-21T13:30:45.465 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/nvme0n1 PHMB75130021480DGN INTEL SSDPED1D480GA 1 480.10 GB / 480.10 GB 512 B + 0 B E2010325 2024-03-21T13:30:45.466 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/nvme1n1 0a4b74c61afb6d9c0ab9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-21T13:30:45.466 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/nvme2n1 8b12211a3a7c31e9d576 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-21T13:30:45.466 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/nvme3n1 8aef08766c27dbc05643 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-21T13:30:45.466 INFO:teuthology.orchestra.run.smithi042.stdout:/dev/nvme4n1 ab7827248c26c060e719 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-21T13:30:45.467 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-21T13:30:45.467 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-03-21T13:30:45.467 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/scratch_devs 2024-03-21T13:30:45.518 DEBUG:teuthology.orchestra.run.smithi119:> set -ex 2024-03-21T13:30:45.518 DEBUG:teuthology.orchestra.run.smithi119:> dd if=/scratch_devs of=/dev/stdout 2024-03-21T13:30:45.524 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-03-21T13:30:45.524 DEBUG:teuthology.orchestra.run.smithi119:> stat /dev/vg_nvme/lv_1 2024-03-21T13:30:45.572 INFO:teuthology.orchestra.run.smithi119.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-03-21T13:30:45.572 INFO:teuthology.orchestra.run.smithi119.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:30:45.572 INFO:teuthology.orchestra.run.smithi119.stdout:Device: 5h/5d Inode: 871 Links: 1 2024-03-21T13:30:45.572 INFO:teuthology.orchestra.run.smithi119.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:30:45.572 INFO:teuthology.orchestra.run.smithi119.stdout:Access: 2024-03-21 13:27:11.484517593 +0000 2024-03-21T13:30:45.573 INFO:teuthology.orchestra.run.smithi119.stdout:Modify: 2024-03-21 13:27:11.208520055 +0000 2024-03-21T13:30:45.573 INFO:teuthology.orchestra.run.smithi119.stdout:Change: 2024-03-21 13:27:11.208520055 +0000 2024-03-21T13:30:45.573 INFO:teuthology.orchestra.run.smithi119.stdout: Birth: - 2024-03-21T13:30:45.573 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-03-21T13:30:45.626 INFO:teuthology.orchestra.run.smithi119.stderr:1+0 records in 2024-03-21T13:30:45.626 INFO:teuthology.orchestra.run.smithi119.stderr:1+0 records out 2024-03-21T13:30:45.626 INFO:teuthology.orchestra.run.smithi119.stderr:512 bytes copied, 0.000366514 s, 1.4 MB/s 2024-03-21T13:30:45.628 DEBUG:teuthology.orchestra.run.smithi119:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-03-21T13:30:45.677 DEBUG:teuthology.orchestra.run.smithi119:> stat /dev/vg_nvme/lv_2 2024-03-21T13:30:45.724 INFO:teuthology.orchestra.run.smithi119.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-03-21T13:30:45.724 INFO:teuthology.orchestra.run.smithi119.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:30:45.724 INFO:teuthology.orchestra.run.smithi119.stdout:Device: 5h/5d Inode: 888 Links: 1 2024-03-21T13:30:45.724 INFO:teuthology.orchestra.run.smithi119.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:30:45.724 INFO:teuthology.orchestra.run.smithi119.stdout:Access: 2024-03-21 13:27:11.960513346 +0000 2024-03-21T13:30:45.724 INFO:teuthology.orchestra.run.smithi119.stdout:Modify: 2024-03-21 13:27:11.708515595 +0000 2024-03-21T13:30:45.724 INFO:teuthology.orchestra.run.smithi119.stdout:Change: 2024-03-21 13:27:11.708515595 +0000 2024-03-21T13:30:45.724 INFO:teuthology.orchestra.run.smithi119.stdout: Birth: - 2024-03-21T13:30:45.724 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-03-21T13:30:45.778 INFO:teuthology.orchestra.run.smithi119.stderr:1+0 records in 2024-03-21T13:30:45.779 INFO:teuthology.orchestra.run.smithi119.stderr:1+0 records out 2024-03-21T13:30:45.779 INFO:teuthology.orchestra.run.smithi119.stderr:512 bytes copied, 0.00040652 s, 1.3 MB/s 2024-03-21T13:30:45.780 DEBUG:teuthology.orchestra.run.smithi119:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-03-21T13:30:45.829 DEBUG:teuthology.orchestra.run.smithi119:> stat /dev/vg_nvme/lv_3 2024-03-21T13:30:45.876 INFO:teuthology.orchestra.run.smithi119.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-03-21T13:30:45.876 INFO:teuthology.orchestra.run.smithi119.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:30:45.876 INFO:teuthology.orchestra.run.smithi119.stdout:Device: 5h/5d Inode: 911 Links: 1 2024-03-21T13:30:45.876 INFO:teuthology.orchestra.run.smithi119.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:30:45.876 INFO:teuthology.orchestra.run.smithi119.stdout:Access: 2024-03-21 13:27:12.468508815 +0000 2024-03-21T13:30:45.876 INFO:teuthology.orchestra.run.smithi119.stdout:Modify: 2024-03-21 13:27:12.228510956 +0000 2024-03-21T13:30:45.876 INFO:teuthology.orchestra.run.smithi119.stdout:Change: 2024-03-21 13:27:12.228510956 +0000 2024-03-21T13:30:45.876 INFO:teuthology.orchestra.run.smithi119.stdout: Birth: - 2024-03-21T13:30:45.877 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-03-21T13:30:45.931 INFO:teuthology.orchestra.run.smithi119.stderr:1+0 records in 2024-03-21T13:30:45.931 INFO:teuthology.orchestra.run.smithi119.stderr:1+0 records out 2024-03-21T13:30:45.931 INFO:teuthology.orchestra.run.smithi119.stderr:512 bytes copied, 0.000426713 s, 1.2 MB/s 2024-03-21T13:30:45.932 DEBUG:teuthology.orchestra.run.smithi119:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-03-21T13:30:45.982 DEBUG:teuthology.orchestra.run.smithi119:> stat /dev/vg_nvme/lv_4 2024-03-21T13:30:46.032 INFO:teuthology.orchestra.run.smithi119.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-03-21T13:30:46.032 INFO:teuthology.orchestra.run.smithi119.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-03-21T13:30:46.033 INFO:teuthology.orchestra.run.smithi119.stdout:Device: 5h/5d Inode: 921 Links: 1 2024-03-21T13:30:46.033 INFO:teuthology.orchestra.run.smithi119.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-03-21T13:30:46.033 INFO:teuthology.orchestra.run.smithi119.stdout:Access: 2024-03-21 13:27:12.980504247 +0000 2024-03-21T13:30:46.033 INFO:teuthology.orchestra.run.smithi119.stdout:Modify: 2024-03-21 13:27:12.704506709 +0000 2024-03-21T13:30:46.033 INFO:teuthology.orchestra.run.smithi119.stdout:Change: 2024-03-21 13:27:12.704506709 +0000 2024-03-21T13:30:46.033 INFO:teuthology.orchestra.run.smithi119.stdout: Birth: - 2024-03-21T13:30:46.033 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-03-21T13:30:46.087 INFO:teuthology.orchestra.run.smithi119.stderr:1+0 records in 2024-03-21T13:30:46.087 INFO:teuthology.orchestra.run.smithi119.stderr:1+0 records out 2024-03-21T13:30:46.087 INFO:teuthology.orchestra.run.smithi119.stderr:512 bytes copied, 0.000392207 s, 1.3 MB/s 2024-03-21T13:30:46.088 DEBUG:teuthology.orchestra.run.smithi119:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-03-21T13:30:46.137 DEBUG:teuthology.orchestra.run.smithi119:> grep '^nvme_loop' /proc/modules || sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-03-21T13:30:46.290 INFO:teuthology.orchestra.run.smithi119.stdout:loop 2024-03-21T13:30:46.291 INFO:tasks.nvme_loop:Connecting nvme_loop smithi119:/dev/vg_nvme/lv_1... 2024-03-21T13:30:46.291 DEBUG:teuthology.orchestra.run.smithi119:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-03-21T13:30:46.309 INFO:teuthology.orchestra.run.smithi119.stdout:1 2024-03-21T13:30:46.330 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/vg_nvme/lv_11 2024-03-21T13:30:46.347 INFO:tasks.nvme_loop:Connecting nvme_loop smithi119:/dev/vg_nvme/lv_2... 2024-03-21T13:30:46.347 DEBUG:teuthology.orchestra.run.smithi119:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-03-21T13:30:46.403 INFO:teuthology.orchestra.run.smithi119.stdout:1 2024-03-21T13:30:46.421 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/vg_nvme/lv_21 2024-03-21T13:30:46.436 INFO:tasks.nvme_loop:Connecting nvme_loop smithi119:/dev/vg_nvme/lv_3... 2024-03-21T13:30:46.436 DEBUG:teuthology.orchestra.run.smithi119:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-03-21T13:30:46.494 INFO:teuthology.orchestra.run.smithi119.stdout:1 2024-03-21T13:30:46.514 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/vg_nvme/lv_31 2024-03-21T13:30:46.530 INFO:tasks.nvme_loop:Connecting nvme_loop smithi119:/dev/vg_nvme/lv_4... 2024-03-21T13:30:46.530 DEBUG:teuthology.orchestra.run.smithi119:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-03-21T13:30:46.588 INFO:teuthology.orchestra.run.smithi119.stdout:1 2024-03-21T13:30:46.607 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/vg_nvme/lv_41 2024-03-21T13:30:46.623 DEBUG:teuthology.orchestra.run.smithi119:> set -ex 2024-03-21T13:30:46.623 DEBUG:teuthology.orchestra.run.smithi119:> dd if=/scratch_devs of=/dev/stdout 2024-03-21T13:30:46.670 DEBUG:teuthology.orchestra.run.smithi119:> sudo nvme list 2024-03-21T13:30:46.721 INFO:teuthology.orchestra.run.smithi119.stdout:Node SN Model Namespace Usage Format FW Rev 2024-03-21T13:30:46.721 INFO:teuthology.orchestra.run.smithi119.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-03-21T13:30:46.721 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/nvme0n1 PHFT620400Y1400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101F0 2024-03-21T13:30:46.721 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/nvme1n1 f8bd49bc578c668855b7 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-21T13:30:46.721 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/nvme2n1 1d6c14897c6b9dd3dac4 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-21T13:30:46.721 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/nvme3n1 3814c89b712724ddf2a5 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-21T13:30:46.721 INFO:teuthology.orchestra.run.smithi119.stdout:/dev/nvme4n1 d91c273c3464fc8fec51 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-1 2024-03-21T13:30:46.722 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-03-21T13:30:46.722 DEBUG:teuthology.orchestra.run.smithi119:> set -ex 2024-03-21T13:30:46.723 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd of=/scratch_devs 2024-03-21T13:30:46.774 INFO:teuthology.run_tasks:Running task cephadm... 2024-03-21T13:30:46.869 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': 'ba760091cd7bd2b0d23f4825ac856ba66450e988'} 2024-03-21T13:30:46.869 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:ba760091cd7bd2b0d23f4825ac856ba66450e988 2024-03-21T13:30:46.870 INFO:tasks.cephadm:Cluster fsid is 39a3c92c-e787-11ee-95cd-87774f69a715 2024-03-21T13:30:46.870 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-03-21T13:30:46.870 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-03-21T13:30:46.870 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 1791, in initialize_config ctx.ceph[cluster_name].mons = get_mons( File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/ceph.py", line 510, in get_mons assert mons AssertionError 2024-03-21T13:30:46.871 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 2192, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 1791, in initialize_config ctx.ceph[cluster_name].mons = get_mons( File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/ceph.py", line 510, in get_mons assert mons AssertionError 2024-03-21T13:30:47.069 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=86de6bd22efb449f96d37a62930a3865 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 2192, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/cephadm.py", line 1791, in initialize_config ctx.ceph[cluster_name].mons = get_mons( File "/home/teuthworker/src/git.ceph.com_ceph-c_ba760091cd7bd2b0d23f4825ac856ba66450e988/qa/tasks/ceph.py", line 510, in get_mons assert mons AssertionError 2024-03-21T13:30:47.072 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-03-21T13:30:47.080 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-03-21T13:30:47.093 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi042:/dev/vg_nvme/lv_1... 2024-03-21T13:30:47.094 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme disconnect -n lv_1 2024-03-21T13:30:47.328 INFO:teuthology.orchestra.run.smithi042.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-03-21T13:30:47.329 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:47.330 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi042:/dev/vg_nvme/lv_2... 2024-03-21T13:30:47.330 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme disconnect -n lv_2 2024-03-21T13:30:47.584 INFO:teuthology.orchestra.run.smithi042.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-03-21T13:30:47.585 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:47.586 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi042:/dev/vg_nvme/lv_3... 2024-03-21T13:30:47.586 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme disconnect -n lv_3 2024-03-21T13:30:47.840 INFO:teuthology.orchestra.run.smithi042.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-03-21T13:30:47.841 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:47.841 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi042:/dev/vg_nvme/lv_4... 2024-03-21T13:30:47.842 DEBUG:teuthology.orchestra.run.smithi042:> sudo nvme disconnect -n lv_4 2024-03-21T13:30:48.079 INFO:teuthology.orchestra.run.smithi042.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-03-21T13:30:48.080 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:48.081 DEBUG:teuthology.orchestra.run.smithi042:> set -ex 2024-03-21T13:30:48.081 DEBUG:teuthology.orchestra.run.smithi042:> sudo dd of=/scratch_devs 2024-03-21T13:30:48.094 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi119:/dev/vg_nvme/lv_1... 2024-03-21T13:30:48.094 DEBUG:teuthology.orchestra.run.smithi119:> sudo nvme disconnect -n lv_1 2024-03-21T13:30:48.329 INFO:teuthology.orchestra.run.smithi119.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-03-21T13:30:48.330 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:48.331 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi119:/dev/vg_nvme/lv_2... 2024-03-21T13:30:48.331 DEBUG:teuthology.orchestra.run.smithi119:> sudo nvme disconnect -n lv_2 2024-03-21T13:30:48.589 INFO:teuthology.orchestra.run.smithi119.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-03-21T13:30:48.590 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:48.590 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi119:/dev/vg_nvme/lv_3... 2024-03-21T13:30:48.591 DEBUG:teuthology.orchestra.run.smithi119:> sudo nvme disconnect -n lv_3 2024-03-21T13:30:48.829 INFO:teuthology.orchestra.run.smithi119.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-03-21T13:30:48.831 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:48.831 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi119:/dev/vg_nvme/lv_4... 2024-03-21T13:30:48.831 DEBUG:teuthology.orchestra.run.smithi119:> sudo nvme disconnect -n lv_4 2024-03-21T13:30:49.078 INFO:teuthology.orchestra.run.smithi119.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-03-21T13:30:49.078 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:49.079 DEBUG:teuthology.orchestra.run.smithi119:> set -ex 2024-03-21T13:30:49.079 DEBUG:teuthology.orchestra.run.smithi119:> sudo dd of=/scratch_devs 2024-03-21T13:30:49.091 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-03-21T13:30:49.100 INFO:teuthology.task.clock:Checking final clock skew... 2024-03-21T13:30:49.100 DEBUG:teuthology.orchestra.run.smithi042:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-21T13:30:49.102 DEBUG:teuthology.orchestra.run.smithi119:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-03-21T13:30:49.115 INFO:teuthology.orchestra.run.smithi042.stdout: remote refid st t when poll reach delay offset jitter 2024-03-21T13:30:49.115 INFO:teuthology.orchestra.run.smithi042.stdout:============================================================================== 2024-03-21T13:30:49.115 INFO:teuthology.orchestra.run.smithi042.stdout: hv01.front.sepi 44.4.53.2 2 u 4 64 1 0.066 -0.356 0.000 2024-03-21T13:30:49.115 INFO:teuthology.orchestra.run.smithi042.stdout: hv02.front.sepi 63.231.80.2 3 u 4 64 1 0.086 +3.182 0.000 2024-03-21T13:30:49.116 INFO:teuthology.orchestra.run.smithi042.stdout: hv03.front.sepi 74.6.168.72 3 u 3 64 1 0.083 +1.132 0.000 2024-03-21T13:30:49.116 INFO:teuthology.orchestra.run.smithi042.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:49.148 INFO:teuthology.orchestra.run.smithi119.stdout: remote refid st t when poll reach delay offset jitter 2024-03-21T13:30:49.148 INFO:teuthology.orchestra.run.smithi119.stdout:============================================================================== 2024-03-21T13:30:49.149 INFO:teuthology.orchestra.run.smithi119.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:49.149 INFO:teuthology.orchestra.run.smithi119.stdout: hv02.front.sepi 63.231.80.2 3 u 1 64 1 0.086 +0.588 0.000 2024-03-21T13:30:49.149 INFO:teuthology.orchestra.run.smithi119.stdout: hv03.front.sepi 74.6.168.72 3 u 1 64 1 0.139 -0.957 0.000 2024-03-21T13:30:49.149 INFO:teuthology.orchestra.run.smithi119.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-03-21T13:30:49.150 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-03-21T13:30:49.158 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-03-21T13:30:49.158 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-03-21T13:30:49.165 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-03-21T13:30:49.176 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-03-21T13:30:49.185 INFO:teuthology.task.internal:Duration was 440.269792 seconds 2024-03-21T13:30:49.185 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-03-21T13:30:49.194 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-03-21T13:30:49.194 DEBUG:teuthology.orchestra.run.smithi042:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-21T13:30:49.197 DEBUG:teuthology.orchestra.run.smithi119:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-03-21T13:30:49.235 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-03-21T13:30:49.235 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi042.front.sepia.ceph.com 2024-03-21T13:30:49.235 DEBUG:teuthology.orchestra.run.smithi042:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-03-21T13:30:49.283 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi119.front.sepia.ceph.com 2024-03-21T13:30:49.283 DEBUG:teuthology.orchestra.run.smithi119:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-03-21T13:30:49.293 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-03-21T13:30:49.293 DEBUG:teuthology.orchestra.run.smithi042:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-21T13:30:49.328 DEBUG:teuthology.orchestra.run.smithi119:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-03-21T13:30:49.372 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-03-21T13:30:49.372 DEBUG:teuthology.orchestra.run.smithi042:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-21T13:30:49.404 DEBUG:teuthology.orchestra.run.smithi119:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-03-21T13:30:49.471 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-03-21T13:30:49.479 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-03-21T13:30:49.479 DEBUG:teuthology.orchestra.run.smithi042:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-21T13:30:49.492 DEBUG:teuthology.orchestra.run.smithi119:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-03-21T13:30:49.505 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-03-21T13:30:49.514 DEBUG:teuthology.orchestra.run.smithi042:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-03-21T13:30:49.536 DEBUG:teuthology.orchestra.run.smithi119:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-03-21T13:30:49.543 INFO:teuthology.orchestra.run.smithi042.stdout:kernel.core_pattern = core 2024-03-21T13:30:49.559 INFO:teuthology.orchestra.run.smithi119.stdout:kernel.core_pattern = core 2024-03-21T13:30:49.576 DEBUG:teuthology.orchestra.run.smithi042:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-21T13:30:49.609 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:49.610 DEBUG:teuthology.orchestra.run.smithi119:> test -e /home/ubuntu/cephtest/archive/coredump 2024-03-21T13:30:49.621 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-03-21T13:30:49.621 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-03-21T13:30:49.630 INFO:teuthology.task.internal:Transferring archived files... 2024-03-21T13:30:49.632 DEBUG:teuthology.misc:Transferring archived files from smithi042:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868/remote/smithi042 2024-03-21T13:30:49.633 DEBUG:teuthology.orchestra.run.smithi042:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-21T13:30:49.674 DEBUG:teuthology.misc:Transferring archived files from smithi119:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868/remote/smithi119 2024-03-21T13:30:49.675 DEBUG:teuthology.orchestra.run.smithi119:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-03-21T13:30:49.694 INFO:teuthology.task.internal:Removing archive directory... 2024-03-21T13:30:49.694 DEBUG:teuthology.orchestra.run.smithi042:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-21T13:30:49.712 DEBUG:teuthology.orchestra.run.smithi119:> rm -rf -- /home/ubuntu/cephtest/archive 2024-03-21T13:30:49.738 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-03-21T13:30:49.748 INFO:teuthology.task.internal:Not uploading archives. 2024-03-21T13:30:49.748 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-03-21T13:30:49.757 INFO:teuthology.task.internal:Tidying up after the test... 2024-03-21T13:30:49.757 DEBUG:teuthology.orchestra.run.smithi042:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-21T13:30:49.760 DEBUG:teuthology.orchestra.run.smithi119:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-03-21T13:30:49.763 INFO:teuthology.orchestra.run.smithi042.stdout: 658646 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 21 13:30 /home/ubuntu/cephtest 2024-03-21T13:30:49.786 INFO:teuthology.orchestra.run.smithi119.stdout: 658642 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Mar 21 13:30 /home/ubuntu/cephtest 2024-03-21T13:30:49.787 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-03-21T13:30:49.796 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-03-21T13:30:49.815 INFO:teuthology.nuke:Checking targets against current locks 2024-03-21T13:30:49.843 DEBUG:teuthology.nuke:shortname: smithi042 2024-03-21T13:30:49.843 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-21T13:30:49.871 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi042.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-03-21 13:13:49.897812', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEZqdqdQbcZ5Z2np84Cs81hiPuAwrGx7bUJAfEG+3lxsHTi3Zq3W8lH5juGI1RZpNxuSIvbRyv0JQqY0Szam/Xs='} 2024-03-21T13:30:49.876 DEBUG:teuthology.nuke:shortname: smithi119 2024-03-21T13:30:49.876 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-03-21T13:30:49.904 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi119.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/adking-2024-03-21_11:21:25-orch:cephadm-wip-adk-testing-2024-03-20-2326-distro-default-smithi/7614868', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-03-21 13:13:49.895958', 'locked_by': 'scheduled_adking@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOPluJFLblNXF3CYZWxkO3pqg/sQSjKnZPzo/FURe10tIRZjgxvyb3jMdLKQIlvucluxEaTpaKz1Y1oFV9pipkk='} 2024-03-21T13:30:49.933 INFO:teuthology.orchestra.console.smithi042:Power off 2024-03-21T13:30:49.934 DEBUG:teuthology.orchestra.console.smithi042:pexpect command: ipmitool -H smithi042.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-21T13:30:49.960 DEBUG:teuthology.orchestra.console.smithi042:power off output: Chassis Power Control: Down/Off 2024-03-21T13:30:49.960 DEBUG:teuthology.orchestra.console.smithi042:pexpect command: ipmitool -H smithi042.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:30:49.976 INFO:teuthology.orchestra.console.smithi119:Power off 2024-03-21T13:30:49.977 DEBUG:teuthology.orchestra.console.smithi119:pexpect command: ipmitool -H smithi119.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-03-21T13:30:49.986 DEBUG:teuthology.orchestra.console.smithi042:check power output: Chassis Power is on 2024-03-21T13:30:50.002 DEBUG:teuthology.orchestra.console.smithi119:power off output: Chassis Power Control: Down/Off 2024-03-21T13:30:50.002 DEBUG:teuthology.orchestra.console.smithi119:pexpect command: ipmitool -H smithi119.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:30:50.024 DEBUG:teuthology.orchestra.console.smithi119:check power output: Chassis Power is on 2024-03-21T13:30:53.987 DEBUG:teuthology.orchestra.console.smithi042:pexpect command: ipmitool -H smithi042.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:30:54.026 DEBUG:teuthology.orchestra.console.smithi119:pexpect command: ipmitool -H smithi119.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:30:54.100 DEBUG:teuthology.orchestra.console.smithi042:check power output: Chassis Power is on 2024-03-21T13:30:54.136 DEBUG:teuthology.orchestra.console.smithi119:check power output: Chassis Power is on 2024-03-21T13:30:58.102 DEBUG:teuthology.orchestra.console.smithi042:pexpect command: ipmitool -H smithi042.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:30:58.137 DEBUG:teuthology.orchestra.console.smithi119:pexpect command: ipmitool -H smithi119.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:30:58.212 DEBUG:teuthology.orchestra.console.smithi042:check power output: Chassis Power is on 2024-03-21T13:30:58.246 DEBUG:teuthology.orchestra.console.smithi119:check power output: Chassis Power is off 2024-03-21T13:30:58.347 INFO:teuthology.orchestra.console.smithi119:Power off completed 2024-03-21T13:31:02.217 DEBUG:teuthology.orchestra.console.smithi042:pexpect command: ipmitool -H smithi042.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-03-21T13:31:02.326 DEBUG:teuthology.orchestra.console.smithi042:check power output: Chassis Power is off 2024-03-21T13:31:02.427 INFO:teuthology.orchestra.console.smithi042:Power off completed 2024-03-21T13:31:02.531 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 440.2697916030884 failure_reason: '' owner: scheduled_adking@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=86de6bd22efb449f96d37a62930a3865 status: fail success: false 2024-03-21T13:31:02.531 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-03-21T13:31:02.615 INFO:teuthology.run:FAIL