Closed mike-petersen-ni closed 2 years ago
There was just one conflict.
kernel/time/timekeeping.c
line 1325@ours, 1330@theirs, 1324@resolved:
++<<<<<<< ours + audit_tk_injoffset(ts_delta); ++||||||| base ++ if (!ret) ++ audit_tk_injoffset(ts_delta); ++======= + if (!ret) { + audit_tk_injoffset(ts_delta); + add_device_randomness(ts, sizeof(*ts)); + } ++>>>>>>> theirs
Resolved in place by taking theirs but removing the conditional (as our patch removed the control flow making ret necessary):
ret
audit_tk_injoffset(ts_delta); add_device_randomness(ts, sizeof(*ts));
Conflicts
There was just one conflict.
kernel/time/timekeeping.c
line 1325@ours, 1330@theirs, 1324@resolved:
Resolved in place by taking theirs but removing the conditional (as our patch removed the control flow making
ret
necessary):Testing