rohan popat kumbhar

Results 25 comments of rohan popat kumbhar

>> it'd be appreciated if you followed the Issue template Yes, I will. >>at least uploaded the files required along with any patches applied (i.e. source code or Makefile edits.)....

Tried once again... Result is same, crash. This time one change in Makefile.windows, Line 41: WINVER ?= 0x0601

Hi, Please check attachment [hypervisor.zip](https://github.com/asamy/ksm/files/832916/hypervisor.zip)

I have no windows 10 installation. I will get one and try asap... :)

>>try without -DENABLE_PRINT Tried... no success. Also above variable is for linux build. next I modified Makefile.windows and disabled -DENABLE_DBGPRINT still crashing

I have discovered, that crash happens in DriverDispatch's switch case case KSM_IOCTL_SUBVERT:

ksm_subvert -> __ksm_init_cpu __ksm_init_cpu is run as dpc. now the crash occurs because the code from within __ksm_init_cpu calls inline functions that could be paged out. I am reviewing the...

NOTE: DO NOT USE DRIVER VERIFIER TO CHECK PAGEABLE CODE. MANY OTHER ERRORS WILL POP. For now stick to code review.

There is army of inline functions in code with static scope declaration, that too in header files. Functions from this pool are referenced in __ksm_init_cpu, which is run as dpc....

"There are no pageable functions in that path" To confirm it, I used Driver Verifier. When I turned on KSM.sys, I was greeted with BugCheck C2. I wanted to avoid...