Advertisement
Guest User

Untitled

a guest
Nov 25th, 2019
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. /usr/src/linux-headers-5.3.0-18-generic# cd '/usr/src/linux-headers-5.3.0-18-generic/kernel'
  2. root@amlt-To-be-filled-by-O-E-M:/usr/src/linux-headers-5.3.0-18-generic/kernel# patch -p0 < ../3-3-PCI-msi-remove-pci_enable_msi_-exact-range.patch
  3. can't find file to patch at input line 71
  4. Perhaps you used the wrong -p or --strip option?
  5. The text leading up to this was:
  6. --------------------------
  7. |From patchwork Mon Jan 9 20:37:40 2017
  8. |Content-Type: text/plain; charset="utf-8"
  9. |MIME-Version: 1.0
  10. |Content-Transfer-Encoding: 7bit
  11. |X-Patchwork-Submitter: Christoph Hellwig <hch@lst.de>
  12. |X-Patchwork-Id: 9505893
  13. |Return-Path: <linux-media-owner@kernel.org>
  14. |Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org
  15. | [172.30.200.125])
  16. | by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id
  17. | 60B1B60757 for <patchwork-linux-media@patchwork.kernel.org>;
  18. | Mon, 9 Jan 2017 20:38:20 +0000 (UTC)
  19. |Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1])
  20. | by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 493F128504
  21. | for <patchwork-linux-media@patchwork.kernel.org>;
  22. | Mon, 9 Jan 2017 20:38:20 +0000 (UTC)
  23. |Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486)
  24. | id 3E07B28518; Mon, 9 Jan 2017 20:38:20 +0000 (UTC)
  25. |X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on
  26. | pdx-wl-mail.web.codeaurora.org
  27. |X-Spam-Level:
  28. |X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI
  29. | autolearn=ham version=3.3.1
  30. |Received: from vger.kernel.org (vger.kernel.org [209.132.180.67])
  31. | by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8DB9B28504
  32. | for <patchwork-linux-media@patchwork.kernel.org>;
  33. | Mon, 9 Jan 2017 20:38:19 +0000 (UTC)
  34. |Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
  35. | id S940611AbdAIUiN (ORCPT
  36. | <rfc822;patchwork-linux-media@patchwork.kernel.org>);
  37. | Mon, 9 Jan 2017 15:38:13 -0500
  38. |Received: from bombadil.infradead.org ([198.137.202.9]:38242 "EHLO
  39. | bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org
  40. | with ESMTP id S940640AbdAIUh6 (ORCPT
  41. | <rfc822; linux-media@vger.kernel.org>); Mon, 9 Jan 2017 15:37:58 -0500
  42. |Received: from clnet-p099-196.ikbnet.co.at ([83.175.99.196] helo=localhost)
  43. | by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat
  44. | Linux)) id 1cQghU-0002SK-Ar; Mon, 09 Jan 2017 20:37:52 +0000
  45. |From: Christoph Hellwig <hch@lst.de>
  46. |To: linux-pci@vger.kernel.org
  47. |Cc: Mauro Carvalho Chehab <mchehab@s-opensource.com>,
  48. | netdev@vger.kernel.org, linux-media@vger.kernel.org
  49. |Subject: [PATCH 3/3] PCI/msi: remove pci_enable_msi_{exact,range}
  50. |Date: Mon, 9 Jan 2017 21:37:40 +0100
  51. |Message-Id: <1483994260-19797-4-git-send-email-hch@lst.de>
  52. |X-Mailer: git-send-email 2.1.4
  53. |In-Reply-To: <1483994260-19797-1-git-send-email-hch@lst.de>
  54. |References: <1483994260-19797-1-git-send-email-hch@lst.de>
  55. |X-SRS-Rewrite: SMTP reverse-path rewritten from <hch@infradead.org> by
  56. | bombadil.infradead.org. See http://www.infradead.org/rpr.html
  57. |Sender: linux-media-owner@vger.kernel.org
  58. |Precedence: bulk
  59. |List-ID: <linux-media.vger.kernel.org>
  60. |X-Mailing-List: linux-media@vger.kernel.org
  61. |X-Virus-Scanned: ClamAV using ClamSMTP
  62. |
  63. |All multi-MSI allocations are now done through pci_irq_alloc_vectors,
  64. |so remove the old interface.
  65. |
  66. |Signed-off-by: Christoph Hellwig <hch@lst.de>
  67. |---
  68. | Documentation/PCI/MSI-HOWTO.txt | 6 ++----
  69. | drivers/pci/msi.c | 26 +++++++++-----------------
  70. | include/linux/pci.h | 16 ++--------------
  71. | 3 files changed, 13 insertions(+), 35 deletions(-)
  72. |
  73. |diff --git a/Documentation/PCI/MSI-HOWTO.txt b/Documentation/PCI/MSI-HOWTO.txt
  74. |index cd9c9f6..b570a92 100644
  75. |--- a/Documentation/PCI/MSI-HOWTO.txt
  76. |+++ b/Documentation/PCI/MSI-HOWTO.txt
  77. --------------------------
  78. File to patch:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement