Received: by 10.213.65.68 with SMTP id h4csp3778824imn; Tue, 10 Apr 2018 04:42:03 -0700 (PDT) X-Google-Smtp-Source: AIpwx4/P8dezjHymcCLzq2jIqDUruiGbXznkjqWq3QLQckK3kYS4cOuGpkdRuqE6QSgZnBqH6V+D X-Received: by 10.98.194.26 with SMTP id l26mr27623pfg.47.1523360523149; Tue, 10 Apr 2018 04:42:03 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1523360523; cv=none; d=google.com; s=arc-20160816; b=ui1PpQd4AgKu+55Q+Wn/o+LGxIoK++jjqOWT9j1Sl713GZcFyb1TUSumvaoZfvqKhW 5jKsSPoNRqNZRuUNLuzJJD8J+IV10RbIFgKvHZpOPbI889O9zJtYjmsFAVMbrYodXoKm DPt/BljuUim+XpvB0eMTie9DBX8phb8OVRp2na4XLzGX5pN3tsEWoV40QbXoIGUxdJD3 9W+30tPFjUWQWOCNm6JPti3wGtRiWKhzDbCHfchWjR8KD672LAhXVYN8LOSqVI9siU55 JuyX6BzitXnQhR+rXDNGEpL29bxnw313QidO5vpXjlQqQGqHlJUVSUjL9ho2rvtc1fir o6YA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=ikK7ZAUWT8SoQfuBQF/8x+aYsvQnR3ez0O4KL1oYXt8=; b=BgqW8ZT9cWwNiRpbjogPtUSBdYeiLuUQMmB1i4H2OEwpvwt3XY18VR/07/z1T00EaA NyUi0gS4B6gjl/rW7f2TY7TUgfEeWsPjmYhnM3sI7ls+kWl6vk4gpvadUtB8FZrHOizJ 07rrHtwch1fqpwWYZ3QCozd8V7hMIfEk+CpC8qAWkyf27nxZpztFH/Xj3mhUz6IJg4WK Z/pkpPZ9JDuNcdqNHXXFCa+Bd1nXPMhc3ULn6mbHh9mqfccWLzPrMOOq89Pe/xfestII PqC92Hh8/oJDqSuld8yMVQtqg7VxM/+dH/ZfK1zFGen2oQj5BUGwjsinBD0jnp59b9/h r8Tg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g62si1698740pgc.693.2018.04.10.04.41.26; Tue, 10 Apr 2018 04:42:03 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752693AbeDJLiX (ORCPT + 99 others); Tue, 10 Apr 2018 07:38:23 -0400 Received: from la.guarana.org ([173.254.219.205]:49040 "EHLO la.guarana.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752354AbeDJLiW (ORCPT ); Tue, 10 Apr 2018 07:38:22 -0400 Received: by la.guarana.org (Postfix, from userid 1006) id 284EB34613D7; Tue, 10 Apr 2018 07:38:22 -0400 (EDT) Date: Tue, 10 Apr 2018 07:38:22 -0400 From: Kevin Easton To: Steffen Klassert Cc: Herbert Xu , "David S. Miller" , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 2/2] af_key: Use DIV_ROUND_UP() instead of open-coded equivalent Message-ID: <20180410113822.GA18690@la.guarana.org> References: <494dcebdc07530d6afbd7eda300da890a3e68e1c.1523115061.git.kevin@guarana.org> <20180409103442.oiib3bi7rms5sgg3@gauss3.secunet.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180409103442.oiib3bi7rms5sgg3@gauss3.secunet.de> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Apr 09, 2018 at 12:34:42PM +0200, Steffen Klassert wrote: > On Sat, Apr 07, 2018 at 11:40:47AM -0400, Kevin Easton wrote: > > Several places use (x + 7) / 8 to convert from a number of bits to a number > > of bytes. Replace those with DIV_ROUND_UP(x, 8) instead, for consistency > > with other parts of the same file. > > > > Signed-off-by: Kevin Easton > > Please resubmit this one to ipsec-next after the > merge window. Thanks! Will do! - Kevin