From owner-svn-src-head@freebsd.org Sun Nov 29 17:46:34 2020 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4CC054A8C52; Sun, 29 Nov 2020 17:46:34 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-io1-f52.google.com (mail-io1-f52.google.com [209.85.166.52]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CkbQL1cVdz3CRd; Sun, 29 Nov 2020 17:46:33 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-io1-f52.google.com with SMTP id z5so9490294iob.11; Sun, 29 Nov 2020 09:46:33 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=va3bGKlxE1cYCRJSokKOr/91QQaLiqdzsL72YcrBPrE=; b=uSDU+mkWi3cIKWHyUGHq9KPvKThj2UQ/A0e78t0xGNcQZJgmGsWSN9udOpjYTLwAGC LQpZ6E3D7JE2Q4pvqGx7g+ld8mg5PrWkfQTSKyjkaAH5+vg5gmvSX6G2DphlmxvMoe1F xzOjLjZFuHKCMg2Yaljt4HpHTGiN6DA6/NDhDAunl8xsR76tWk6bI1oHwEtBc8luZPRc jV6Lv/+Apg0sztfVn6IlVVXMGZQXc26awNVRvgfKpJq4lhPOUFwIIOuFTk8FQz9d4u3k slqGywwcduERmj5ABGUhOxf+R6JsbaxeC7uHWCxqiYZrX513zHRchR9fOxAMobxM173c OSuQ== X-Gm-Message-State: AOAM531MPGOAS9SnstNcLl7S10PnOBubIop10GPPf+QBs7paJZ9pwDun zSai4VCQ7sVAM6jWxqrnpi+b4h0Hi/uWL8d5dAU= X-Google-Smtp-Source: ABdhPJxIftLl2qBHKYw5EaqDl7HNrmd2Q4zfCX+3Ey2qD4YS8kISTLINZOdEn59ArKgXkqSbjM+mbqQiIvEp4ax1I30= X-Received: by 2002:a05:6638:31b:: with SMTP id w27mr49138jap.8.1606671992610; Sun, 29 Nov 2020 09:46:32 -0800 (PST) MIME-Version: 1.0 References: <202011281212.0ASCCpjQ006999@repo.freebsd.org> <56ede111-cf89-366e-fbda-aa26f4a78a23@freebsd.org> In-Reply-To: From: Ed Maste Date: Sun, 29 Nov 2020 12:46:20 -0500 Message-ID: Subject: Re: svn commit: r368124 - in head/sys: cam cam/ata cam/ctl cam/mmc cam/nvme cam/scsi compat/linprocfs compat/linux conf contrib/openzfs/module/os/freebsd/zfs dev/ahci dev/ata dev/firewire dev/flash dev... To: Konstantin Belousov Cc: Michal Meloun , src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 4CkbQL1cVdz3CRd X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2020 17:46:34 -0000 On Sun, 29 Nov 2020 at 12:36, Konstantin Belousov wrote: > > I think it is reasonable to return to 128KB for 32bit systems. ... > +#ifndef MAXPHYS /* max raw I/O transfer size */ > +#ifdef __ILP32__ > +#define MAXPHYS (128 * 1024) > +#else > +#define MAXPHYS (1024 * 1024) > +#endif This seems reasonable to me.