From patchwork Thu Nov 8 08:38:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Li RongQing X-Patchwork-Id: 197805 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id F1C432C00A6 for ; Thu, 8 Nov 2012 19:38:22 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753220Ab2KHIiV (ORCPT ); Thu, 8 Nov 2012 03:38:21 -0500 Received: from mail-da0-f46.google.com ([209.85.210.46]:45233 "EHLO mail-da0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751979Ab2KHIiU (ORCPT ); Thu, 8 Nov 2012 03:38:20 -0500 Received: by mail-da0-f46.google.com with SMTP id n41so1091209dak.19 for ; Thu, 08 Nov 2012 00:38:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=DY+tlDio59qY0L42mMpB7Re3KhO9OMneaFHFwfJtRQk=; b=Xtb4LhrlZnOVca6ytpBqk+QL2s0YTULko1jgZZh8Gvh9CAvBesk0Z9z0rK+5vW/fkj Nq3k5nsemrrFh14VLExz9HfsxnU8B3BtDEXvaeoAM2HvxWN5k6dTgbCEGSakpQn+9eKo PZUUU+8LErjlYtchRdtIUJqZQTxO0Bd+wH1lYCfxCnBrcrZb8qyw9YIlwFtL40jxSbUK UihPBO4nWFso2lHyn72REL42mV0lcpfGeZDMsnBv04RwqKte9YZxl6cTkgNX+CKmhrlq I85j1jvTpM/9rdRPjejlvD/zWnPUpukChuCamvDWcEvGBeGLq5pGHDsZc5xCrVdh1sXE khrg== Received: by 10.66.78.104 with SMTP id a8mr20307582pax.38.1352363899780; Thu, 08 Nov 2012 00:38:19 -0800 (PST) Received: from localhost ([61.148.56.138]) by mx.google.com with ESMTPS id k9sm15775395paz.22.2012.11.08.00.38.14 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 08 Nov 2012 00:38:18 -0800 (PST) From: roy.qing.li@gmail.com To: netdev@vger.kernel.org Subject: [PATCH] ipv6: fix two typos in a comment in xfrm6_init() Date: Thu, 8 Nov 2012 16:38:08 +0800 Message-Id: <1352363888-14068-1-git-send-email-roy.qing.li@gmail.com> X-Mailer: git-send-email 1.7.4.1 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Li RongQing Signed-off-by: Li RongQing --- net/ipv6/xfrm6_policy.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ipv6/xfrm6_policy.c b/net/ipv6/xfrm6_policy.c index f3ed8ca..93832e8 100644 --- a/net/ipv6/xfrm6_policy.c +++ b/net/ipv6/xfrm6_policy.c @@ -332,10 +332,10 @@ int __init xfrm6_init(void) /* * We need a good default value for the xfrm6 gc threshold. * In ipv4 we set it to the route hash table size * 8, which - * is half the size of the maximaum route cache for ipv4. It + * is half the size of the maximum route cache for ipv4. It * would be good to do the same thing for v6, except the table is * constructed differently here. Here each table for a net namespace - * can have FIB_TABLE_HASHSZ entries, so lets go with the same + * can have FIB6_TABLE_HASHSZ entries, so lets go with the same * computation that we used for ipv4 here. Also, lets keep the initial * gc_thresh to a minimum of 1024, since, the ipv6 route cache defaults * to that as a minimum as well