From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Randy.Dunlap" Subject: Re: [PATCH 13/13: eCryptfs] Debug functions Date: Thu, 4 May 2006 13:30:29 -0700 Message-ID: <20060504133029.9db762d9.rdunlap@xenotime.net> References: <20060504031755.GA28257@hellewell.homeip.net> <20060504034334.GL28613@hellewell.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: akpm@osdl.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, viro@ftp.linux.org.uk, mike@halcrow.us, mhalcrow@us.ibm.com, mcthomps@us.ibm.com, toml@us.ibm.com, yoder1@us.ibm.com, jmorris@namei.org, sct@redhat.com, ezk@cs.sunysb.edu, dhowells@redhat.com Return-path: Received: from xenotime.net ([66.160.160.81]:39565 "HELO xenotime.net") by vger.kernel.org with SMTP id S1030316AbWEDU2F (ORCPT ); Thu, 4 May 2006 16:28:05 -0400 Received: from midway.site ([71.111.157.99]) by xenotime.net for ; Thu, 4 May 2006 13:28:04 -0700 To: Phillip Hellewell In-Reply-To: <20060504034334.GL28613@hellewell.homeip.net> Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Wed, 3 May 2006 21:43:34 -0600 Phillip Hellewell wrote: > --- > debug.c | 122 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 files changed, 122 insertions(+) > > Index: linux-2.6.17-rc3-mm1-ecryptfs/fs/ecryptfs/debug.c > =================================================================== > --- /dev/null 1970-01-01 00:00:00.000000000 +0000 > +++ linux-2.6.17-rc3-mm1-ecryptfs/fs/ecryptfs/debug.c 2006-05-02 19:35:59.000000000 -0600 > @@ -0,0 +1,122 @@ > + > +/** > + * Dump hexadecimal representation of char array > + * > + * @param data > + * @param bytes > + */ > +void ecryptfs_dump_hex(char *data, int bytes) > +{ Use proper kernel-doc notation/format, please. (did someone already say this?) --- ~Randy