200-spi-fsl-espi-preallocate-local-buffer.patch 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. From: Gabor Juhos <juhosg@openwrt.org>
  2. Subject: spi-fsl-espi: avoid frequent high order allocations
  3. The driver allocates 64KiB of memory fro a local buffer before
  4. each transfer and releases that afterwards. When the memory is
  5. fragmented this allocation often fails and causes a warning like
  6. this:
  7. kworker/u2:2: page allocation failure: order:4, mode:0x10c0d0
  8. CPU: 0 PID: 7011 Comm: kworker/u2:2 Not tainted 3.10.24 #1
  9. Workqueue: ffe07000.spi mpc8xxx_spi_work
  10. Call Trace:
  11. [c1c6dcf0] [c0006914] show_stack+0x50/0x170 (unreliable)
  12. [c1c6dd30] [c0259858] dump_stack+0x24/0x34
  13. [c1c6dd40] [c00672e8] warn_alloc_failed+0x120/0x13c
  14. [c1c6dd90] [c0069920] __alloc_pages_nodemask+0x574/0x5c8
  15. [c1c6de20] [c0069990] __get_free_pages+0x1c/0x4c
  16. [c1c6de30] [c0185174] fsl_espi_do_one_msg+0x128/0x2a0
  17. [c1c6de90] [c0184290] mpc8xxx_spi_work+0x50/0x7c
  18. [c1c6dea0] [c0037af8] process_one_work+0x208/0x30c
  19. [c1c6dec0] [c00387a0] worker_thread+0x20c/0x308
  20. [c1c6def0] [c003de60] kthread+0xa4/0xa8
  21. [c1c6df40] [c000c4bc] ret_from_kernel_thread+0x5c/0x64
  22. m25p80 spi0.0: error -12 reading SR
  23. end_request: I/O error, dev mtdblock3, sector 680
  24. SQUASHFS error: squashfs_read_data failed to read block 0x54a4a
  25. SQUASHFS error: Unable to read data cache entry [54a4a]
  26. Preallocate the buffer from the probe routine to avoid
  27. this.
  28. Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
  29. Signed-off-by: Felix Fietkau <nbd@nbd.name>
  30. ---
  31. drivers/spi/spi-fsl-espi.c | 34 ++++++++++++++++------------------
  32. drivers/spi/spi-fsl-lib.h | 1 +
  33. 2 files changed, 17 insertions(+), 18 deletions(-)
  34. --- a/drivers/spi/spi-fsl-espi.c
  35. +++ b/drivers/spi/spi-fsl-espi.c
  36. @@ -332,17 +332,13 @@ static void fsl_espi_do_trans(struct spi
  37. static void fsl_espi_cmd_trans(struct spi_message *m,
  38. struct fsl_espi_transfer *trans, u8 *rx_buff)
  39. {
  40. + struct spi_device *spi = m->spi;
  41. + struct mpc8xxx_spi *mspi = spi_master_get_devdata(spi->master);
  42. struct spi_transfer *t;
  43. - u8 *local_buf;
  44. + u8 *local_buf = mspi->local_buf;
  45. int i = 0;
  46. struct fsl_espi_transfer *espi_trans = trans;
  47. - local_buf = kzalloc(SPCOM_TRANLEN_MAX, GFP_KERNEL);
  48. - if (!local_buf) {
  49. - espi_trans->status = -ENOMEM;
  50. - return;
  51. - }
  52. -
  53. list_for_each_entry(t, &m->transfers, transfer_list) {
  54. if (t->tx_buf) {
  55. memcpy(local_buf + i, t->tx_buf, t->len);
  56. @@ -355,16 +351,17 @@ static void fsl_espi_cmd_trans(struct sp
  57. fsl_espi_do_trans(m, espi_trans);
  58. espi_trans->actual_length = espi_trans->len;
  59. - kfree(local_buf);
  60. }
  61. static void fsl_espi_rw_trans(struct spi_message *m,
  62. struct fsl_espi_transfer *trans, u8 *rx_buff)
  63. {
  64. + struct spi_device *spi = m->spi;
  65. + struct mpc8xxx_spi *mspi = spi_master_get_devdata(spi->master);
  66. struct fsl_espi_transfer *espi_trans = trans;
  67. unsigned int total_len = espi_trans->len;
  68. struct spi_transfer *t;
  69. - u8 *local_buf;
  70. + u8 *local_buf = mspi->local_buf;
  71. u8 *rx_buf = rx_buff;
  72. unsigned int trans_len;
  73. unsigned int addr;
  74. @@ -373,12 +370,6 @@ static void fsl_espi_rw_trans(struct spi
  75. unsigned int pos;
  76. int i, loop;
  77. - local_buf = kzalloc(SPCOM_TRANLEN_MAX, GFP_KERNEL);
  78. - if (!local_buf) {
  79. - espi_trans->status = -ENOMEM;
  80. - return;
  81. - }
  82. -
  83. for (pos = 0, loop = 0; pos < total_len; pos += trans_len, loop++) {
  84. trans_len = total_len - pos;
  85. @@ -424,8 +415,6 @@ static void fsl_espi_rw_trans(struct spi
  86. else
  87. espi_trans->actual_length += espi_trans->len;
  88. }
  89. -
  90. - kfree(local_buf);
  91. }
  92. static int fsl_espi_do_one_msg(struct spi_master *master,
  93. @@ -673,6 +662,12 @@ static struct spi_master * fsl_espi_prob
  94. mpc8xxx_spi = spi_master_get_devdata(master);
  95. + mpc8xxx_spi->local_buf = devm_kzalloc(dev, SPCOM_TRANLEN_MAX, GFP_KERNEL);
  96. + if (!mpc8xxx_spi->local_buf) {
  97. + ret = -ENOMEM;
  98. + goto err_probe;
  99. + }
  100. +
  101. mpc8xxx_spi->reg_base = devm_ioremap_resource(dev, mem);
  102. if (IS_ERR(mpc8xxx_spi->reg_base)) {
  103. ret = PTR_ERR(mpc8xxx_spi->reg_base);
  104. --- a/drivers/spi/spi-fsl-lib.h
  105. +++ b/drivers/spi/spi-fsl-lib.h
  106. @@ -30,6 +30,7 @@ struct mpc8xxx_spi {
  107. void *rx;
  108. #if IS_ENABLED(CONFIG_SPI_FSL_ESPI)
  109. int len;
  110. + u8 *local_buf;
  111. #endif
  112. int subblock;