mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 11:01:06 -04:00
staging/lustre/obdclass: Fix Multiple Assignments
Fix all multiple assignments on lustre/obdclass directory. Signed-off-by: Nathaniel Clark <nathaniel.l.clark@intel.com> Signed-off-by: Oleg Drokin <green@linuxhacker.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a3f16d017f
commit
89c6036497
@@ -123,8 +123,10 @@ static int llog_read_header(const struct lu_env *env,
|
||||
handle->lgh_last_idx = 0; /* header is record with index 0 */
|
||||
llh->llh_count = 1; /* for the header record */
|
||||
llh->llh_hdr.lrh_type = LLOG_HDR_MAGIC;
|
||||
llh->llh_hdr.lrh_len = llh->llh_tail.lrt_len = LLOG_CHUNK_SIZE;
|
||||
llh->llh_hdr.lrh_index = llh->llh_tail.lrt_index = 0;
|
||||
llh->llh_hdr.lrh_len = LLOG_CHUNK_SIZE;
|
||||
llh->llh_tail.lrt_len = LLOG_CHUNK_SIZE;
|
||||
llh->llh_hdr.lrh_index = 0;
|
||||
llh->llh_tail.lrt_index = 0;
|
||||
llh->llh_timestamp = ktime_get_real_seconds();
|
||||
if (uuid)
|
||||
memcpy(&llh->llh_tgtuuid, uuid,
|
||||
|
||||
Reference in New Issue
Block a user