René's URL Explorer Experiment


Title: Extra lsilogic SCSI controller on aarch64 causes last disk unrecognized · Issue #12090 · apache/cloudstack · GitHub

Open Graph Title: Extra lsilogic SCSI controller on aarch64 causes last disk unrecognized · Issue #12090 · apache/cloudstack

X Title: Extra lsilogic SCSI controller on aarch64 causes last disk unrecognized · Issue #12090 · apache/cloudstack

Description: problem Environment CloudStack Version: 4.20.1.0 CPU Architecture: aarch64 Hypervisor: KVM UEFI Configuration (relevant for aarch64 VM boot, from /etc/cloudstack/agent/uefi.properties): # CloudStack Agent UEFI Configuration for ARM64 # T...

Open Graph Description: problem Environment CloudStack Version: 4.20.1.0 CPU Architecture: aarch64 Hypervisor: KVM UEFI Configuration (relevant for aarch64 VM boot, from /etc/cloudstack/agent/uefi.properties): # CloudStac...

X Description: problem Environment CloudStack Version: 4.20.1.0 CPU Architecture: aarch64 Hypervisor: KVM UEFI Configuration (relevant for aarch64 VM boot, from /etc/cloudstack/agent/uefi.properties): # CloudStac...

Opengraph URL: https://github.com/apache/cloudstack/issues/12090

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Extra lsilogic SCSI controller on aarch64 causes last disk unrecognized","articleBody":"### problem\n\n### Environment\n- CloudStack Version: 4.20.1.0\n- CPU Architecture: aarch64\n- Hypervisor: KVM\n- UEFI Configuration (relevant for aarch64 VM boot, from `/etc/cloudstack/agent/uefi.properties`):\n```\n# CloudStack Agent UEFI Configuration for ARM64\n# This file configures UEFI boot support for ARM64 virtual machines\n\n# Secure boot mode with Microsoft keys\nguest.nvram.template.secure=/usr/share/AAVMF/AAVMF_VARS.ms.fd\nguest.loader.secure=/usr/share/AAVMF/AAVMF_CODE.ms.fd\n\n# Secure boot mode without Microsoft keys\nguest.nvram.template.secboot=/usr/share/AAVMF/AAVMF_VARS.fd\nguest.loader.secboot=/usr/share/AAVMF/AAVMF_CODE.secboot.fd\n\n# Standard UEFI mode (default)\nguest.nvram.template.legacy=/usr/share/AAVMF/AAVMF_VARS.fd\nguest.loader.legacy=/usr/share/AAVMF/AAVMF_CODE.fd\n\n# No secure boot mode (explicitly disabled)\nguest.nvram.template.nosecboot=/usr/share/AAVMF/AAVMF_VARS.fd\nguest.loader.nosecboot=/usr/share/AAVMF/AAVMF_CODE.no-secboot.fd\n\n# NVRAM storage path\nguest.nvram.path=/var/lib/libvirt/qemu/nvram/\n```\n\n### Problem Description\nWhen attaching multiple disks to an aarch64 VM, CloudStack incorrectly adds an **extra lsilogic SCSI controller** after allocating virtio-scsi controllers for every 7 disks. This causes the **last disk** to be unrecognized after VM reboot.\n\n**Key Evidence:** The second SCSI controller switches from `virtio-scsi` to `lsilogic` after reboot.\n\n### Reproduction Steps\n1. Deploy an aarch64 VM with 5 disks → all recognized correctly under `virtio-scsi` controller\n2. Hot-add a 6th disk while VM running → temporarily works, creates second `virtio-scsi` controller\n3. Shutdown and restart the VM → second controller becomes `lsilogic`, 6th disk disappears\n\n### Expected Behavior\nAll disks assigned to `virtio-scsi` controllers, no `lsilogic` controller added.\n\n### Actual Behavior (with Evidence)\n```xml\nAfter reboot - WRONG\n\u003ccontroller type='scsi' index='1' model='lsilogic'\u003e\nShould be:  \u003ccontroller type='scsi' index='1' model='virtio-scsi'\u003e\n```\n\n\n### Related Code\nPR #9823 (bug at the end of implementation)\n\n### Attachments\n```xml\nStep 1: Initial State (5 disks attached)\nroot@NODE159:/var/log/cloudstack/agent# virsh dumpxml i-2-971-VM  | grep controller\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='0'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='1'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='2'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='4'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='5'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='6'/\u003e\n    \u003ccontroller type='usb' index='0' model='qemu-xhci'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='scsi' index='0' model='virtio-scsi'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='0' model='pcie-root'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='virtio-serial' index='0'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='1' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='2' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='3' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='4' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='5' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='6' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='7' model='pcie-to-pci-bridge'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='8' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n      \u003caddress type='virtio-serial' controller='0' bus='0' port='1'/\u003e\n\nStep 2: Hot-add 6th disk while VM running,witch device id is 7\nroot@NODE159:/var/log/cloudstack/agent# virsh dumpxml i-2-971-VM  | grep controller\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='0'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='1'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='2'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='4'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='5'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='6'/\u003e\n      \u003caddress type='drive' controller='1' bus='0' target='0' unit='0'/\u003e\n    \u003ccontroller type='usb' index='0' model='qemu-xhci'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='scsi' index='0' model='virtio-scsi'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='scsi' index='1' model='virtio-scsi'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='0' model='pcie-root'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='virtio-serial' index='0'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='1' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='2' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='3' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='4' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='5' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='6' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='7' model='pcie-to-pci-bridge'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='8' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n      \u003caddress type='virtio-serial' controller='0' bus='0' port='1'/\u003e\nStep 3: Reboot VM\nroot@NODE159:/var/log/cloudstack/agent# virsh dumpxml i-2-971-VM  | grep controller\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='0'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='1'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='2'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='4'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='5'/\u003e\n      \u003caddress type='drive' controller='0' bus='0' target='0' unit='6'/\u003e\n      \u003caddress type='drive' controller='1' bus='0' target='0' unit='0'/\u003e\n    \u003ccontroller type='usb' index='0' model='qemu-xhci'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='scsi' index='0' model='virtio-scsi'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='0' model='pcie-root'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='scsi' index='1' model='lsilogic'\u003e    \u003c!-- BUG: Should be virtio-scsi --\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='virtio-serial' index='0'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='1' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='2' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='3' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='4' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='5' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='6' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='7' model='pcie-to-pci-bridge'\u003e\n    \u003c/controller\u003e\n    \u003ccontroller type='pci' index='8' model='pcie-root-port'\u003e\n    \u003c/controller\u003e\n      \u003caddress type='virtio-serial' controller='0' bus='0' port='1'/\u003e\nroot@NODE159:/var/log/cloudstack/agent# \n```\n\n### versions\n\n- CloudStack Version: 4.20.1.0\n- CPU Architecture: aarch64\n- Hypervisor: KVM\n\n### The steps to reproduce the bug\n\n1.Initial State 5 disks attached\n2.Hot-add 6th disk while VM running\n3.reboot VM\n...\n\n\u003cimg width=\"1483\" height=\"459\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/d662cb6b-5c97-4e76-878a-98a1d33c2245\" /\u003e\n\n\n### What to do about it?\n\n_No response_","author":{"url":"https://github.com/gw769","@type":"Person","name":"gw769"},"datePublished":"2025-11-18T09:03:36.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/12090/cloudstack/issues/12090"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:3904a280-1d94-68f1-a314-adbb6da59276
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9734:2725AA:1326FC6:1A1861B:696E9CC1
html-safe-nonceb66f9d28dcbd66ce4d3c0a4f088c0569958d006f4e2652659b83f43c9570a560
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NzM0OjI3MjVBQToxMzI2RkM2OjFBMTg2MUI6Njk2RTlDQzEiLCJ2aXNpdG9yX2lkIjoiODgyMjI4ODc3NjgzOTQ3MDI3MyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacee07edabc76ba62a3c13cca0dc781229815fcb1dca4dc00787019d4962928636
hovercard-subject-tagissue:3636954074
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/apache/cloudstack/12090/issue_layout
twitter:imagehttps://opengraph.githubassets.com/37bcdf75a0a23c27eef16ff5b06d1eb67d7c7238809bf45aa3131f7f26568327/apache/cloudstack/issues/12090
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/37bcdf75a0a23c27eef16ff5b06d1eb67d7c7238809bf45aa3131f7f26568327/apache/cloudstack/issues/12090
og:image:altproblem Environment CloudStack Version: 4.20.1.0 CPU Architecture: aarch64 Hypervisor: KVM UEFI Configuration (relevant for aarch64 VM boot, from /etc/cloudstack/agent/uefi.properties): # CloudStac...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamegw769
hostnamegithub.com
expected-hostnamegithub.com
Nonefdad15fd2ad43212aa8b8be5f2c2725550f8374ceeeb154a999ad9145b43f3f7
turbo-cache-controlno-preview
go-importgithub.com/apache/cloudstack git https://github.com/apache/cloudstack.git
octolytics-dimension-user_id47359
octolytics-dimension-user_loginapache
octolytics-dimension-repository_id9759448
octolytics-dimension-repository_nwoapache/cloudstack
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id9759448
octolytics-dimension-repository_network_root_nwoapache/cloudstack
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release27b23bc056eb973d350fc95afc848757edb9e7a9
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/apache/cloudstack/issues/12090#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fapache%2Fcloudstack%2Fissues%2F12090
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fapache%2Fcloudstack%2Fissues%2F12090
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=apache%2Fcloudstack
Reloadhttps://patch-diff.githubusercontent.com/apache/cloudstack/issues/12090
Reloadhttps://patch-diff.githubusercontent.com/apache/cloudstack/issues/12090
Reloadhttps://patch-diff.githubusercontent.com/apache/cloudstack/issues/12090
apache https://patch-diff.githubusercontent.com/apache
cloudstackhttps://patch-diff.githubusercontent.com/apache/cloudstack
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fapache%2Fcloudstack
Fork 1.3k https://patch-diff.githubusercontent.com/login?return_to=%2Fapache%2Fcloudstack
Star 2.8k https://patch-diff.githubusercontent.com/login?return_to=%2Fapache%2Fcloudstack
Code https://patch-diff.githubusercontent.com/apache/cloudstack
Issues 473 https://patch-diff.githubusercontent.com/apache/cloudstack/issues
Pull requests 239 https://patch-diff.githubusercontent.com/apache/cloudstack/pulls
Discussions https://patch-diff.githubusercontent.com/apache/cloudstack/discussions
Actions https://patch-diff.githubusercontent.com/apache/cloudstack/actions
Projects 3 https://patch-diff.githubusercontent.com/apache/cloudstack/projects
Wiki https://patch-diff.githubusercontent.com/apache/cloudstack/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/apache/cloudstack/security
Please reload this pagehttps://patch-diff.githubusercontent.com/apache/cloudstack/issues/12090
Insights https://patch-diff.githubusercontent.com/apache/cloudstack/pulse
Code https://patch-diff.githubusercontent.com/apache/cloudstack
Issues https://patch-diff.githubusercontent.com/apache/cloudstack/issues
Pull requests https://patch-diff.githubusercontent.com/apache/cloudstack/pulls
Discussions https://patch-diff.githubusercontent.com/apache/cloudstack/discussions
Actions https://patch-diff.githubusercontent.com/apache/cloudstack/actions
Projects https://patch-diff.githubusercontent.com/apache/cloudstack/projects
Wiki https://patch-diff.githubusercontent.com/apache/cloudstack/wiki
Security https://patch-diff.githubusercontent.com/apache/cloudstack/security
Insights https://patch-diff.githubusercontent.com/apache/cloudstack/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/apache/cloudstack/issues/12090
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/apache/cloudstack/issues/12090
Bughttps://patch-diff.githubusercontent.com/apache/cloudstack/issues?q=type:"Bug"
#12452https://github.com/apache/cloudstack/pull/12452
Extra lsilogic SCSI controller on aarch64 causes last disk unrecognizedhttps://patch-diff.githubusercontent.com/apache/cloudstack/issues/12090#top
#12452https://github.com/apache/cloudstack/pull/12452
https://patch-diff.githubusercontent.com/vishesh92
status:needs-investigationhttps://github.com/apache/cloudstack/issues?q=state%3Aopen%20label%3A%22status%3Aneeds-investigation%22
type:bughttps://github.com/apache/cloudstack/issues?q=state%3Aopen%20label%3A%22type%3Abug%22
4.20.3https://github.com/apache/cloudstack/milestone/43
https://github.com/gw769
https://github.com/gw769
gw769https://github.com/gw769
on Nov 18, 2025https://github.com/apache/cloudstack/issues/12090#issue-3636954074
#9823https://github.com/apache/cloudstack/pull/9823
https://private-user-images.githubusercontent.com/61015990/515631345-d662cb6b-5c97-4e76-878a-98a1d33c2245.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Njg4NTcwNzAsIm5iZiI6MTc2ODg1Njc3MCwicGF0aCI6Ii82MTAxNTk5MC81MTU2MzEzNDUtZDY2MmNiNmItNWM5Ny00ZTc2LTg3OGEtOThhMWQzM2MyMjQ1LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjAxMTklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwMTE5VDIxMDYxMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWMxZTE2YTM1MDk0ZmRkYWVlMmM4NDkxNTM1MGYxZWNlNTk2MGQ2OWMwZWE4NjBmMDMyODRhYTFiNjAxY2FmYmMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.3wF9yakOpFKXjl9Oa09R6M29QHUlHZw0IQWVm_nE6-M
vishesh92https://patch-diff.githubusercontent.com/vishesh92
status:needs-investigationhttps://github.com/apache/cloudstack/issues?q=state%3Aopen%20label%3A%22status%3Aneeds-investigation%22
type:bughttps://github.com/apache/cloudstack/issues?q=state%3Aopen%20label%3A%22type%3Abug%22
Bughttps://patch-diff.githubusercontent.com/apache/cloudstack/issues?q=type:"Bug"
Apache CloudStack BugFest - Issueshttps://github.com/orgs/apache/projects/362
4.20.3https://github.com/apache/cloudstack/milestone/43
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.