From owner-dev-commits-src-main@freebsd.org Wed Jan 13 21:18:52 2021 Return-Path: Delivered-To: dev-commits-src-main@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 87A284E8F5E; Wed, 13 Jan 2021 21:18:52 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-oi1-f170.google.com (mail-oi1-f170.google.com [209.85.167.170]) (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 4DGL0X2tGrz3mnb; Wed, 13 Jan 2021 21:18:52 +0000 (UTC) (envelope-from asomers@gmail.com) Received: by mail-oi1-f170.google.com with SMTP id s2so3703316oij.2; Wed, 13 Jan 2021 13:18:52 -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=vquRFzeHYLlQYgKm1Mime0kc5KX2+D88SztQyNeUdZo=; b=hlWZCdx2iTrk+jcFzSrjbaUDRxaWhfh4iYwhHEKivPKVYu5G0qOWH1K/k9h2RJTSnH w+o2yeJOubo1RIHPXFdzILg13eMRyFZ1l1tJ0XaqKPwap5g/SGnxfToCwxcjs2otJexI X1fNc4fDTPgLEGXeqhRcYV7lWzcg84BN0TrPTTkIBep/hOVrEjRUHUyrl6kmHRfOU2Yh WyzlYjqZwHcmxk2E6BAz/Vcc7S6SfPqCDjfiX7gZelvEneY+Vm2rJYL0kH2ZXRYxNxRn sa53T1ZJlc05wz/skuDsDQkyvEje0F3+7ogGcHMWX8mLwb6MXI1M+FZXx6PRoTxATpAf isQw== X-Gm-Message-State: AOAM530uv2je370OkDiQxTlHvro+6ZEtxVlO0zF7JGnEcPkytLh4t/s0 EV0aEfhV8acMBQra6PTIFUfHqUEKfMg1masd8H57dHNBbMU= X-Google-Smtp-Source: ABdhPJzBlFk7XUxTrfKU0ytiFJE5sTSczo99THQMdkrjqL7iEC0nDXuC2HcUywJH1A2ZHuV3jRoKsWyLCJMgE8kp6BQ= X-Received: by 2002:aca:dd09:: with SMTP id u9mr727092oig.73.1610572731016; Wed, 13 Jan 2021 13:18:51 -0800 (PST) MIME-Version: 1.0 References: <202101132113.10DLDQt9005004@gitrepo.freebsd.org> In-Reply-To: <202101132113.10DLDQt9005004@gitrepo.freebsd.org> From: Alan Somers Date: Wed, 13 Jan 2021 14:18:40 -0700 Message-ID: Subject: Re: git: 074a91f746bd - main - Enable accelerated AES-XTS software crypto in GENERIC. To: John Baldwin Cc: src-committers , dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org X-Rspamd-Queue-Id: 4DGL0X2tGrz3mnb X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.34 X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2021 21:18:52 -0000 On Wed, Jan 13, 2021 at 2:13 PM John Baldwin wrote: > The branch main has been updated by jhb: > > URL: > https://cgit.FreeBSD.org/src/commit/?id=074a91f746bd80498a4c815aa795e5dc51b12121 > > commit 074a91f746bd80498a4c815aa795e5dc51b12121 > Author: John Baldwin > AuthorDate: 2021-01-13 21:13:01 +0000 > Commit: John Baldwin > CommitDate: 2021-01-13 21:13:01 +0000 > > Enable accelerated AES-XTS software crypto in GENERIC. > > In particular, using GELI on a root filesystem will only use > accelerated software crypto drivers if they are available before the > root filesystem is mounted. While these modules can be loaded from > the loader, including them in GENERIC provides a better out-of-the-box > experience for users. > > Both aesni(4) and armv8crypto(4) provide accelerated implementations > of the default cipher used by GELI (AES-XTS) in addition to other > ciphers. > > Reviewed by: mhorne, allanjude, markj > Differential Revision: https://reviews.freebsd.org/D28100 > > How about an entry in UPDATING?