-
Notifications
You must be signed in to change notification settings - Fork 689
feat(kernel): enable DAMON on x86_64 #18050
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 4.0
Are you sure you want to change the base?
Changes from all commits
4349f45
13102e9
ab9efa6
3d5d602
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -671,7 +671,7 @@ CONFIG_ACPI_HMAT=y | |
| CONFIG_HAVE_ACPI_APEI=y | ||
| CONFIG_HAVE_ACPI_APEI_NMI=y | ||
| CONFIG_ACPI_APEI=y | ||
| # CONFIG_ACPI_APEI_GHES is not set | ||
| CONFIG_ACPI_APEI_GHES=y | ||
| CONFIG_ACPI_APEI_PCIEAER=y | ||
| CONFIG_ACPI_APEI_MEMORY_FAILURE=y | ||
| # CONFIG_ACPI_APEI_EINJ is not set | ||
|
|
@@ -1328,7 +1328,13 @@ CONFIG_PT_RECLAIM=y | |
| # | ||
| # Data Access Monitoring | ||
| # | ||
| # CONFIG_DAMON is not set | ||
| CONFIG_DAMON=y | ||
| CONFIG_DAMON_VADDR=y | ||
| CONFIG_DAMON_PADDR=y | ||
| CONFIG_DAMON_SYSFS=y | ||
| # CONFIG_DAMON_RECLAIM is not set | ||
| # CONFIG_DAMON_LRU_SORT is not set | ||
| # CONFIG_DAMON_STAT is not set | ||
| # end of Data Access Monitoring | ||
| # end of Memory Management options | ||
|
|
||
|
|
@@ -3582,7 +3588,45 @@ CONFIG_SLHC=y | |
| CONFIG_SLIP_COMPRESSED=y | ||
| CONFIG_SLIP_SMART=y | ||
| CONFIG_SLIP_MODE_SLIP6=y | ||
| # CONFIG_USB_NET_DRIVERS is not set | ||
| CONFIG_USB_NET_DRIVERS=m | ||
| # CONFIG_USB_CATC is not set | ||
| # CONFIG_USB_KAWETH is not set | ||
| # CONFIG_USB_PEGASUS is not set | ||
| # CONFIG_USB_RTL8150 is not set | ||
| # CONFIG_USB_RTL8152 is not set | ||
| # CONFIG_USB_LAN78XX is not set | ||
| CONFIG_USB_USBNET=m | ||
| # CONFIG_USB_NET_AX8817X is not set | ||
| # CONFIG_USB_NET_AX88179_178A is not set | ||
| CONFIG_USB_NET_CDCETHER=m | ||
| # CONFIG_USB_NET_CDC_EEM is not set | ||
| # CONFIG_USB_NET_CDC_NCM is not set | ||
| # CONFIG_USB_NET_HUAWEI_CDC_NCM is not set | ||
| # CONFIG_USB_NET_CDC_MBIM is not set | ||
| # CONFIG_USB_NET_DM9601 is not set | ||
| # CONFIG_USB_NET_SR9700 is not set | ||
| # CONFIG_USB_NET_SR9800 is not set | ||
| # CONFIG_USB_NET_SMSC75XX is not set | ||
| # CONFIG_USB_NET_SMSC95XX is not set | ||
| # CONFIG_USB_NET_GL620A is not set | ||
| # CONFIG_USB_NET_NET1080 is not set | ||
| # CONFIG_USB_NET_PLUSB is not set | ||
| # CONFIG_USB_NET_MCS7830 is not set | ||
| CONFIG_USB_NET_RNDIS_HOST=m | ||
| # CONFIG_USB_NET_CDC_SUBSET is not set | ||
| # CONFIG_USB_NET_ZAURUS is not set | ||
| # CONFIG_USB_NET_CX82310_ETH is not set | ||
| # CONFIG_USB_NET_KALMIA is not set | ||
| # CONFIG_USB_NET_QMI_WWAN is not set | ||
| # CONFIG_USB_HSO is not set | ||
| # CONFIG_USB_NET_INT51X1 is not set | ||
| # CONFIG_USB_CDC_PHONET is not set | ||
| # CONFIG_USB_IPHETH is not set | ||
| # CONFIG_USB_SIERRA_NET is not set | ||
| # CONFIG_USB_VL600 is not set | ||
| # CONFIG_USB_NET_CH9200 is not set | ||
| # CONFIG_USB_NET_AQC111 is not set | ||
| CONFIG_USB_RTL8153_ECM=m | ||
| # CONFIG_WLAN is not set | ||
| CONFIG_WAN=y | ||
| CONFIG_HDLC=m | ||
|
|
@@ -6179,7 +6223,7 @@ CONFIG_INFINIBAND_ON_DEMAND_PAGING=y | |
| CONFIG_INFINIBAND_ADDR_TRANS=y | ||
| CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y | ||
| CONFIG_INFINIBAND_VIRT_DMA=y | ||
| # CONFIG_INFINIBAND_BNXT_RE is not set | ||
| CONFIG_INFINIBAND_BNXT_RE=m | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this intended as a stacked PR on top of your other one that enables this option?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, given the config was hashed, i wanted to avoid having to regenerate the hash after the bntx module was merged. |
||
| # CONFIG_INFINIBAND_CXGB4 is not set | ||
| CONFIG_INFINIBAND_EFA=m | ||
| CONFIG_INFINIBAND_ERDMA=m | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| # Managed by azldev component update. Do not edit manually. | ||
| version = 1 | ||
| input-fingerprint = 'sha256:4e4d424d225920f299c3475a3a4d866822f501de3e8d1db2dfe53b8b9d92e6ac' | ||
| input-fingerprint = 'sha256:fc8aa3faa31c3b8daa1f466315a6e3e6693b0826a6b6532097291a649efd2397' | ||
| resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason this PR proposes enabling only on x86_64 and not also aarch64?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can enable it for arm as well. Was not sure if kernel configs were suppose to be mirrored, figured it was a task, only for x86 from my isde
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's mirror to both here and align with Fedora on these configs