wufei.org wufei.org

wufei.org

兼济天下则达 独善其身则穷

Linux kernel & Storage & Virtualization

http://www.wufei.org/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR WUFEI.ORG

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

October

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Tuesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.4 out of 5 with 8 reviews
5 star
3
4 star
1
3 star
2
2 star
0
1 star
2

Hey there! Start your review of wufei.org

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

2.3 seconds

CONTACTS AT WUFEI.ORG

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
兼济天下则达 独善其身则穷 | wufei.org Reviews
<META>
DESCRIPTION
Linux kernel & Storage & Virtualization
<META>
KEYWORDS
1 toggle navigation
2 兼济天下则达 独善其身则穷
3 blog
4 kernel storage virtualization
5 posts
6 memory barrier
7 slow fsync
8 scatterlist in xen blkfront
9 gettimeofday and vdso
10 perl reference list
CONTENT
Page content here
KEYWORDS ON
PAGE
toggle navigation,兼济天下则达 独善其身则穷,blog,kernel storage virtualization,posts,memory barrier,slow fsync,scatterlist in xen blkfront,gettimeofday and vdso,perl reference list,linux filesystem primer,sched hierarchy,crash howto,git intro,dedupe in backup,tool 3
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

兼济天下则达 独善其身则穷 | wufei.org Reviews

https://wufei.org

Linux kernel & Storage & Virtualization

INTERNAL PAGES

wufei.org wufei.org
1

Slow fsync

http://wufei.org/2016/09/03/slow-fsync

Sep 3, 2016 JamesW. 转载须注明出处 www.wufei.org. Fsync对于Data Integrity的重要性不言而喻, 在我们的系统中fsync主要来源于两个地方:. Syslogd, 每条log之后都会调用fsync, 如果记录的log过多的话, 对fsync的性能有很高要求. 当然每条log之后都fsync是可以讨论的, 一个更直接的方法就是减少syslog的数量, 这个基本上是可以做到的. SQLite, 我们使用SQLite保存registry, registry里面不只是一些静态的configs, 也包括一些runtime的状态, 有些SQLite的访问甚至出现在data path上. 如果这些SQLite操作不能在规定时间完成, 我们会主动关闭业务逻辑, 所以SQLite的访问, 特别是写访问的速度对于我们至关重要. SQLite的写操作可想而知需要调用fsync, 当大量的fsync出现在系统中时, 对I/O的性能就是很大的挑战. 在继续讨论之前, 先来看看简化过的I/O stack:. 在我的博客 Linux Filesystem Primer. EXT4通过...

2

Crash Howto

http://wufei.org/2016/04/01/crash

Apr 1, 2016 JamesW. 转载须注明出处 www.wufei.org. Crash struct vm area struct -o struct vm area struct { [0] struct mm struct *vm mm; [4] long unsigned int vm start; . [44] long unsigned int vm offset; [48] struct file *vm file; [52] long unsigned int vm pte; } SIZE: 56 crash task struct -o ffff8100145d2080 struct task struct { [ffff8100145d2080] volatile long int state; [ffff8100145d2088] struct thread info *thread info; [ffff8100145d2090] atomic t usage; . Struct task group { . struct cfs rq * cfs rq; }; ...

3

Dedupe in Backup

http://wufei.org/2016/02/19/dedupe-in-backup

Feb 19, 2016 JamesW. 转载须注明出处 www.wufei.org. Post-process vs. Inline. WD) Arkeia Progressive Dedupe. ExaGrid Zone Level Dedupe. 通过识别数据中相同的部分, 并只保留其中的一份拷贝, 这个过程就是去重(Dedupe). 往往 Dedupe和压缩一起使用, 而且都能起到减少数据长度从而提高磁盘利用率, 这是两种不一样的技术. 自从Data Domain把Dedupe技术在Backup领域发扬光大之后, Dedupe就成为了Backup领域的标配. 通常Backup的数据都有大量的重复, 所有Backup解决方案都必须包括这样那样的Dedupe, 而且 现在越来越多的Primary Storage也都引入了Dedupe的功能. Backup的过程其实就是把数据从Source端搬到Target端. 比如你的笔记上安装一个Avamer Client, Backup的时候这个Client就会把硬盘上的文件复制到Avamer的后端. Post-process vs. Inline. Post-...

4

RAID, RAID, RAID

http://wufei.org/2016/05/08/raid

RAID, RAID, RAID. May 8, 2016 JamesW. 转载须注明出处 www.wufei.org. RAID 4 vs. RAID 5. RAID 10 vs RAID 01. Rebuild Time and MTTDL. Copy on Partial-Fail Drive. Optimization in Diagonal Parity. Differential RAID or Not. RAID 以 Stripe 为单位对数据提供保护, Stripe 又划分成 Stripe Unit 分布到所有的成员硬盘中, 往往一个 Stripe 会包含多份数据以及校验和. 在基本的 RAID 实现里, 通过一个简单的映射把 RAID 虚拟出来的逻辑磁盘地址对应到相应的物理硬盘和 LBA 上, 以下图为例, D1, D2 到 Dn 形成一个连续的地址空间. 在复杂的 RAID 实现里, 特别是一些实现压缩, 去重的商用系统, RAID 内部会维护一个虚拟磁盘地址到物理磁盘的映射, 这种简单的映射关系不复存在. SNIA 标准化了 0-6 共 7 个级别的 RAID. RAID 6: b...

5

scatterlist in xen-blkfront

http://wufei.org/2016/08/21/scatterlist-in-xen-blkfront

Aug 21, 2016 JamesW. 转载须注明出处 www.wufei.org. Persistent grants in xvd. Persistent grants in xvd. 由于我们用的内核版本是v3.2, 需要backport这个patch. 顺便说一下, v3.2真的不是Xen ready, 还缺少很多feature和bugfix, 不过对于开发人员来说却不见得是什么坏事, 刚好可以更深入的理解这些东西. Bash-3.00# parted /dev/xvdb mklabel gpt -bash-3.00# parted /dev/xvdb p Error: Can't have the end before the start! 跟踪parted的源码的话, 可以发现该错误是由于解析GPT的分区表时出错. 可以肯定的是, 除了使用parted之外, 我们并没有故意地去破坏分区表. 而且经过一番测试, 还可以确定的是, 这个bug就是backport persistent grants引入的. LBA 0 - Protective MBR, 0x55aa. Bash-3.0...

UPGRADE TO PREMIUM TO VIEW 10 MORE

TOTAL PAGES IN THIS WEBSITE

15

OTHER SITES

wufei-x-sally.deviantart.com wufei-x-sally.deviantart.com

Wufei-x-Sally - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Founded 4 Years ago. We're a group for fans of the Gundam Wing pairing Wufei Chang/Sally Po. We're a group for fans of the Gundam Wing pairing Wufei Chang/Sally Po. Founded 4 Years ago. Jul 29, 2011. Div div&#...

wufei.dk wufei.dk

::Worshipping Wufei:: - Spite's Wufei Shrine

Made for: 1024x768 - IE 4.0 - Wufei worshippers. Click here for the old site.

wufei.info wufei.info

Default Web Site Page

If you are the owner of this website, please contact your hosting provider: webmaster@wufei.info. It is possible you have reached this page because:. The IP address has changed. The IP address for this domain may have changed recently. Check your DNS settings to verify that the domain is set up correctly. It may take 8-24 hours for DNS changes to propagate. It may be possible to restore access to this site by following these instructions. For clearing your dns cache.

wufei.myplace.com wufei.myplace.com

myplace.com - This website is for sale! - myplace Resources and Information.

This domain may be for sale. For more information please contact Dave Evanson. dave.evanson@Sedo.com. This page provided to the domain owner free. By Sedo's Domain Parking. Disclaimer: Domain owner and Sedo maintain no relationship with third party advertisers. Reference to any specific service or trade mark is not controlled by Sedo or domain owner and does not constitute or imply its association, endorsement or recommendation.

wufei.net wufei.net

wufei.net

wufei.org wufei.org

兼济天下则达 独善其身则穷

Backup Brain to Brains. Linux I/O data flow. Sep 16, 2016. Sep 10, 2016. Plugging for 2x RAID sequential throughput. Sep 4, 2016. Sep 3, 2016. Aug 21, 2016. Slow memory access on Xen guest. Aug 19, 2016. Jul 3, 2016. Jun 26, 2016. Jun 13, 2016. RAID, RAID, RAID. May 8, 2016. Apr 2, 2016. Apr 1, 2016. Feb 24, 2016. Feb 19, 2016. Linux I/O data flow. Sep 16, 2016. Plugging for 2x RAID sequential throughput. Sep 4, 2016. Sep 3, 2016. Jun 13, 2016. RAID, RAID, RAID. May 8, 2016. Feb 19, 2016. Jun 26, 2016.

wufei.skyrock.com wufei.skyrock.com

Blog de wufei - Oppai-chan en force XD - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Oppai-chan en force XD. Deux trois mots pour dire d avoir du texte par ici :-p. Mise à jour :. Abonne-toi à mon blog! Pour mon premier article je vais mettre un souvenir recent c etait le 30 mars dernier a l animansion *qui pour dire au passage etait trop cool *. Bon dans l ordre :. En haut a gauche anais *pour pas dire vegetalis * apres mwa *Oppai-chan* et puis senpai. Ou poster avec :. Posté le mercredi 02 avril 2008 08:06. N'oublie pas que les propos injur...

wufei.tuts-china.com wufei.tuts-china.com

日本人の皆さま、タオバオに出店しませんか?

Http:/ www.tuts-china.com/2010/04/post-123.html. Http:/ www.tuts-china.com/2010/02/post-98.html. C) 2015 無料ブログ JUGEM.

wufei01.skyrock.com wufei01.skyrock.com

wufei01's blog - K_Yazn - Skyrock.com

19/02/2006 at 7:24 AM. 31/03/2011 at 3:56 AM. Subscribe to my blog! O$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $o. O o$ $ $ o$ $ o o$ $. Oo $ $ o$ $ $o o$ $. Oooo $ $o$ $ $ $ $ $. Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.14) if someone makes a complaint. Please enter the sequence of characters in the field below. Posted on Tuesday, 27 January 2009 at 9:31 AM. Posted on Thursday, 10 July 2008 at 2:55 AM.

wufei12.skyrock.com wufei12.skyrock.com

wufei12's blog - Blog de wufei12 - Skyrock.com

More options ▼. Subscribe to my blog. Created: 30/04/2016 at 7:47 AM. Updated: 30/04/2016 at 7:47 AM. This blog has no articles. Subscribe to my blog! Post to my blog. Here you are free.

wufei3799.eju.cn wufei3799.eju.cn

吴飞设计师网-室内设计室内装修设计网站

Http:/ wufei3799.eju.cn/ 收藏该网址. 上海 - 徐汇区 徐汇区设计师. 你好 我是做电视背景 酒店 玄关 KTV 夜场等艺术墙砖厂家 大家多多关照 服务电话 1337757.