Skip to content

Commit e3d24f9

Browse files
two-heartripatel-fd
authored andcommitted
vm: replace github links to master branch with permalinks
1 parent e345900 commit e3d24f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/flamenco/vm/syscall/fd_vm_syscall_util.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ fd_vm_syscall_sol_memcpy( /**/ void * _vm,
565565
FD_VM_CU_MEM_OP_UPDATE( vm, sz );
566566

567567
/* Exact same as memmove, except also check overlap.
568-
https://github.com/anza-xyz/agave/blob/master/programs/bpf_loader/src/syscalls/mem_ops.rs#L31 */
568+
https://github.com/anza-xyz/agave/blob/v2.2.17/programs/bpf_loader/src/syscalls/mem_ops.rs#L45 */
569569
FD_VM_MEM_CHECK_NON_OVERLAPPING( vm, src_vaddr, sz, dst_vaddr, sz );
570570

571571
return fd_vm_memmove( vm, dst_vaddr, src_vaddr, sz );
@@ -582,7 +582,7 @@ fd_vm_syscall_sol_memcmp( /**/ void * _vm,
582582
*_ret = 0;
583583
fd_vm_t * vm = (fd_vm_t *)_vm;
584584

585-
/* https://github.com/anza-xyz/agave/blob/master/programs/bpf_loader/src/syscalls/mem_ops.rs#L59 */
585+
/* https://github.com/anza-xyz/agave/blob/v2.2.17/programs/bpf_loader/src/syscalls/mem_ops.rs#L84 */
586586

587587
FD_VM_CU_MEM_OP_UPDATE( vm, sz );
588588

@@ -761,7 +761,7 @@ fd_vm_syscall_sol_memset( /**/ void * _vm,
761761
fd_vm_t * vm = (fd_vm_t *)_vm;
762762
*_ret = 0;
763763

764-
/* https://github.com/anza-xyz/agave/blob/master/programs/bpf_loader/src/syscalls/mem_ops.rs#L115 */
764+
/* https://github.com/anza-xyz/agave/blob/v2.2.17/programs/bpf_loader/src/syscalls/mem_ops.rs#L142 */
765765

766766
FD_VM_CU_MEM_OP_UPDATE( vm, sz );
767767

0 commit comments

Comments
 (0)