diff options
author | Patrick Caulfield <pcaulfie@redhat.com> | 2007-04-10 09:40:19 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-05-01 09:11:20 +0100 |
commit | fc7c44f03d95f20b5446d06f5bb9605cddd53203 (patch) | |
tree | 28bb0e7ad56e74a49bc7544e8a8c680afe520e93 /fs | |
parent | a43a49066d36612f3bb46653cdb265a89c235eff (diff) | |
download | linux-3.10-fc7c44f03d95f20b5446d06f5bb9605cddd53203.tar.gz linux-3.10-fc7c44f03d95f20b5446d06f5bb9605cddd53203.tar.bz2 linux-3.10-fc7c44f03d95f20b5446d06f5bb9605cddd53203.zip |
[DLM] Remove redundant assignment
This patch removes a redundant (and incorrect) assignment from compat_output
Signed-Off-By: Patrick Caulfield <pcaulfie@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/dlm/user.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/dlm/user.c b/fs/dlm/user.c index 3e746a6ebac..b0201ec325a 100644 --- a/fs/dlm/user.c +++ b/fs/dlm/user.c @@ -115,8 +115,6 @@ static void compat_input(struct dlm_write_request *kb, static void compat_output(struct dlm_lock_result *res, struct dlm_lock_result32 *res32) { - res32->length = res->length - (sizeof(struct dlm_lock_result) - - sizeof(struct dlm_lock_result32)); res32->user_astaddr = (__u32)(long)res->user_astaddr; res32->user_astparam = (__u32)(long)res->user_astparam; res32->user_lksb = (__u32)(long)res->user_lksb; |