锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲国产精品yw在线观看,色窝窝亚洲AV网在线观看,亚洲国产精品嫩草影院http://www.tkk7.com/fjzag/zh-cnSun, 11 May 2025 11:15:17 GMTSun, 11 May 2025 11:15:17 GMT60濡備綍鑷繁鍐欎竴涓狦DB榪滅▼璋冭瘯鐨勬湇鍔$http://www.tkk7.com/fjzag/articles/419464.htmlcsgeek?csgeek?Tue, 04 Nov 2014 00:21:00 GMThttp://www.tkk7.com/fjzag/articles/419464.htmlhttp://www.tkk7.com/fjzag/comments/419464.htmlhttp://www.tkk7.com/fjzag/articles/419464.html#Feedback0http://www.tkk7.com/fjzag/comments/commentRss/419464.htmlhttp://www.tkk7.com/fjzag/services/trackbacks/419464.html 鍐嶅垎浜竴綃囪嚜宸卞啓鐨勬湁鍏矴DB榪滅▼璋冭瘯搴曞眰鏈哄埗鐨勬枃绔犮傛枃涓弿榪頒簡濡備綍鑷繁鍔ㄦ墜鍐欎竴涓狦DB榪滅▼璋冭瘯鐨勬湇鍔$銆傚師鏂囬摼鎺ュ湪榪欙細
http://people.cs.pitt.edu/~anz28/papers/2013_kitten_gdb_tr.pdf

csgeek? 2014-11-04 08:21 鍙戣〃璇勮
]]>
铏氭嫙鏈轟腑鐨凥yercallhttp://www.tkk7.com/fjzag/articles/419463.htmlcsgeek?csgeek?Mon, 03 Nov 2014 23:59:00 GMThttp://www.tkk7.com/fjzag/articles/419463.htmlhttp://www.tkk7.com/fjzag/comments/419463.htmlhttp://www.tkk7.com/fjzag/articles/419463.html#Feedback0http://www.tkk7.com/fjzag/comments/commentRss/419463.htmlhttp://www.tkk7.com/fjzag/services/trackbacks/419463.html

What is a Hypercall?

Hypercall is an explicit call from Virtual Machine (VM) into the underlying VM Moniter (VMM). That is, a hypercall issued from the guest will cause a VM exit from the guest into the VMM. In this sense, it is kinda like syscall, which will result in a trap from userspace into  kernel space.  Thus, hypercall can serve as a communication approach between the guest and the underlying VMM. The guest can issue hypercalls via VMMCALL instruction on AMD SVM machine or VMCALL on Intel VMX machine.


Adding a Hypercall in Palacios

Palacios maintains a global hypercall map, which maintains the mapping between the unique hypercall number and the hypercall handler. (Each hypercall is associated with a unique hypercall number.). Therefore, to add a hypercal in Palacios, you need to:

  • Implement a handler for the hypercall.
  • Assign a unique hypercall number for the hypercall.
  • Register the hypercall handler and the hypercall number with Palacios.

Sample Example:

static int handle_hcall(struct guest_info * info, uint_t hcall_id, void * priv_data){
    unsigned 
long param1 = *(unsigned long *&info->vm_regs.rbx;
    unsigned 
long param2 = *(unsigned long *&info->vm_regs.rcx;
    unsigned 
long param3 = *(unsigned long *&info->vm_regs.rdx;
    V3_Print(
"param1=%lu param2=%lu param3=%lu\n", param1, parma2, param3);
    info
->vm_regs.rax = 0//return value of the hypercall
}

v3_register_hypercall(vm, HCALL_EXAMPLE_ID, handle_hcall, NULL);

Note: The hypercall management APIs in Palacios are contained in palacios/include/palacios/vmm_hypercall.h and palacios/src/palacios/vmm_hypercall.c.


Issuing Hypercalls from Palacios Guest

“Up to four arguments may be passed in rbx, rcx, rdx, and rsi respectively. The hypercall number should be placed in rax and the return value will be placed in rax.  No other registers will be clobbered unless explicitly stated by the particular hypercall.” (quoted from [1])

For exmaple, on a AMD SVM machine, a hypercall with 3 parameters can be issued via the following code:

#define VMMCALL ".byte 0x0F,0x01,0xD9\r\n" //VMMCALL instruction binary code

int hcall3(unsigned long hcall_id, unsigned long param1, unsigned long param2, unsigned long param3){
     
int ret;
     __asm__ 
volatile(
         VMMCALL
             : “
=a”(ret)
             : “a”(hcall_id), “b”(param1), “c”(param2), “d”(param3)
    );
    
return ret;
}


References:

[1] Linux KVM Hypercall



csgeek? 2014-11-04 07:59 鍙戣〃璇勮
]]>
Linux kernel profiling with hardware performance countershttp://www.tkk7.com/fjzag/articles/411356.htmlcsgeek?csgeek?Sat, 22 Mar 2014 01:06:00 GMThttp://www.tkk7.com/fjzag/articles/411356.htmlhttp://www.tkk7.com/fjzag/comments/411356.htmlhttp://www.tkk7.com/fjzag/articles/411356.html#Feedback0http://www.tkk7.com/fjzag/comments/commentRss/411356.htmlhttp://www.tkk7.com/fjzag/services/trackbacks/411356.html鍑犵瘒鍏充簬閫氳繃hard performance counter鏉ョ洃鎺х▼搴忥紙ipc, page faults, cache misses)錛?br />perf: https://perf.wiki.kernel.org/index.php/Tutorial
perf: linux鍐呮牳abi: http://web.eece.maine.edu/~vweaver/projects/perf_events/perf_event_open.html
perf: perf stat鐨勪竴涓柊鏇懼弬鏁版敮鎸佸懆鏈熸х殑鎵撳嵃鍑篶ounter鍐呭: https://patchwork.kernel.org/patch/2004891/
鏈夊叧performance hardware counter鐨勮櫄鎷熷寲: http://web.eece.maine.edu/~vweaver/projects/perf_events/virtualization.html
鍙︿竴涓湁鍏硃erformance profiling鐨勫父鐢ㄥ伐鍏?PAPI: http://icl.cs.utk.edu/projects/papi/wiki/Main_Page

csgeek? 2014-03-22 09:06 鍙戣〃璇勮
]]>
Linux涓氳繃/proc/stat絳夋枃浠惰綆桟pu浣跨敤鐜?/title><link>http://www.tkk7.com/fjzag/articles/317773.html</link><dc:creator>csgeek?</dc:creator><author>csgeek?</author><pubDate>Thu, 08 Apr 2010 14:57:00 GMT</pubDate><guid>http://www.tkk7.com/fjzag/articles/317773.html</guid><wfw:comment>http://www.tkk7.com/fjzag/comments/317773.html</wfw:comment><comments>http://www.tkk7.com/fjzag/articles/317773.html#Feedback</comments><slash:comments>20</slash:comments><wfw:commentRss>http://www.tkk7.com/fjzag/comments/commentRss/317773.html</wfw:commentRss><trackback:ping>http://www.tkk7.com/fjzag/services/trackbacks/317773.html</trackback:ping><description><![CDATA[     鎽樿: Normal 0 7.8 紓?0 2 false false false EN-US ZH-CN X-NONE ...  <a href='http://www.tkk7.com/fjzag/articles/317773.html'>闃呰鍏ㄦ枃</a><img src ="http://www.tkk7.com/fjzag/aggbug/317773.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.tkk7.com/fjzag/" target="_blank">csgeek?</a> 2010-04-08 22:57 <a href="http://www.tkk7.com/fjzag/articles/317773.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>鏈夊叧Windows騫沖彴涓婥PU浣跨敤鐜囩殑璁$畻http://www.tkk7.com/fjzag/articles/317774.htmlcsgeek?csgeek?Thu, 08 Apr 2010 14:57:00 GMThttp://www.tkk7.com/fjzag/articles/317774.htmlhttp://www.tkk7.com/fjzag/comments/317774.htmlhttp://www.tkk7.com/fjzag/articles/317774.html#Feedback0http://www.tkk7.com/fjzag/comments/commentRss/317774.htmlhttp://www.tkk7.com/fjzag/services/trackbacks/317774.html闃呰鍏ㄦ枃

csgeek? 2010-04-08 22:57 鍙戣〃璇勮
]]>
主站蜘蛛池模板: 57pao一国产成永久免费| j8又粗又长又硬又爽免费视频| 久久免费公开视频| 亚洲综合图色40p| 一级做a爱过程免费视| 亚洲乱码国产一区网址| 性生大片视频免费观看一级| 成人伊人亚洲人综合网站222| 成人免费观看男女羞羞视频| 亚洲日韩中文在线精品第一| 国产一级高青免费| 亚洲国产精品一区第二页 | 亚洲成Av人片乱码色午夜| 中文无码日韩欧免费视频| 亚洲中文字幕无码不卡电影| 无码国产精品一区二区免费式芒果 | 一级成人毛片免费观看| 久久夜色精品国产亚洲av| 成人免费一区二区三区| 久久精品亚洲一区二区三区浴池 | 国产亚洲精品自在久久| 一级毛片在线免费看| 亚洲一区二区三区无码国产| www.999精品视频观看免费| 精品无码专区亚洲| 在线亚洲97se亚洲综合在线| 久9这里精品免费视频| 亚洲男人天堂2018av| 免费一级特黄特色大片在线 | 国产午夜亚洲精品不卡电影| 亚洲综合熟女久久久30p| 2019中文字幕免费电影在线播放 | 亚洲七久久之综合七久久| 亚洲午夜无码AV毛片久久| 麻豆成人久久精品二区三区免费| 亚洲夂夂婷婷色拍WW47| 亚洲综合精品香蕉久久网| 1000部国产成人免费视频| 国产亚洲精品欧洲在线观看| 亚洲国产成人久久综合一区| 曰批全过程免费视频免费看|