diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52b4188..77a11ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: runs-on: ubuntu-latest needs: upload-artifact strategy: + fail-fast: false matrix: tag: - android12-5.10 @@ -58,7 +59,7 @@ jobs: upload-artifact: name: Upload LKM Source Code - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout Repository uses: actions/checkout@v4 @@ -66,5 +67,5 @@ jobs: - name: Upload LKM Source Code uses: actions/upload-artifact@v4 with: - name: ovo + name: ovo-${{ matrix.runs-on }}-${{ matrix.tag }} path: ovo \ No newline at end of file diff --git a/ovo/memory.c b/ovo/memory.c index d640b35..88d046d 100644 --- a/ovo/memory.c +++ b/ovo/memory.c @@ -296,8 +296,7 @@ int access_process_vm_by_pid(pid_t from, void __user*from_addr, pid_t to, void _ } int remap_process_memory(pid_t from, void *from_addr, pid_t to, void *to_addr) { -/* - struct task_struct *task_a, *task_b; +/* struct task_struct *task_a, *task_b; struct mm_struct *mm_a, *mm_b; struct vm_area_struct *vma_b; @@ -313,8 +312,6 @@ int remap_process_memory(pid_t from, void *from_addr, pid_t to, void *to_addr) { mm_a = get_task_mm(task_a); mm_b = get_task_mm(task_b); - -*/ - + */ return 0; }