goto free_btf;
                }
 
-               /* check insn_offset */
+               /* check insn_off */
                if (i == 0) {
-                       if (krecord[i].insn_offset) {
+                       if (krecord[i].insn_off) {
                                verbose(env,
-                                       "nonzero insn_offset %u for the first func info record",
-                                       krecord[i].insn_offset);
+                                       "nonzero insn_off %u for the first func info record",
+                                       krecord[i].insn_off);
                                ret = -EINVAL;
                                goto free_btf;
                        }
-               } else if (krecord[i].insn_offset <= prev_offset) {
+               } else if (krecord[i].insn_off <= prev_offset) {
                        verbose(env,
                                "same or smaller insn offset (%u) than previous func info record (%u)",
-                               krecord[i].insn_offset, prev_offset);
+                               krecord[i].insn_off, prev_offset);
                        ret = -EINVAL;
                        goto free_btf;
                }
 
-               if (env->subprog_info[i].start != krecord[i].insn_offset) {
+               if (env->subprog_info[i].start != krecord[i].insn_off) {
                        verbose(env, "func_info BTF section doesn't match subprog layout in BPF program\n");
                        ret = -EINVAL;
                        goto free_btf;
                        goto free_btf;
                }
 
-               prev_offset = krecord[i].insn_offset;
+               prev_offset = krecord[i].insn_off;
                urecord += urec_size;
        }
 
                return;
 
        for (i = 0; i < env->subprog_cnt; i++)
-               env->prog->aux->func_info[i].insn_offset = env->subprog_info[i].start;
+               env->prog->aux->func_info[i].insn_off = env->subprog_info[i].start;
 }
 
 /* check %cur's range satisfies %old's */