Add local branch to remote: git push -u origin new_branch
Delete remote branch: git push -u origin :del_branch
Tuesday, August 13, 2013
Saturday, August 10, 2013
Feedback after weekly sync
There are some feedback from Jan after sync of this weekend.
- Preemption timer: Currently "save preemption timer value on exit" is not supported, so preempt exit from L2->L0 cannot trace its preemption timer value and preemption timer value is reset when L0->L2. But L2->L0->L1 is not one case of L2->L1 exit, so preemption timer value should be kept.
- Write test case for this bug.
- Write "save preemption timer value on exit" support for KVM and nested KVM.
- Instruction interception: Refine the codes using table-driven structure.
- CR0/4 shadowing has some big problems
- Some of flags are "owned" by L1 and some are shadowed. Check owned flags with vcpu->arch.cr0_guest_owned_bits and vcpu->arch.cr4_guest_owned_bits.
- Write a test where in once case L1 shadows the bit and in the other it leave it to L2.
- For CR0, we can test TS (owned by L1) and MP (shadow); for CR4, we can test DE (owned by L1) and TSD (shadow).
- PAT and EFER looks good
- For I/O bitmap: Needs to change the test cases totally.
- Test low parts and high parts
- Test in and out
- Test access width
- Test pass and trap, and "partial" pass or trap
- Test corner cases: 0x0, 0x7FFF, 0x8000, 0xFFFF, overruns (4-bytes on address 0x7FFF, and 0xFFFF)
Subscribe to:
Posts (Atom)