From owner-svn-src-head@freebsd.org Tue Feb 2 18:22:01 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28A4AA99720; Tue, 2 Feb 2016 18:22:01 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-ob0-x233.google.com (mail-ob0-x233.google.com [IPv6:2607:f8b0:4003:c01::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8FC2B21; Tue, 2 Feb 2016 18:22:00 +0000 (UTC) (envelope-from asomers@gmail.com) Received: by mail-ob0-x233.google.com with SMTP id xk3so57411766obc.2; Tue, 02 Feb 2016 10:22:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=WwsF8NPzmZZedOTam1YceX0/yArZxVUC3FNgQkxfPXc=; b=nzCEuE7Yvq1W5RHgLgOkoS/jaj4yRqqahLyLRQ1ppmQO0iSTgL8JElDjR+TPIYDLYk Ehk4SFA0LGei5UnWjQbAPhXWQT/PPdMHDrBbi9BX8YAIc8kQfQowhgNdRfUdZpfnMpcY 3vizJenTa18pLW7JTtFELzyzZMai678S/B9CAAfX1iGfIFWC+Z9B5cIqf8150Sdanogk wrVRUkXzw0RWPlTQLFgXsVW0G50ggMf/5ZvI5zoX3dH2FvM/eD/gWU8TxxStpcfcCoIW OTkwg4mbRN/x9rvyBxk815wYOmSXz+50TbwcK34FfdqkBvGNOHQsxPoTqtQMsLg32Wsc qtZw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=WwsF8NPzmZZedOTam1YceX0/yArZxVUC3FNgQkxfPXc=; b=MqKly5KvqBf/M15+YuIY+lQGKGem2AqSLs+lQWkD/DNZgivj4pz6m4dQ6uTPszRk/p 8fEu9MOUjeLEuklcIVWy0ufXvTbFKMrGuqWbzoaGNwYSMjuaR/wXdaCJVfTmyr/cZzZy Z0BMoo/I2lxlI4qnqrgJSQRrkwNHvXOrHfiLCrIw3gQXZ3Jy0lH8uKrnoIyeOouXvVkl BSYLep3Q/kvTqkEdIsn0lXhaFMR2e7cOjfF+SP1aXb9i7wYvdLLegskQxUXYqkDEmqH+ gfAmhN3nfJXNKxi3r8R408lpNMoP950kS4WsFFx4L9ZJUqhhVAnZCWmwQHjeHfLVdFOD dyYQ== X-Gm-Message-State: AG10YORYbgrCWp2JysPD/ahbRDC910KTbIDon8/F1nmLH9WtCZZjuLthdFClXZotCCwzTjPcKyLNJrTO8fQyOQ== MIME-Version: 1.0 X-Received: by 10.182.213.71 with SMTP id nq7mr24227574obc.65.1454437320001; Tue, 02 Feb 2016 10:22:00 -0800 (PST) Sender: asomers@gmail.com Received: by 10.202.210.79 with HTTP; Tue, 2 Feb 2016 10:21:59 -0800 (PST) In-Reply-To: <201602020014.u120Ep7e084908@repo.freebsd.org> References: <201602020014.u120Ep7e084908@repo.freebsd.org> Date: Tue, 2 Feb 2016 11:21:59 -0700 X-Google-Sender-Auth: Y1q2t71dZ3fjo44n4rKKqzSxiq4 Message-ID: Subject: Re: svn commit: r295134 - head/sys/kgssapi/krb5 From: Alan Somers To: "Conrad E. Meyer" Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 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: Tue, 02 Feb 2016 18:22:01 -0000 On Mon, Feb 1, 2016 at 5:14 PM, Conrad E. Meyer wrote: > Author: cem > Date: Tue Feb 2 00:14:51 2016 > New Revision: 295134 > URL: https://svnweb.freebsd.org/changeset/base/295134 > > Log: > kcrypto_aes: Use separate sessions for AES and SHA1 > > Some hardware supports AES acceleration but not SHA1, e.g., AES-NI > extensions. It is useful to have accelerated AES even if SHA1 must be > software. > > Suggested by: asomers > Reviewed by: asomers, dfr > Sponsored by: EMC / Isilon Storage Division > Differential Revision: https://reviews.freebsd.org/D5146 > > Modified: > head/sys/kgssapi/krb5/kcrypto_aes.c Thanks for doing this, Conrad. Could you also please MFC it once stable/10 thaws?