Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 102e67d4 authored by Markus Elfring's avatar Markus Elfring Committed by David Teigland
Browse files

dlm: Improve a size determination in dlm_recover_waiters_pre()



Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent fbb10081
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5119,7 +5119,7 @@ void dlm_recover_waiters_pre(struct dlm_ls *ls)
	int wait_type, stub_unlock_result, stub_cancel_result;
	int dir_nodeid;

	ms_stub = kmalloc(sizeof(struct dlm_message), GFP_KERNEL);
	ms_stub = kmalloc(sizeof(*ms_stub), GFP_KERNEL);
	if (!ms_stub) {
		log_error(ls, "dlm_recover_waiters_pre no mem");
		return;