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

Commit e97636b4 authored by Oleg Drokin's avatar Oleg Drokin Committed by Rusty Russell
Browse files

staging/lustre/o2iblnd: Don't use cpus_weight



cpus_weight and for_each_cpu_mask are deprecated, so replace them
with cpumask_weight and for_each_cpu respectively.

Signed-off-by: default avatarOleg Drokin <green@linuxhacker.ru>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent b25e74b5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -638,8 +638,8 @@ kiblnd_get_completion_vector(kib_conn_t *conn, int cpt)
		return 0;

	/* hash NID to CPU id in this partition... */
	off = do_div(nid, cpus_weight(*mask));
	for_each_cpu_mask(i, *mask) {
	off = do_div(nid, cpumask_weight(mask));
	for_each_cpu(i, mask) {
		if (off-- == 0)
			return i % vectors;
	}