From patchwork Mon Nov 15 03:04:51 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joe Perches X-Patchwork-Id: 324162 X-Patchwork-Delegate: ericvh@gmail.com Received: from lists.sourceforge.net (lists.sourceforge.net [216.34.181.88]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oAF36R2S030071 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 15 Nov 2010 03:06:48 GMT Received: from localhost ([127.0.0.1] helo=sfs-ml-3.v29.ch3.sourceforge.com) by sfs-ml-3.v29.ch3.sourceforge.com with esmtp (Exim 4.69) (envelope-from ) id 1PHpOR-0004wJ-8u; Mon, 15 Nov 2010 03:06:07 +0000 Received: from sog-mx-4.v43.ch3.sourceforge.com ([172.29.43.194] helo=mx.sourceforge.net) by sfs-ml-3.v29.ch3.sourceforge.com with esmtp (Exim 4.69) (envelope-from ) id 1PHpOP-0004wD-R2 for v9fs-developer@lists.sourceforge.net; Mon, 15 Nov 2010 03:06:05 +0000 X-ACL-Warn: Received: from mail.perches.com ([173.55.12.10]) by sog-mx-4.v43.ch3.sourceforge.com with esmtp (Exim 4.69) id 1PHpOL-0006kI-KR for v9fs-developer@lists.sourceforge.net; Mon, 15 Nov 2010 03:06:05 +0000 Received: from Joe-Laptop.home (unknown [192.168.1.162]) by mail.perches.com (Postfix) with ESMTP id C9F2E2436F; Sun, 14 Nov 2010 19:04:23 -0800 (PST) From: Joe Perches To: Jiri Kosina Date: Sun, 14 Nov 2010 19:04:51 -0800 Message-Id: X-Mailer: git-send-email 1.7.3.1.g432b3.dirty In-Reply-To: References: X-Spam-Score: 0.1 (/) X-Spam-Report: Spam Filtering performed by mx.sourceforge.net. See http://spamassassin.org/tag/ for more details. -0.0 T_RP_MATCHES_RCVD Envelope sender domain matches handover relay domain 0.1 AWL AWL: From: address is in the auto white-list X-Headers-End: 1PHpOL-0006kI-KR Cc: Eric Van Hensbergen , Ron Minnich , linux-kernel@vger.kernel.org, Latchesar Ionkov , v9fs-developer@lists.sourceforge.net Subject: [V9fs-developer] [PATCH 32/44] fs/9p: Remove unnecessary semicolons X-BeenThere: v9fs-developer@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: v9fs-developer-bounces@lists.sourceforge.net X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Mon, 15 Nov 2010 03:06:48 +0000 (UTC) diff --git a/fs/9p/acl.c b/fs/9p/acl.c index 12d6023..bc4da9a 100644 --- a/fs/9p/acl.c +++ b/fs/9p/acl.c @@ -28,7 +28,7 @@ static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name) { ssize_t size; void *value = NULL; - struct posix_acl *acl = NULL;; + struct posix_acl *acl = NULL; size = v9fs_fid_xattr_get(fid, name, NULL, 0); if (size > 0) { diff --git a/fs/9p/xattr.c b/fs/9p/xattr.c index 43ec7df..d288773 100644 --- a/fs/9p/xattr.c +++ b/fs/9p/xattr.c @@ -133,7 +133,7 @@ int v9fs_xattr_set(struct dentry *dentry, const char *name, "p9_client_xattrcreate failed %d\n", retval); goto error; } - msize = fid->clnt->msize;; + msize = fid->clnt->msize; while (value_len) { if (value_len > (msize - P9_IOHDRSZ)) write_count = msize - P9_IOHDRSZ;