Hi, Herbert,
First of all, thank you for pushing Camellia codes to the mainline.
I checked the linux-2.6.21.y.git and linux-2.6.git tree.
The patch I sent had the compat name for "camellia", but applied
code doesn't have it.
This causes that the user must use "cbc(camellia)" to use Camellia
algorithm for ESP(e.g, ip command).
This patch is comprehensive for user to use jst "camellia" keyword
while using Camellia algorithm.
I think this is the small bug, so could you push this patch both
linux-2.6.21.y.git and linux-2.6.git tree?
Regareds,
---
Noriaki TAKAMIYA <[EMAIL PROTECTED]>
>From 80299fc884ce6e1403ba4e0656a82f4fcb6986d0 Mon Sep 17 00:00:00 2001
From: Noriaki TAKAMIYA <[EMAIL PROTECTED]>
Date: Wed, 16 May 2007 16:45:01 +0900
Subject: [PATCH] [PATCH] [XFRM] Camellia: fixed to add compat name for Camellia.
fixed to add compat name for Camellia.
The user can use the "camellia" keyword instead of "cbc(camellia)"
while setting IPsec SA.
Signed-off-by: Noriaki TAKAMIYA <[EMAIL PROTECTED]>
---
net/xfrm/xfrm_algo.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/net/xfrm/xfrm_algo.c b/net/xfrm/xfrm_algo.c
index 6249a94..5d28ca9 100644
--- a/net/xfrm/xfrm_algo.c
+++ b/net/xfrm/xfrm_algo.c
@@ -267,6 +267,7 @@ static struct xfrm_algo_desc ealg_list[]
},
{
.name = "cbc(camellia)",
+ .compat = "camellia",
.uinfo = {
.encr = {
--
1.4.4