Skip to content

Commit 778aa2b

Browse files
Automatic merge of 'next' into merge (2026-04-09 10:43)
2 parents 5c2c0ba + e6ef4eb commit 778aa2b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/powerpc/net/bpf_jit_comp32.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,11 @@ void store_func_meta(u32 *image, struct codegen_context *ctx,
150150
* func_meta := argument count in first byte + cookie value
151151
*/
152152
/* Store lower word */
153-
EMIT(PPC_RAW_LI32(bpf_to_ppc(TMP_REG), (u32)func_meta));
153+
PPC_LI32(bpf_to_ppc(TMP_REG), (u32)func_meta);
154154
EMIT(PPC_RAW_STW(bpf_to_ppc(TMP_REG), _R1, func_meta_off));
155155

156156
/* Store upper word */
157-
EMIT(PPC_RAW_LI32(bpf_to_ppc(TMP_REG), (u32)(func_meta >> 32)));
157+
PPC_LI32(bpf_to_ppc(TMP_REG), (u32)(func_meta >> 32));
158158
EMIT(PPC_RAW_STW(bpf_to_ppc(TMP_REG), _R1, func_meta_off + 4));
159159
}
160160

0 commit comments

Comments
 (0)