Received: by 2002:a05:6a10:c604:0:0:0:0 with SMTP id y4csp439094pxt; Thu, 12 Aug 2021 01:56:08 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyVatz8rTxqEe+8px546KmOptqHcVYo9YoDmiaQB4vgyXHQOXC1vWENouB+J9wi88xv4nDt X-Received: by 2002:a17:906:81c8:: with SMTP id e8mr2644293ejx.401.1628758568144; Thu, 12 Aug 2021 01:56:08 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1628758568; cv=none; d=google.com; s=arc-20160816; b=RZC2/zXcNr1O3ouNhrRJB8CrBfSv1x6p4jaX4m494Q9GfzBvROT7VgMcMFVPitVtpw GHWjOcUgSeF0Af5es8ST2y6TcaEM5lA72VG91wDOb16TVZ7mDL6bkRO0+uAunTtzjXlG riKB57qjCfkwYCU1kWmmYk2yk3CHIrFYrwSIolllKlUMcTfJbMiC5+vwIyOgFsuY7Ekv X9uWvEssRCACHcXApa9Hf3CYl1EFF5lFa1MHLXFHiN54F2762aw3UL6LQsi3UO/jOKxl gS5gumsAS5eP6uOS2MF5/k6Qfss6w6Mzm6KCiOP7KdCvagzbxdtarthGu/TgHn0cJ+5J scCg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=XRax9JYdz9L/DSLQC3/5FglIcX03eHQ2IU7BQ9XOCuM=; b=mZQIfXnO4UTVekR9el2nnr4ihNlhj5OExCjfOEEY26zfFqRdcEqzImGkHgNitrYxGm NgNohl6swOSkrIX3KTivyfFliyCLx6+Neet7j4FIO4LOgoP7BCsHnpDvPKY+tgtUEj1k JTdks8MWEXvlgBJAx67GNprpxbtk0eZXlu6aT6+0Xm6rrnTrqs9YcdDIM73zzuE0tqjQ DM6p6O3gdt8Tth9a9PoO8k/i1DGlxP+mZWrT9gSgcqQiBl3Mz62sVxUUxB5kYCtOJSq6 p84ErVMpWktyahl1ad/BOjOGJ5vUdnLvAlCBb8M7U+wrON5qGpYJ1Ntlc0QhO20ntN43 daUg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id z15si2112243edb.227.2021.08.12.01.55.44; Thu, 12 Aug 2021 01:56:08 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235433AbhHLIvt (ORCPT + 99 others); Thu, 12 Aug 2021 04:51:49 -0400 Received: from out30-44.freemail.mail.aliyun.com ([115.124.30.44]:41923 "EHLO out30-44.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235260AbhHLIvn (ORCPT ); Thu, 12 Aug 2021 04:51:43 -0400 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R201e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=alimailimapcm10staff010182156082;MF=xianting.tian@linux.alibaba.com;NM=1;PH=DS;RN=10;SR=0;TI=SMTPD_---0UilvLcw_1628758274; Received: from localhost(mailfrom:xianting.tian@linux.alibaba.com fp:SMTPD_---0UilvLcw_1628758274) by smtp.aliyun-inc.com(127.0.0.1); Thu, 12 Aug 2021 16:51:15 +0800 From: Xianting Tian To: gregkh@linuxfoundation.org, jirislaby@kernel.org, amit@kernel.org, arnd@arndb.de, osandov@fb.com Cc: linuxppc-dev@lists.ozlabs.org, virtualization@lists.linux-foundation.org, linux-kernel@vger.kernel.org, guoren@kernel.org, Xianting Tian Subject: [PATCH v5 0/2] make hvc pass dma capable memory to its backend Date: Thu, 12 Aug 2021 16:51:10 +0800 Message-Id: <20210812085112.145265-1-xianting.tian@linux.alibaba.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Dear all, This patch series make hvc framework pass DMA capable memory to put_chars() of hvc backend(eg, virtio-console), and revert commit c4baad5029 ("virtio-console: avoid DMA from stackā€) V1 virtio-console: avoid DMA from vmalloc area https://lkml.org/lkml/2021/7/27/494 For v1 patch, Arnd Bergmann suggests to fix the issue in the first place: Make hvc pass DMA capable memory to put_chars() The fix suggestion is included in v2. V2 [PATCH 1/2] tty: hvc: pass DMA capable memory to put_chars() https://lkml.org/lkml/2021/8/1/8 [PATCH 2/2] virtio-console: remove unnecessary kmemdup() https://lkml.org/lkml/2021/8/1/9 For v2 patch, Arnd Bergmann suggests to make new buf part of the hvc_struct structure, and fix the compile issue. The fix suggestion is included in v3. V3 [PATCH v3 1/2] tty: hvc: pass DMA capable memory to put_chars() https://lkml.org/lkml/2021/8/3/1347 [PATCH v3 2/2] virtio-console: remove unnecessary kmemdup() https://lkml.org/lkml/2021/8/3/1348 For v3 patch, Jiri Slaby suggests to make 'char c[N_OUTBUF]' part of hvc_struct, and make 'hp->outbuf' aligned and use struct_size() to calculate the size of hvc_struct. The fix suggestion is included in v4. V4 [PATCH v4 0/2] make hvc pass dma capable memory to its backend https://lkml.org/lkml/2021/8/5/1350 [PATCH v4 1/2] tty: hvc: pass DMA capable memory to put_chars() https://lkml.org/lkml/2021/8/5/1351 [PATCH v4 2/2] virtio-console: remove unnecessary kmemdup() https://lkml.org/lkml/2021/8/5/1352 For v4 patch, Arnd Bergmann suggests to introduce another array(cons_outbuf[]) for the buffer pointers next to the cons_ops[] and vtermnos[] arrays. This fix included in this v5 patch. drivers/char/virtio_console.c | 12 ++---------- drivers/tty/hvc/hvc_console.c | 40 +++++++++++++++++++++-------------- drivers/tty/hvc/hvc_console.h | 16 ++++++++++++-- 3 file changed