Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756119AbZAACgb (ORCPT ); Wed, 31 Dec 2008 21:36:31 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753526AbZAACgX (ORCPT ); Wed, 31 Dec 2008 21:36:23 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:58495 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753376AbZAACgW (ORCPT ); Wed, 31 Dec 2008 21:36:22 -0500 Date: Thu, 1 Jan 2009 02:36:20 +0000 From: Al Viro To: Duane Griffin Cc: Evgeniy Dushistov , linux-kernel@vger.kernel.org Subject: Re: [PATCH 4/4] ufs: copy symlink data into the correct union member Message-ID: <20090101023620.GD28946@ZenIV.linux.org.uk> References: <1230742208-23972-1-git-send-email-duaneg@dghda.com> <1230742208-23972-2-git-send-email-duaneg@dghda.com> <1230742208-23972-3-git-send-email-duaneg@dghda.com> <1230742208-23972-4-git-send-email-duaneg@dghda.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1230742208-23972-4-git-send-email-duaneg@dghda.com> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1344 Lines: 30 On Wed, Dec 31, 2008 at 04:50:08PM +0000, Duane Griffin wrote: > Copy symlink data into the union member it is accessed through. Although > this shouldn't make a difference to behaviour it makes the code easier > to follow and grep through. It may also prevent problems if the > struct/union definitions change in the future. > > Signed-off-by: Duane Griffin > --- > fs/ufs/namei.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/fs/ufs/namei.c b/fs/ufs/namei.c > index e3a9b1f..3884730 100644 > --- a/fs/ufs/namei.c > +++ b/fs/ufs/namei.c > @@ -147,7 +147,7 @@ static int ufs_symlink (struct inode * dir, struct dentry * dentry, > } else { > /* fast symlink */ > inode->i_op = &ufs_fast_symlink_inode_operations; > - memcpy((char*)&UFS_I(inode)->i_u1.i_data,symname,l); > + memcpy((char *) &UFS_I(inode)->i_u1.i_symlink, symname, l); Just what are these cast and & doing there? i_symlink is an array of u8, for fsck sake; taking its address is a pointless obfuscation. And memcpy() is just as fine with u8 * as it is with char *... -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/