LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 08-03-2020, 06:51 AM   #2491
GazL
LQ Veteran
 
Registered: May 2008
Posts: 6,897

Rep: Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019Reputation: 5019

Thanks for the warning. A udev rule might be a better workaround than rc.local.

This is for intel, but it should be trivial to cater also for amd:
Code:
# 81-backlight.rules:
#
#    Set the initial backlight level.
#    When present, use the 'acpi_video0' control in preference to
#    the vendor 'intel_backlight' control.
#

SUBSYSTEM!="backlight", GOTO="backlight_end"
ACTION!="add", GOTO="backlight_end"

KERNEL=="intel_backlight", TEST!="/sys/class/backlight/acpi_video0/brightness", ATTR{brightness}="364"

KERNEL=="acpi_video0", ATTR{brightness}="39"

LABEL="backlight_end"
 
5 members found this post helpful.
Old 08-03-2020, 09:56 AM   #2492
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Year 2020, Round 47.

Another batch of kernel updates has been scheduled for release on Wednesday, 05 August 2020, at approximately Noon,, GMT. If no problems are found while testing the release candidates, they might be available sometime on Tuesday (depending on your time zone).

The details:

5.7.13-rc1, with 120 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/01404.html

5.4.56-rc1, with 90 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/01334.html

4.19.137-rc1, with 56 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/01208.html

4.14.192-rc1, with 51 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/01240.html
 
Old 08-04-2020, 07:23 AM   #2493
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Additional release candidates have been issued for the current batch of kernel updates.

4.14.192-rc2, with 52 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/02403.html

4.19.137-rc2, with 57 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/02404.html

5.4.56-rc2, with 91 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/02405.html

5.7.13-rc2, with 121 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/02406.html

And one more time for good measure.

4.14.192-rc3, with 47 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/02488.html

4.19.137-rc3, with 52 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/02489.html

5.4.56-rc3, with 86 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/02491.html

5.7.13-rc3, with 116 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/02492.html

The third round of release candidates is scheduled for release on Thursday, 06 August 2020, at approximately 09:00 GMT.

Last edited by cwizardone; 08-04-2020 at 07:35 AM.
 
Old 08-04-2020, 05:18 PM   #2494
PROBLEMCHYLD
Senior Member
 
Registered: Apr 2015
Posts: 1,201

Rep: Reputation: Disabled
Quote:
Originally Posted by GazL View Post
Thanks for the warning. A udev rule might be a better workaround than rc.local.

This is for intel, but it should be trivial to cater also for amd:
Code:
# 81-backlight.rules:
#
#    Set the initial backlight level.
#    When present, use the 'acpi_video0' control in preference to
#    the vendor 'intel_backlight' control.
#

SUBSYSTEM!="backlight", GOTO="backlight_end"
ACTION!="add", GOTO="backlight_end"

KERNEL=="intel_backlight", TEST!="/sys/class/backlight/acpi_video0/brightness", ATTR{brightness}="364"

KERNEL=="acpi_video0", ATTR{brightness}="39"

LABEL="backlight_end"
Code:
SUBSYSTEM=="backlight", ACTION=="add", KERNEL=="radeon_bl0", ATTR{brightness}="255"
This works for my AMD laptop. Thanks
 
3 members found this post helpful.
Old 08-05-2020, 04:34 AM   #2495
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Kernels 5.7.13, 5.4.56, 4.19.137 and 4.14.192 have been released on https://www.kernel.org
https://cdn.kernel.org/pub/linux/ker...angeLog-5.7.13
https://cdn.kernel.org/pub/linux/ker...angeLog-5.4.56
https://cdn.kernel.org/pub/linux/ker...geLog-4.19.137
https://cdn.kernel.org/pub/linux/ker...geLog-4.14.192

I've sucessfully compiled 5.4.56 using the steps from
https://docs.slackware.com/howtos:sl...kernelbuilding
Code:
bash-5.0$ uname -a
Linux hp-laptop.example.org 5.4.56 #1 SMP Wed Aug 5 12:15:30 CEST 2020 x86_64 Intel(R) Core(TM)2 Duo CPU T6400 @2.00GHz GenuineIntel GNU/Linux

Last edited by mats_b_tegner; 08-05-2020 at 04:31 PM.
 
1 members found this post helpful.
Old 08-05-2020, 12:28 PM   #2496
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Year 2020, Round 48.

Another batch of kernel updates has been scheduled for release on Friday, 07 August 2020, at approximately 15:00, GMT. If no problems are found while testing the release candidates, they might be available sometime on Thursday (depending on your time zone).

The details:

5.7.14-rc1, with 6 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/04063.html

5.4.57-rc1, with 9 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/03892.html

4.19.138-rc1, with 6 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/03803.html

4.14.193-rc1, with 8 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/03810.html

An explanation of fixing an ext4 I/O error that exists in all kernel versions between 3.14 and 5.4.
http://lkml.iu.edu/hypermail/linux/k...8.0/03813.html

And a second round of release candidates. So far we have,

5.7.14-rc2, with 7 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/04197.html

Last edited by cwizardone; 08-05-2020 at 03:15 PM.
 
3 members found this post helpful.
Old 08-07-2020, 02:57 AM   #2497
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Kernel updates 5.7.14, 5.4.57, 4.19.138 and 4.14.193, are now available at,

https://www.kernel.org/

The change logs,

https://cdn.kernel.org/pub/linux/ker...angeLog-5.7.14

https://cdn.kernel.org/pub/linux/ker...angeLog-5.4.57

https://cdn.kernel.org/pub/linux/ker...geLog-4.19.138

https://cdn.kernel.org/pub/linux/ker...geLog-4.14.193

Last edited by cwizardone; 08-07-2020 at 03:00 AM.
 
1 members found this post helpful.
Old 08-07-2020, 04:24 AM   #2498
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
5.4.57 seems to build fine under -current
Code:
bash-5.0$ uname -a
Linux hp-laptop.example.org 5.4.57 #1 SMP Fri Aug 7 10:04:35 CEST 2020 x86_64 Intel(R) Core(TM)2 Duo CPU T6400 @2.00GHz GenuineIntel GNU/Linux
 
1 members found this post helpful.
Old 08-07-2020, 11:11 AM   #2499
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Kernel 5.7.14 has been built and installed on the most recent Slackware64-current along with,

elogind-243.7-x86_64-1_rlw.txz,
dbus-1.12.20-x86_64-1_rlw.txz,
udisks2-2.9.0-x86_64-1_rlw.txz,
upower-0.99.11-x86_64-4_rlw.txz,
VirtualBox-6.1.12-139181-Linux_amd64.run
and
NVIDIA-Linux-x86_64-450.57.run.

So far, so good.

Last edited by cwizardone; 08-07-2020 at 11:13 AM.
 
1 members found this post helpful.
Old 08-08-2020, 01:57 PM   #2500
mats_b_tegner
Member
 
Registered: Nov 2009
Location: Gothenburg, Sweden
Distribution: Slackware
Posts: 946

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
Quote:
Originally Posted by cwizardone View Post
Year 2020, Round 48.

Another batch of kernel updates has been scheduled for release on Friday, 07 August 2020, at approximately 15:00, GMT. If no problems are found while testing the release candidates, they might be available sometime on Thursday (depending on your time zone).

The details:

5.7.14-rc1, with 6 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/04063.html
5.4.57-rc1, with 9 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/03892.html
4.19.138-rc1, with 6 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/03803.html
4.14.193-rc1, with 8 patches, http://lkml.iu.edu/hypermail/linux/k...8.0/03810.html

An explanation of fixing an ext4 I/O error that exists in all kernel versions between 3.14 and 5.4.
http://lkml.iu.edu/hypermail/linux/k...8.0/03813.html
The fix for the ext4 direct read i/o error is also on its way for kernels 4.9.y and 4.4.y
http://lkml.iu.edu/hypermail/linux/k...8.0/05119.html
http://lkml.iu.edu/hypermail/linux/k...8.0/04749.html
 
1 members found this post helpful.
Old 08-10-2020, 11:08 AM   #2501
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Year 2020, Round 49.

Another batch of kernel updates has been scheduled for release on Wedmesday, 12 August 2020, at approximately 15:00, GMT. If no problems are found while testing the release candidates, they might be available sometime on Tuesday (depending on your time zone).

The details:

5.8.1-rc1, with 38 patches, http://lkml.iu.edu/hypermail/linux/k...8.1/01225.html

5.7.15-rc1, with 79 patches, http://lkml.iu.edu/hypermail/linux/k...8.1/01472.html

5.4.58-rc1, with 67 patches, http://lkml.iu.edu/hypermail/linux/k...8.1/01414.html

4.19.139-rc1, with 48 patches, http://lkml.iu.edu/hypermail/linux/k...8.1/01372.html
 
Old 08-11-2020, 09:33 AM   #2502
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Kernel updates 5.8.1, 5.7.15, 5.4.58 and 4.19.139 are now available at,

https://www.kernel.org/

The change logs,

https://cdn.kernel.org/pub/linux/ker...hangeLog-5.8.1

https://cdn.kernel.org/pub/linux/ker...angeLog-5.7.15

https://cdn.kernel.org/pub/linux/ker...angeLog-5.4.58

https://cdn.kernel.org/pub/linux/ker...geLog-4.19.139

Last edited by cwizardone; 08-11-2020 at 09:37 AM.
 
3 members found this post helpful.
Old 08-11-2020, 10:13 AM   #2503
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
Unless there is a compelling need, such as a fix for a serious security flaw, I think I'll stay with the 5.7.xx kernel until 5.9.1 is releassed.

The 5.9.0 kernel should be the next LTS kernel and it looks like it will be a major release. Almost daily there is another news story about a forth coming new feature or change or improvement for 5.9.0.

For an idea of what is to come, scan down the page from day to day at,
https://www.phoronix.com/scan.php?page=home

Note: I have Nothing to do with Phoronix. Zip, zero, nada.
I was going to start posting the 5.9.0 changes, bug fixes and improvements, but the list is long and Phoronix has already done all the work. Credit where credit is due, and all that.

Last edited by cwizardone; 08-22-2020 at 12:33 PM.
 
3 members found this post helpful.
Old 08-13-2020, 07:10 PM   #2504
jheengut
Member
 
Registered: Sep 2006
Location: Providence, Moka Mauritius
Distribution: Slackware, Lubuntu
Posts: 352
Blog Entries: 16

Rep: Reputation: 51
kernel 5.4.5x and nvme ssd undectected on lg gram

Hi,


I have a LG Gram 14Z970 and during recent upgrades above version 5.4.50 in Slackware-current, my m.2 nvme ssd stopped being detected.

At first, I thought it was damaged but Slackware 14.2 found /dev/nvme0n1. I have a spare m.2 ssd and tested the port, it was fine therefore not a hardware issue.

I then found the 5.4.50 kernel packages on an old backup and downgraded to that version.
Code:
nvme list
Node             SN                   Model                                    Namespace Usage                      Format           FW Rev  
---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- --------
/dev/nvme0n1     F745110048           TS1TMTE110S                              1           1.02  TB /   1.02  TB    512   B +  0 B   S0905C3
Code:
dmesg
[    1.087641] nvme nvme0: pci function 0000:01:00.0
[    1.087696] ahci 0000:00:17.0: version 3.0
[    1.087888] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x0 impl SATA mode
[    1.087915] ahci 0000:00:17.0: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
[    1.088076] scsi host0: ahci
[    1.088176] ata1: DUMMY
[    1.088807] scsi host1: pata_legacy
[    1.088847] ata2: PATA max PIO4 cmd 0x1f0 ctl 0x3f6 irq 14
[    1.303000] nvme nvme0: missing or invalid SUBNQN field.
[    1.306134] nvme nvme0: allocated 64 MiB host memory buffer.
[    1.317014] nvme nvme0: 4/0/0 default/read/poll queues
[    1.323550] nvme nvme0: Identify Descriptors failed (2)
[    1.325572] nvme nvme0: Identify Descriptors failed (2)
[    1.375146]  nvme0n1: p1 p2 p3
[    4.383061] udevd[204]: failed to execute '/usr/sbin/multipath' '/usr/sbin/multipath -u nvme0n1': No such file or directory
[   41.518932] nvme nvme0: 4/0/0 default/read/poll queues
[   41.535665] nvme nvme0: Identify Descriptors failed (2)
Code:
lsscsi 
[N:0:1:1]    disk    TS1TMTE110S__1                             /dev/nvme0n1
Code:
lspci -vv
00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21) (prog-if 01 [AHCI 1.0])
        Subsystem: LG Electronics, Inc. Sunrise Point-LP SATA Controller [AHCI mode]
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 125
        Region 0: Memory at d1330000 (32-bit, non-prefetchable) [size=8K]
        Region 1: Memory at d1336000 (32-bit, non-prefetchable) [size=256]
        Region 2: I/O ports at e080 [size=8]
        Region 3: I/O ports at e088 [size=4]
        Region 4: I/O ports at e060 [size=32]
        Region 5: Memory at d1334000 (32-bit, non-prefetchable) [size=2K]
        Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
                Address: fee00298  Data: 0000
        Capabilities: [70] Power Management version 3
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-)
                Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004
        Kernel driver in use: ahci

01:00.0 Non-Volatile memory controller: Silicon Motion, Inc. Device 2263 (rev 03) (prog-if 02 [NVM Express])
        Subsystem: Silicon Motion, Inc. Device 2263
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0
        Interrupt: pin A routed to IRQ 16
        NUMA node: 0
        Region 0: Memory at d1200000 (64-bit, non-prefetchable) [size=16K]
        Capabilities: [40] Power Management version 3
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
                Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [50] MSI: Enable- Count=1/8 Maskable+ 64bit+
                Address: 0000000000000000  Data: 0000
                Masking: 00000000  Pending: 00000000
        Capabilities: [70] Express (v2) Endpoint, MSI 00
                DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
                        ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 25.000W
                DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
                        RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop- FLReset-
                        MaxPayload 128 bytes, MaxReadReq 512 bytes
                DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
                LnkCap: Port #0, Speed 8GT/s, Width x4, ASPM not supported
                        ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
                LnkCtl: ASPM Disabled; RCB 64 bytes, Disabled- CommClk+
                        ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
                LnkSta: Speed 8GT/s (ok), Width x4 (ok)
                        TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
                DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
                         10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
                         EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
                         FRS- TPHComp- ExtTPHComp-
                         AtomicOpsCap: 32bit- 64bit- 128bitCAS-
                DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- LTR+ OBFF Disabled,
                         AtomicOpsCtl: ReqEn-
                LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
                LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
                         Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
                         Compliance De-emphasis: Unknown
                LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete+ EqualizationPhase1+
                         EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
                         Retimer- 2Retimers- CrosslinkRes: unsupported
        Capabilities: [b0] MSI-X: Enable+ Count=16 Masked-
                Vector table: BAR=0 offset=00002000
                PBA: BAR=0 offset=00002100
        Capabilities: [100 v2] Advanced Error Reporting
                UESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
                UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
                UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
                CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr-
                CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+
                AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
                        MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
                HeaderLog: 00000000 00000000 00000000 00000000
        Capabilities: [158 v1] Secondary PCI Express
                LnkCtl3: LnkEquIntrruptEn- PerformEqu-
                LaneErrStat: 0
        Capabilities: [178 v1] Latency Tolerance Reporting
                Max snoop latency: 3145728ns
                Max no snoop latency: 3145728ns
        Capabilities: [180 v1] L1 PM Substates
                L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2- ASPM_L1.1- L1_PM_Substates+
                          PortCommonModeRestoreTime=10us PortTPowerOnTime=10us
                L1SubCtl1: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2- ASPM_L1.1-
                           T_CommonMode=0us
                L1SubCtl2: T_PwrOn=44us
        Kernel driver in use: nvme
I looked into this kernel changelog and found a lot of patches regarding nvme . [URL="https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.4.51" linux/kernel/v5.x/ChangeLog-5.4.51[/URL]

I will stick to this version until I can find a proper solution.
 
2 members found this post helpful.
Old 08-15-2020, 08:38 AM   #2505
cwizardone
LQ Veteran
 
Registered: Feb 2007
Distribution: Slackware64-current with "True Multilib" and KDE4Town.
Posts: 9,095

Original Poster
Rep: Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273Reputation: 7273
The "Linux-Kernel Archive by Thread" message board hasn't been updated since, Fri Aug 14 2020 - 20:24:34 EST, so we are flying in dense fog at the moment.

Last edited by cwizardone; 08-15-2020 at 09:58 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Linux.conf.au: Latest Linux kernel release due early March DragonSlayer48DX Linux - News 0 01-18-2010 10:43 PM
No video on latest kernel release Tralce Linux - Kernel 3 11-30-2006 07:48 AM
What is the latest Redhat release TILEMANN Linux - Software 5 11-20-2006 10:48 PM
LXer: News: OpenVZ To Release Support, Patches for Latest Kernel LXer Syndicated Linux News 0 11-01-2006 10:54 PM
latest debian release? doralsoral Linux - Software 5 12-25-2004 12:40 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 11:45 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration