1. 19 3月, 2018 2 次提交
  2. 14 3月, 2018 1 次提交
  3. 05 3月, 2018 1 次提交
  4. 02 3月, 2018 1 次提交
    • J
      ata: do not schedule hot plug if it is a sas host · 6f54120e
      Jason Yan 提交于
      We've got a kernel panic when using sata disk with sas controller:
      
      [115946.152283] Unable to handle kernel NULL pointer dereference at virtual address 000007d8
      [115946.223963] CPU: 0 PID: 22175 Comm: kworker/0:1 Tainted: G   W OEL  4.14.0 #1
      [115946.232925] Workqueue: events ata_scsi_hotplug
      [115946.237938] task: ffff8021ee50b180 task.stack: ffff00000d5d0000
      [115946.244717] PC is at sas_find_dev_by_rphy+0x44/0x114
      [115946.250224] LR is at sas_find_dev_by_rphy+0x3c/0x114
      ......
      [115946.355701] Process kworker/0:1 (pid: 22175, stack limit = 0xffff00000d5d0000)
      [115946.363369] Call trace:
      [115946.456356] [<ffff000008878a9c>] sas_find_dev_by_rphy+0x44/0x114
      [115946.462908] [<ffff000008878b8c>] sas_target_alloc+0x20/0x5c
      [115946.469408] [<ffff00000885a31c>] scsi_alloc_target+0x250/0x308
      [115946.475781] [<ffff00000885ba30>] __scsi_add_device+0xb0/0x154
      [115946.481991] [<ffff0000088b520c>] ata_scsi_scan_host+0x180/0x218
      [115946.488367] [<ffff0000088b53d8>] ata_scsi_hotplug+0xb0/0xcc
      [115946.494801] [<ffff0000080ebd70>] process_one_work+0x144/0x390
      [115946.501115] [<ffff0000080ec100>] worker_thread+0x144/0x418
      [115946.507093] [<ffff0000080f2c98>] kthread+0x10c/0x138
      [115946.512792] [<ffff0000080855dc>] ret_from_fork+0x10/0x18
      
      We found that Ding Xiang has reported a similar bug before:
      https://patchwork.kernel.org/patch/9179817/
      
      And this bug still exists in mainline. Since libsas handles hotplug and
      device adding/removing itself, do not need to schedule ata hot plug task
      here if it is a sas host.
      Signed-off-by: NJason Yan <yanaijie@huawei.com>
      Cc: Ding Xiang <dingxiang@huawei.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: NTejun Heo <tj@kernel.org>
      6f54120e
  5. 21 2月, 2018 1 次提交
  6. 18 2月, 2018 1 次提交
  7. 13 2月, 2018 8 次提交
    • G
      ata: sata_rcar: Remove unused variable in sata_rcar_init_controller() · 8f8ca51d
      Geert Uytterhoeven 提交于
      drivers/ata/sata_rcar.c: In function 'sata_rcar_init_controller':
      drivers/ata/sata_rcar.c:821:8: warning: unused variable 'base' [-Wunused-variable]
      
      Fixes: da77d76b ("sata_rcar: Reset SATA PHY when Salvator-X board resumes")
      Signed-off-by: NGeert Uytterhoeven <geert+renesas@glider.be>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      8f8ca51d
    • K
      sata_rcar: Reset SATA PHY when Salvator-X board resumes · da77d76b
      Khiem Nguyen 提交于
      Because power of Salvator-X board is cut off in suspend,
      it needs to reset SATA PHY state in resume.
      Otherwise, SATA partition could not be accessed anymore.
      Signed-off-by: NKhiem Nguyen <khiem.nguyen.xt@rvc.renesas.com>
      Signed-off-by: NHien Dang <hien.dang.eb@rvc.renesas.com>
      [reinit phy in sata_rcar_resume() function on R-Car Gen3 only]
      [factor out SATA module init sequence]
      [fixed the prefix for the subject]
      Signed-off-by: NYoshihiro Kaneko <ykaneko0929@gmail.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      da77d76b
    • E
      libata: don't try to pass through NCQ commands to non-NCQ devices · 2c1ec6fd
      Eric Biggers 提交于
      syzkaller hit a WARN() in ata_bmdma_qc_issue() when writing to /dev/sg0.
      This happened because it issued an ATA pass-through command (ATA_16)
      where the protocol field indicated that NCQ should be used -- but the
      device did not support NCQ.
      
      We could just remove the WARN() from libata-sff.c, but the real problem
      seems to be that the SCSI -> ATA translation code passes through NCQ
      commands without verifying that the device actually supports NCQ.
      
      Fix this by adding the appropriate check to ata_scsi_pass_thru().
      
      Here's reproducer that works in QEMU when /dev/sg0 refers to a disk of
      the default type ("82371SB PIIX3 IDE"):
      
          #include <fcntl.h>
          #include <unistd.h>
      
          int main()
          {
                  char buf[53] = { 0 };
      
      	    buf[36] = 0x85;		/* ATA_16 */
      	    buf[37] = (12 << 1);	/* FPDMA */
      	    buf[38] = 0x1;		/* Has data */
      	    buf[51] = 0xC8;		/* ATA_CMD_READ */
                  write(open("/dev/sg0", O_RDWR), buf, sizeof(buf));
          }
      
      Fixes: ee7fb331 ("libata: add support for NCQ commands for SG interface")
      Reported-by: syzbot+2f69ca28df61bdfc77cd36af2e789850355a221e@syzkaller.appspotmail.com
      Cc: <stable@vger.kernel.org> # v4.4+
      Signed-off-by: NEric Biggers <ebiggers@google.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      2c1ec6fd
    • E
      libata: remove WARN() for DMA or PIO command without data · 9173e5e8
      Eric Biggers 提交于
      syzkaller hit a WARN() in ata_qc_issue() when writing to /dev/sg0.  This
      happened because it issued a READ_6 command with no data buffer.
      
      Just remove the WARN(), as it doesn't appear indicate a kernel bug.  The
      expected behavior is to fail the command, which the code does.
      
      Here's a reproducer that works in QEMU when /dev/sg0 refers to a disk of
      the default type ("82371SB PIIX3 IDE"):
      
          #include <fcntl.h>
          #include <unistd.h>
      
          int main()
          {
                  char buf[42] = { [36] = 0x8 /* READ_6 */ };
      
                  write(open("/dev/sg0", O_RDWR), buf, sizeof(buf));
          }
      
      Fixes: f92a2636 ("libata: change ATA_QCFLAG_DMAMAP semantics")
      Reported-by: syzbot+f7b556d1766502a69d85071d2ff08bd87be53d0f@syzkaller.appspotmail.com
      Cc: <stable@vger.kernel.org> # v2.6.25+
      Signed-off-by: NEric Biggers <ebiggers@google.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      9173e5e8
    • E
      libata: fix length validation of ATAPI-relayed SCSI commands · 058f58e2
      Eric Biggers 提交于
      syzkaller reported a crash in ata_bmdma_fill_sg() when writing to
      /dev/sg1.  The immediate cause was that the ATA command's scatterlist
      was not DMA-mapped, which causes 'pi - 1' to underflow, resulting in a
      write to 'qc->ap->bmdma_prd[0xffffffff]'.
      
      Strangely though, the flag ATA_QCFLAG_DMAMAP was set in qc->flags.  The
      root cause is that when __ata_scsi_queuecmd() is preparing to relay a
      SCSI command to an ATAPI device, it doesn't correctly validate the CDB
      length before copying it into the 16-byte buffer 'cdb' in 'struct
      ata_queued_cmd'.  Namely, it validates the fixed CDB length expected
      based on the SCSI opcode but not the actual CDB length, which can be
      larger due to the use of the SG_NEXT_CMD_LEN ioctl.  Since 'flags' is
      the next member in ata_queued_cmd, a buffer overflow corrupts it.
      
      Fix it by requiring that the actual CDB length be <= 16 (ATAPI_CDB_LEN).
      
      [Really it seems the length should be required to be <= dev->cdb_len,
      but the current behavior seems to have been intentionally introduced by
      commit 607126c2 ("libata-scsi: be tolerant of 12-byte ATAPI commands
      in 16-byte CDBs") to work around a userspace bug in mplayer.  Probably
      the workaround is no longer needed (mplayer was fixed in 2007), but
      continuing to allow lengths to up 16 appears harmless for now.]
      
      Here's a reproducer that works in QEMU when /dev/sg1 refers to the
      CD-ROM drive that qemu-system-x86_64 creates by default:
      
          #include <fcntl.h>
          #include <sys/ioctl.h>
          #include <unistd.h>
      
          #define SG_NEXT_CMD_LEN 0x2283
      
          int main()
          {
      	    char buf[53] = { [36] = 0x7e, [52] = 0x02 };
      	    int fd = open("/dev/sg1", O_RDWR);
      	    ioctl(fd, SG_NEXT_CMD_LEN, &(int){ 17 });
      	    write(fd, buf, sizeof(buf));
          }
      
      The crash was:
      
          BUG: unable to handle kernel paging request at ffff8cb97db37ffc
          IP: ata_bmdma_fill_sg drivers/ata/libata-sff.c:2623 [inline]
          IP: ata_bmdma_qc_prep+0xa4/0xc0 drivers/ata/libata-sff.c:2727
          PGD fb6c067 P4D fb6c067 PUD 0
          Oops: 0002 [#1] SMP
          CPU: 1 PID: 150 Comm: syz_ata_bmdma_q Not tainted 4.15.0-next-20180202 #99
          Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.11.0-20171110_100015-anatol 04/01/2014
          [...]
          Call Trace:
           ata_qc_issue+0x100/0x1d0 drivers/ata/libata-core.c:5421
           ata_scsi_translate+0xc9/0x1a0 drivers/ata/libata-scsi.c:2024
           __ata_scsi_queuecmd drivers/ata/libata-scsi.c:4326 [inline]
           ata_scsi_queuecmd+0x8c/0x210 drivers/ata/libata-scsi.c:4375
           scsi_dispatch_cmd+0xa2/0xe0 drivers/scsi/scsi_lib.c:1727
           scsi_request_fn+0x24c/0x530 drivers/scsi/scsi_lib.c:1865
           __blk_run_queue_uncond block/blk-core.c:412 [inline]
           __blk_run_queue+0x3a/0x60 block/blk-core.c:432
           blk_execute_rq_nowait+0x93/0xc0 block/blk-exec.c:78
           sg_common_write.isra.7+0x272/0x5a0 drivers/scsi/sg.c:806
           sg_write+0x1ef/0x340 drivers/scsi/sg.c:677
           __vfs_write+0x31/0x160 fs/read_write.c:480
           vfs_write+0xa7/0x160 fs/read_write.c:544
           SYSC_write fs/read_write.c:589 [inline]
           SyS_write+0x4d/0xc0 fs/read_write.c:581
           do_syscall_64+0x5e/0x110 arch/x86/entry/common.c:287
           entry_SYSCALL_64_after_hwframe+0x21/0x86
      
      Fixes: 607126c2 ("libata-scsi: be tolerant of 12-byte ATAPI commands in 16-byte CDBs")
      Reported-by: syzbot+1ff6f9fcc3c35f1c72a95e26528c8e7e3276e4da@syzkaller.appspotmail.com
      Cc: <stable@vger.kernel.org> # v2.6.24+
      Signed-off-by: NEric Biggers <ebiggers@google.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      058f58e2
    • B
      ata: libahci: fix comment indentation · 9f2b51db
      Baruch Siach 提交于
      Indent the numbered item with one space like all other items in the same
      list.
      Signed-off-by: NBaruch Siach <baruch@tkos.co.il>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      9f2b51db
    • S
      ahci: Add check for device presence (PCIe hot unplug) in ahci_stop_engine() · 3b61e512
      Stefan Roese 提交于
      Exit directly with ENODEV, if the AHCI controller is not available
      anymore. Otherwise a delay of 500ms for each port is added to the remove
      function while trying to issue a command on the non-existent controller.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Tejun Heo <tj@kernel.org>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      3b61e512
    • D
      libata: Fix compile warning with ATA_DEBUG enabled · 0d3e45bc
      Dong Bo 提交于
      This fixs the following comile warnings with ATA_DEBUG enabled,
      which detected by Linaro GCC 5.2-2015.11:
      
        drivers/ata/libata-scsi.c: In function 'ata_scsi_dump_cdb':
        ./include/linux/kern_levels.h:5:18: warning: format '%d' expects
        argument of type 'int', but argument 6 has type 'u64 {aka long
         long unsigned int}' [-Wformat=]
      
      tj: Patch hand-applied and description trimmed.
      Signed-off-by: NDong Bo <dongbo4@huawei.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      0d3e45bc
  8. 25 1月, 2018 3 次提交
    • J
      ata: pata_pdc2027x: Replace mdelay with msleep · b3506c7e
      Jia-Ju Bai 提交于
      After checking all possible call chains to pdc_adjust_pll and
      pdc_detect_pll_input_clock,
      my tool finds that these functions are never called in atomic context,
      namely never in an interrupt handler or holding a spinlock.
      And their caller functions pdc2027x_init_one and pdc2027x_reinit_one
      calls pci_enable_device which can sleep, and no spinlock is held when
      calling pdc_adjust_pll and pdc_detect_pll_input_clock,
      so it proves that pdc_adjust_pll and pdc_detect_pll_input_clock
      can call functions which can sleep.
      Thus mdelay can be replaced with msleep to avoid busy wait.
      Signed-off-by: NJia-Ju Bai <baijiaju1990@gmail.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      b3506c7e
    • J
      ata: pata_it821x: Replace mdelay with usleep_range in it821x_firmware_command · eada8598
      Jia-Ju Bai 提交于
      After checking all possible call chains to it821x_firmware_command here,
      my tool finds that it821x_firmware_command
      is never called in atomic context,
      namely never in an interrupt handler or holding a spinlock.
      And it821x_firmware_command calls kmalloc(GFP_KERNEL),
      so it proves again that it821x_firmware_command
      can call functions which can sleep.
      Thus mdelay can be replaced with usleep_range to avoid busy wait.
      
      This is found by a static analysis tool named DCNS written by myself.
      Signed-off-by: NJia-Ju Bai <baijiaju1990@gmail.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      eada8598
    • J
      ata: sata_mv: Replace mdelay with usleep_range in mv_reset_channel · e72685db
      Jia-Ju Bai 提交于
      After checking all possible call chains to mv_reset_channel here,
      my tool finds that mv_reset_channel is never called in atomic context,
      namely never in an interrupt handler or holding a spinlock.
      Thus mdelay can be replaced with usleep_range to avoid busy wait.
      
      This is found by a static analysis tool named DCNS written by myself.
      Signed-off-by: NJia-Ju Bai <baijiaju1990@gmail.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      e72685db
  9. 19 1月, 2018 1 次提交
  10. 17 1月, 2018 1 次提交
    • F
      ata: ahci_brcm: Recover from failures to identify devices · eb73390a
      Florian Fainelli 提交于
      When powering up, the SATA controller may fail to mount the HDD. The SATA
      controller will lock up, preventing it from negotiating to a lower speed or
      transmitting data. Root cause is power supply noise creating resonance at 6 Ghz
      and 3 GHz frequencies, which causes instability in the Clock-Data Recovery
      (CDR) frontend module, resulting in false acquisition of the clock at SATA
      6G/3G speeds.
      
      The SATA controller may fail to mount the HDD and lock up, requiring a power
      cycle. Broadcom chips suspected of being susceptible to this issue include
      BCM7445, BCM7439, and BCM7366.
      
      The Kernel implements an error recovery mechanism that resets the SATA PHY and
      digital controller when the controller locks up. During this error recovery
      process, typically there is less activity on the board and Broadcom STB chip,
      so that the power supply is less noisy, thus allowing the SATA controller to
      lock correctly.
      Signed-off-by: NFlorian Fainelli <f.fainelli@gmail.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      eb73390a
  11. 12 1月, 2018 2 次提交
  12. 08 1月, 2018 2 次提交
  13. 03 1月, 2018 1 次提交
  14. 19 12月, 2017 1 次提交
  15. 12 12月, 2017 1 次提交
    • H
      ahci: Allow setting a default LPM policy for mobile chipsets · ebb82e3c
      Hans de Goede 提交于
      On many laptops setting a different LPM policy then unknown /
      max_performance can lead to power-savings of 1.0 - 1.5 Watts (when idle).
      
      Modern ultrabooks idle around 6W (at 50% screen brightness), 1.0 - 1.5W
      is a significant chunk of this.
      
      There are some performance / latency costs to enabling LPM by default,
      so it is desirable to make it possible to set a different LPM policy
      for mobile / laptop variants of chipsets / "South Bridges" vs their
      desktop / server counterparts. Also enabling LPM by default is not
      entirely without risk of regressions. At least min_power is known to
      cause issues with some disks, including some reports of data corruption.
      
      This commits adds a new ahci.mobile_lpm_policy kernel cmdline option,
      which defaults to a new SATA_MOBILE_LPM_POLICY Kconfig option so that
      Linux distributions can choose to set a LPM policy for mobile chipsets
      by default.
      
      The reason to have both a kernel cmdline option and a Kconfig default
      value for it, is to allow easy overriding of the default to allow
      trouble-shooting without needing to rebuild the kernel.
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      Signed-off-by: NTejun Heo <tj@kernel.org>
      ebb82e3c
  16. 11 12月, 2017 2 次提交
  17. 05 12月, 2017 3 次提交
  18. 28 11月, 2017 3 次提交
  19. 14 11月, 2017 2 次提交
  20. 03 11月, 2017 1 次提交
  21. 02 11月, 2017 1 次提交
    • G
      License cleanup: add SPDX GPL-2.0 license identifier to files with no license · b2441318
      Greg Kroah-Hartman 提交于
      Many source files in the tree are missing licensing information, which
      makes it harder for compliance tools to determine the correct license.
      
      By default all files without license information are under the default
      license of the kernel, which is GPL version 2.
      
      Update the files which contain no license information with the 'GPL-2.0'
      SPDX license identifier.  The SPDX identifier is a legally binding
      shorthand, which can be used instead of the full boiler plate text.
      
      This patch is based on work done by Thomas Gleixner and Kate Stewart and
      Philippe Ombredanne.
      
      How this work was done:
      
      Patches were generated and checked against linux-4.14-rc6 for a subset of
      the use cases:
       - file had no licensing information it it.
       - file was a */uapi/* one with no licensing information in it,
       - file was a */uapi/* one with existing licensing information,
      
      Further patches will be generated in subsequent months to fix up cases
      where non-standard license headers were used, and references to license
      had to be inferred by heuristics based on keywords.
      
      The analysis to determine which SPDX License Identifier to be applied to
      a file was done in a spreadsheet of side by side results from of the
      output of two independent scanners (ScanCode & Windriver) producing SPDX
      tag:value files created by Philippe Ombredanne.  Philippe prepared the
      base worksheet, and did an initial spot review of a few 1000 files.
      
      The 4.13 kernel was the starting point of the analysis with 60,537 files
      assessed.  Kate Stewart did a file by file comparison of the scanner
      results in the spreadsheet to determine which SPDX license identifier(s)
      to be applied to the file. She confirmed any determination that was not
      immediately clear with lawyers working with the Linux Foundation.
      
      Criteria used to select files for SPDX license identifier tagging was:
       - Files considered eligible had to be source code files.
       - Make and config files were included as candidates if they contained >5
         lines of source
       - File already had some variant of a license header in it (even if <5
         lines).
      
      All documentation files were explicitly excluded.
      
      The following heuristics were used to determine which SPDX license
      identifiers to apply.
      
       - when both scanners couldn't find any license traces, file was
         considered to have no license information in it, and the top level
         COPYING file license applied.
      
         For non */uapi/* files that summary was:
      
         SPDX license identifier                            # files
         ---------------------------------------------------|-------
         GPL-2.0                                              11139
      
         and resulted in the first patch in this series.
      
         If that file was a */uapi/* path one, it was "GPL-2.0 WITH
         Linux-syscall-note" otherwise it was "GPL-2.0".  Results of that was:
      
         SPDX license identifier                            # files
         ---------------------------------------------------|-------
         GPL-2.0 WITH Linux-syscall-note                        930
      
         and resulted in the second patch in this series.
      
       - if a file had some form of licensing information in it, and was one
         of the */uapi/* ones, it was denoted with the Linux-syscall-note if
         any GPL family license was found in the file or had no licensing in
         it (per prior point).  Results summary:
      
         SPDX license identifier                            # files
         ---------------------------------------------------|------
         GPL-2.0 WITH Linux-syscall-note                       270
         GPL-2.0+ WITH Linux-syscall-note                      169
         ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21
         ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17
         LGPL-2.1+ WITH Linux-syscall-note                      15
         GPL-1.0+ WITH Linux-syscall-note                       14
         ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5
         LGPL-2.0+ WITH Linux-syscall-note                       4
         LGPL-2.1 WITH Linux-syscall-note                        3
         ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3
         ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1
      
         and that resulted in the third patch in this series.
      
       - when the two scanners agreed on the detected license(s), that became
         the concluded license(s).
      
       - when there was disagreement between the two scanners (one detected a
         license but the other didn't, or they both detected different
         licenses) a manual inspection of the file occurred.
      
       - In most cases a manual inspection of the information in the file
         resulted in a clear resolution of the license that should apply (and
         which scanner probably needed to revisit its heuristics).
      
       - When it was not immediately clear, the license identifier was
         confirmed with lawyers working with the Linux Foundation.
      
       - If there was any question as to the appropriate license identifier,
         the file was flagged for further research and to be revisited later
         in time.
      
      In total, over 70 hours of logged manual review was done on the
      spreadsheet to determine the SPDX license identifiers to apply to the
      source files by Kate, Philippe, Thomas and, in some cases, confirmation
      by lawyers working with the Linux Foundation.
      
      Kate also obtained a third independent scan of the 4.13 code base from
      FOSSology, and compared selected files where the other two scanners
      disagreed against that SPDX file, to see if there was new insights.  The
      Windriver scanner is based on an older version of FOSSology in part, so
      they are related.
      
      Thomas did random spot checks in about 500 files from the spreadsheets
      for the uapi headers and agreed with SPDX license identifier in the
      files he inspected. For the non-uapi files Thomas did random spot checks
      in about 15000 files.
      
      In initial set of patches against 4.14-rc6, 3 files were found to have
      copy/paste license identifier errors, and have been fixed to reflect the
      correct identifier.
      
      Additionally Philippe spent 10 hours this week doing a detailed manual
      inspection and review of the 12,461 patched files from the initial patch
      version early this week with:
       - a full scancode scan run, collecting the matched texts, detected
         license ids and scores
       - reviewing anything where there was a license detected (about 500+
         files) to ensure that the applied SPDX license was correct
       - reviewing anything where there was no detection but the patch license
         was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
         SPDX license was correct
      
      This produced a worksheet with 20 files needing minor correction.  This
      worksheet was then exported into 3 different .csv files for the
      different types of files to be modified.
      
      These .csv files were then reviewed by Greg.  Thomas wrote a script to
      parse the csv files and add the proper SPDX tag to the file, in the
      format that the file expected.  This script was further refined by Greg
      based on the output to detect more types of files automatically and to
      distinguish between header and source .c files (which need different
      comment types.)  Finally Greg ran the script using the .csv files to
      generate the patches.
      Reviewed-by: NKate Stewart <kstewart@linuxfoundation.org>
      Reviewed-by: NPhilippe Ombredanne <pombredanne@nexb.com>
      Reviewed-by: NThomas Gleixner <tglx@linutronix.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      b2441318
  22. 31 10月, 2017 1 次提交