Version 16 (modified by jazz, 15 years ago) (diff) |
---|
2009-05-08
- [午餐] 聯合泰國小吃店
File System : Lustre
- Lustre 2.0 Alpha 已經釋出了。下載點:
- 在 Lustre User Meeting 2009 的議程中,Peter Bojanic 提到了 Lustre 的 Roadmap,我比較注意的兩點是:(1) Write Back Cache 跟 (2) pNFS exports
- 目前全球 HPC 前十大有七個採用 Lustre 1.6 版本。而 I/O 最高紀錄保持者為 190 GB/s,這也意味著先前測試到 2 GB/s 算是小 case 啦!!
- 1.6 版將於 2010 四月停止維護,因此想要玩的可以開始轉換到 1.8 了。
Linux Programming
- [專案] 在 Windows 底下常用的 inportb() 跟 outportb(),在 Linux 底下可以用 port I/O (有很多種 outb(), outw(), outl(), outsb(), outsw(), outsl(), inb(), inw(), inl(), insb(), insw(), insl() ) 來實現。而在 VxWorks 則用 sysInByte() 跟 sysOutByte() 來實現
static int outportb(unsigned int port, unsigned int val, int size) { static int iopldone = 0; #ifdef DEBUG printf("outportb(0x%04x)<=0x%02x\n", port, val); #endif if (port > 1024) { if (!iopldone && iopl(3)) { fprintf(stderr, "iopl(): %s\n", strerror(errno)); return 1; } iopldone++; } else if (ioperm(port,size,1)) { fprintf(stderr, "ioperm(%x): %s\n", port, strerror(errno)); return 1; } if (size == 4) outl(val, port); else if (size == 2) outw(val&0xffff, port); else outb(val&0xff, port); return 0; } static int inportb(unsigned int port, int size) { static int iopldone = 0; unsigned int val=0; if (port > 1024) { if (!iopldone && iopl(3)) { fprintf(stderr, " iopl(): %s\n", strerror(errno)); return 0; } iopldone++; } else if (ioperm(port,size,1)) { fprintf(stderr, " ioperm(%x): %s\n", port, strerror(errno)); return 0; } if (size == 4) { val=inl(port); #ifdef DEBUG printf("Read_port:(0x%04x)=>0x%08x\n", port, val); #endif } else if (size == 2) { val=inw(port); #ifdef DEBUG printf("Read_port:(0x%04x)=>0x%04x\n", port, val); #endif } else { val=inb(port); #ifdef DEBUG printf("Read_port:(0x%04x)=>0x%02x\n", port, val); #endif } return(val); }
Fast Boot
- Concurrent boot sequence - 一些快速開機的參考資料
- 日本研發的 Wrap 2 技術,讓 Linux 休眠的復原時間更短 - 原始新聞
- Fred's blog: 快速開機實作瓶頸簡記
- Booting Debian in 14 seconds
- Moblin Fast Boot in 5 seconds
- Linux booting (include fastboot) surf log
- 2010-03-07 : Innovators get Linux to boot in 1 second - MontaVista 說明了簡化開機流程的三個階段,看樣子並沒有一個軟體可以幫忙簡化這個步驟,只是告訴大家一秒鐘開機完畢是可以辦到的。
Attachments (5)
- lustre_eol.png (85.4 KB) - added by jazz 16 years ago.
- lustre_io_record.png (89.7 KB) - added by jazz 16 years ago.
- lustre_roadmap.png (108.0 KB) - added by jazz 16 years ago.
- sf.net_cca09.jpg (72.7 KB) - added by jazz 16 years ago.
- Boot_Linux_in_1_second.pdf (180.3 KB) - added by jazz 14 years ago.
Download all attachments as: .zip