From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 961F9C7CFCF for ; Fri, 13 Dec 2019 20:39:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D41DF24741 for ; Fri, 13 Dec 2019 20:39:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728535AbfLMRfb (ORCPT ); Fri, 13 Dec 2019 12:35:31 -0500 Received: from mx2.suse.de ([195.135.220.15]:43882 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1728109AbfLMRfb (ORCPT ); Fri, 13 Dec 2019 12:35:31 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id EF350AF2B; Fri, 13 Dec 2019 17:35:28 +0000 (UTC) Received: by ds.suse.cz (Postfix, from userid 10065) id D9995DA82A; Fri, 13 Dec 2019 18:35:27 +0100 (CET) Date: Fri, 13 Dec 2019 18:35:27 +0100 From: David Sterba To: Zaslonko Mikhail Cc: Andrew Morton , Chris Mason , Josef Bacik , David Sterba , linux-btrfs@vger.kernel.org, Heiko Carstens , Vasily Gorbik , Christian Borntraeger , Eduard Shishkin , linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 6/6] btrfs: Use larger zlib buffer for s390 hardware compression Message-ID: <20191213173526.GC3929@twin.jikos.cz> Reply-To: dsterba@suse.cz Mail-Followup-To: dsterba@suse.cz, Zaslonko Mikhail , Andrew Morton , Chris Mason , Josef Bacik , David Sterba , linux-btrfs@vger.kernel.org, Heiko Carstens , Vasily Gorbik , Christian Borntraeger , Eduard Shishkin , linux-s390@vger.kernel.org, linux-kernel@vger.kernel.org References: <20191209152948.37080-1-zaslonko@linux.ibm.com> <20191209152948.37080-7-zaslonko@linux.ibm.com> <97b3a11d-2e52-c710-ee25-157e562eb3d0@linux.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <97b3a11d-2e52-c710-ee25-157e562eb3d0@linux.ibm.com> User-Agent: Mutt/1.5.23.1-rc1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Dec 13, 2019 at 05:10:10PM +0100, Zaslonko Mikhail wrote: > Hello, > > Could you please review the patch for btrfs below. > > Apart from falling back to 1 page, I have set the condition to allocate > 4-pages zlib workspace buffer only if s390 Deflate-Conversion facility > is installed and enabled. Thus, it will take effect on s390 architecture > only. > > Currently in zlib_compress_pages() I always copy input pages to the workspace > buffer prior to zlib_deflate call. Would that make sense, to pass the page > itself, as before, based on the workspace buf_size (for 1-page buffer)? Doesn't the copy back and forth kill the improvements brought by the hw supported decompression? > As for calling zlib_deflate with Z_FINISH flush parameter in a loop until > Z_STREAM_END is returned, that comes in agreement with the zlib manual. The concerns are about zlib stream that take 4 pages on input and on the decompression side only 1 page is available for the output. Ie. as if the filesystem was created on s390 with dflcc then opened on x86 host. The zlib_deflate(Z_FINISH) happens on the compresission side.