婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > Linux系統調用fsync函數詳解

Linux系統調用fsync函數詳解

熱門標簽:制作地圖標注 外呼系統怎么弄 地址高德地圖標注 商店地圖標注外賣入駐 新科火車站地圖標注點 地圖標注的牌子 外呼系統鏈接 桂林市ai電銷機器人公司 磁力導航地圖標注
功能描述:

同步內存中所有已修改的文件數據到儲存設備。

用法:
#include unistd.h>

int fsync(int fd);

參數:
fd:文件描述詞。

返回說明:
成功執行時,返回0。失敗返回-1,errno被設為以下的某個值
EBADF: 文件描述詞無效
EIO : 讀寫的過程中發生錯誤

EROFS, EINVAL:文件所在的文件系統不支持同步

強制把系統緩存寫入文件sync和fsync函數,, fflush和fsync的聯系和區別2010-05-10 11:25傳統的U N I X實現在內核中設有緩沖存儲器,大多數磁盤I / O都通過緩存進行。當將數據寫
到文件上時,通常該數據先由內核復制到緩存中,如果該緩存尚未寫滿,則并不將其排入輸出
隊列,而是等待其寫滿或者當內核需要重用該緩存以便存放其他磁盤塊數據時,再將該緩存排
入輸出隊列,然后待其到達隊首時,才進行實際的I / O操作。這種輸出方式被稱之為延遲寫
(delayed write)(Bach 〔1 9 8 6〕第3章詳細討論了延遲寫)。延遲寫減少了磁盤讀寫次數,但是
第4章文件和目錄8 7
下載
卻降低了文件內容的更新速度,使得欲寫到文件中的數據在一段時間內并沒有寫到磁盤上。當
系統發生故障時,這種延遲可能造成文件更新內容的丟失。為了保證磁盤上實際文件系統與緩
存中內容的一致性,U N I X系統提供了s y n c和f s y n c兩個系統調用函數。
#include unistd.h>
void sync(void);
int fsync(intf i l e d e s) ;
返回:若成功則為0,若出錯則為-1
s y n c只是將所有修改過的塊的緩存排入寫隊列,然后就返回,它并不等待實際I / O操作結束。
系統精靈進程(通常稱為u p d a t e )一般每隔3 0秒調用一次s y n c函數。這就保證了定期刷新內
核的塊緩存。命令s y n c ( 1 )也調用s y n c函數。
函數f s y n c只引用單個文件(由文件描述符f i l e d e s指定),它等待I / O結束,然后返回。f s y n c可
用于數據庫這樣的應用程序,它確保修改過的塊立即寫到磁盤上。比較一下f s y n c和O _ S Y N C標
志(見3 . 1 3節)。當調用f s y n c時,它更新文件的內容,而對于O _ S Y N C,則每次對文件調用w r i t e
函數時就更新文件的內容。


fflush和fsync的聯系和區別
[zz ] http://blog.chinaunix.net/u2/73874/showart_1421917.html

1.提供者fflush是libc.a中提供的方法,fsync是系統提供的系統調用。2.原形fflush接受一個參數FILE *.fflush(FILE *);fsync接受的時一個Int型的文件描述符。fsync(int fd);3.功能fflush:是把C庫中的緩沖調用write函數寫到磁盤[其實是寫到內核的緩沖區]。fsync:是把內核緩沖刷到磁盤上。

c庫緩沖-----fflush---------〉內核緩沖--------fsync-----〉磁盤


再轉一篇英文的

Write-back support
UBIFS supports write-back, which means that file changes do not go to the flash media straight away, but they are cached and go to the flash later, when it is absolutely necessary. This helps to greatly reduce the amount of I/O which results in better performance. Write-back caching is a standard technique which is used by most file systems like ext3 or XFS.
In contrast, JFFS2 does not have write-back support and all the JFFS2 file system changes go the flash synchronously. Well, this is not completely true and JFFS2 does have a small buffer of a NAND page size (if the underlying flash is NAND). This buffer contains last written data and is flushed once it is full. However, because the amount of cached data are very small, JFFS2 is very close to a synchronous file system.
Write-back support requires the application programmers to take extra care about synchronizing important files in time. Otherwise the files may corrupt or disappear in case of power-cuts, which happens very often in many embedded devices. Let's take a glimpse at Linux manual pages:
$ man 2 write
....
NOTES
A successful return from write() does not make any guarantee that data
has been committed to disk. In fact, on some buggy implementations, it
does not even guarantee that space has successfully been reserved for
the data. The only way to be sure is to call fsync(2) after you are
done writing all your data.
...
This is true for UBIFS (except of the "some buggy implementations" part, because UBIFS does reserves space for cached dirty data). This is also true for JFFS2, as well as for any other Linux file system.
However, some (perhaps not very good) user-space programmers do not take write-back into account. They do not read manual pages carefully. When such applications are used in embedded systems which run JFFS2 - they work fine, because JFFS2 is almost synchronous. Of course, the applications are buggy, but they appear to work well enough with JFFS2. But the bugs show up when UBIFS is used instead. Please, be careful and check/test your applications with respect to power cut tolerance if you switch from JFFS2 to UBIFS. The following is a list of useful hints and advices.
If you want to switch into synchronous mode, use the -o sync option when mounting UBIFS; however, the file system performance will drop - be careful; Also remember that UBIFS mounted in synchronous mode provides less guarantees than JFFS2 - refer this section for details.
Always keep in mind the above statement from the manual pages and run fsync() for all important files you change; of course, there is no need to synchronize "throw-away" temporary files; Just think how important is the file data and decide; and do not use fsync() unnecessarily, because this will hit the performance;
If you want to be more accurate, you may use fdatasync(), in which cases only data changes will be flushed, but not inode meta-data changes (e.g., "mtime" or permissions); this might be more optimal than using fsync() if the synchronization is done often, e.g., in a loop; otherwise just stick with fsync();
In shell, the sync command may be used, but it synchronizes whole file system which might be not very optimal; and there is a similar libc sync() function;
You may use the O_SYNC flag of the open() call; this will make sure all the data (but not meta-data) changes go to the media before the write() operation returns; but in general, it is better to use fsync(), because O_SYNC makes each write to be synchronous, while fsync() allows to accumulate many writes and synchronize them at once;
It is possible to make certain inodes to be synchronous by default by setting the "sync" inode flag; in a shell, the chattr +S command may be used; in C programs, use the FS_IOC_SETFLAGS ioctl command; Note, the mkfs.ubifs tool checks for the "sync" flag in the original FS tree, so the synchronous files in the original FS tree will be synchronous in the resulting UBIFS image.
Let us stress that the above items are true for any Linux file system, including JFFS2.
fsync() may be called for directories - it synchronizes the directory inode meta-data. The "sync" flag may also be set for directories to make the directory inode synchronous. But the flag is inherited, which means all new children of this directory will also have this flag. New files and sub-directories of this directory will also be synchronous, and their children, and so forth. This feature is very useful if one needs to create a whole sub-tree of synchronous files and directories, or to make all new children of some directory to be synchronous by default (e.g., /etc).
The fdatasync() call for directories is "no-op" in UBIFS and all UBIFS operations which change directory entries are synchronous. However, you should not assume this for portability (e.g., this is not true for ext2). Similarly, the "dirsync" inode flag has no effect in UBIFS.
The functions mentioned above work on file-descriptors, not on streams (FILE *). To synchronize a stream, you should first get its file descriptor using the fileno() libc function, then flush the stream using fflush(), and then synchronize the file using fsync() or fdatasync(). You may use other synchronization methods, but remember to flush the stream before synchronizing the file. The fflush() function flushes the libc-level buffers, while sync(), fsync(), etc flush kernel-level buffers.
Please, refer this FAQ entry for information about how to atomically update the contents of a file. Also, the Theodore Tso's article is a good reading.
Write-back knobs in Linux
Linux has several knobs in "/proc/sys/vm" which you may use to tune write-back. The knobs are global, so they affect all file-systems. Please, refer the "Documentation/sysctl/vm.txt" file fore more information. The file may be found in the Linux kernel source tree. Below are interesting knobs described in UBIFS context and in a simplified form.
dirty_writeback_centisecs - how often the Linux periodic write-back thread wakes up and writes out dirty data. This is a mechanism which makes sure all dirty data hits the media at some point.
dirty_expire_centisecs - dirty data expire period. This is maximum time data may stay dirty. After this period of time it will be written back by the Linux periodic write-back thread. IOW, the periodic write-back thread wakes up every "dirty_writeback_centisecs" centi-seconds and synchronizes data which was dirtied "dirty_expire_centisecs" centi-seconds ago.
dirty_background_ratio - maximum amount of dirty data in percent of total memory. When the amount of dirty data becomes larger, the periodic write-back thread starts synchronizing it until it becomes smaller. Even non-expired data will be synchronized. This may be used to set a "soft" limit for the amount of dirty data in the system.
dirty_ratio - maximum amount of dirty data at which writers will first synchronize the existing dirty data before adding more. IOW, this is a "hard" limit of the amount of dirty data in the system.
Note, UBIFS additionally has small write-buffers which are synchronized every 3-5 seconds. This means that most of the dirty data are delayed by dirty_expire_centisecs centi-seconds, but the last few KiB are additionally delayed by 3-5 seconds.
UBIFS write-buffer
UBIFS is asynchronous file-system (read this section for more information). As other Linux file-system, it utilizes the page cache. The page cache is a generic Linux memory-management mechanism. It may be very large and cache a lot of data. When you write to a file, the data are written to the page cache, marked as dirty, and the write returns (unless the file is synchronous). Later the data are written-back.
Write-buffer is an additional UBIFS buffer, which is implemented inside UBIFS, and it sits between the page cache and the flash. This means that write-back actually writes to the write-buffer, not directly to the flash.
The write-buffer is designated to speed-up UBIFS on NAND flashes. NAND flashes consist of NAND pages, which are usually 512, 2KiB or 4KiB in size. NAND page is the minimal read/write unit of NAND flash (see this section).
Write-buffer size is equivalent to NAND page size (so it is tiny comparing to the page cache). It's purpose is to accumulate small writes, and write full NAND pages instead of partially filled. Indeed, imagine we have to write 4 512-byte nodes with half a second interval, and NAND page size is 2KiB. Without write-buffer we would have to write 4 NAND pages and waste 6KiB of flash space, while write-buffer allows us to write only once and waste nothing. This means we write less, we create less dirty space so UBIFS garbage collector will have to do less work, we save power.
Well, the example shows an ideal situation, and even with the write-buffer we may waste space, for example in case of synchronous I/O, or if the data arrives with long time intervals. This is because the write-buffer has an associated timer, which flushes it every 3-5 seconds, even if it isn't full. We do this for data integrity reasons.
Of course, when UBIFS has to write a lot of data, it does not use write buffer. Only the last part of the data which is smaller than the NAND page ends up in the write-buffer and waits more for data, until it is flushed by the timer.
The write-buffer implementation is a little more complex, and we actually have several of them - one for each journal head. But this does not change the basic idea behind the write-buffer.
Few notes with regards to synchronization:
"sync()" also synchronizes all write-buffers;
"fsync(fd)" also synchronizes all write-buffers which contain pieces of "fd";
synchronous files, as well as files opened with "O_SYNC", bypass write-buffers, so the I/O is indeed synchronous for this files;
write-buffers are also bypassed if the file-system is mounted with the "-o sync" mount option.
Take into account that write-buffers delay the data synchronization timeout defined by "dirty_expire_centisecs" (see here) by 3-5 seconds. However, since write-buffers are small, only few data are delayed.
UBIFS in synchronous mode vs JFFS2
When UBIFS is mounted in synchronous mode (-o sync mount options) - all file system operations become synchronous. This means that all data are written to flash before the file-system operations return.
For example, if you write 10MiB of data to a file f.dat using the write() call, and UBIFS is in synchronous mode, then UBIFS guarantees that all 10MiB of data and the meta-data (file size and date changes) will reach the flash media before write() returns. And if a power cut happens after the write() call returns, the file will contain the written data.
The same is true for situations when f.dat has was opened with O_SYNC or has the sync flag (see man 2 chattr).
It is well-known that the JFFS2 file-system is synchronous (except a small write-buffer). However, UBIFS in synchronous mode is not the same as JFFS2 and provides somewhat less guarantees that JFFS2 does with respect to sudden power cuts.
In JFFS2 all the meta-data (like inode atime/mtime/ctime, inode size, UID/GID, etc) are stored in the data node headers. Data nodes carry 4KiB of (compressed) data. This means that the meta-data information is duplicated in many places, but this also means that every time JFFS2 writes a data node to the flash media, it updates inode size as well. So when JFFS2 mounts it scans the flash media, finds the latest data node, and fetches the inode size from there.
In practice this means that JFFS2 will write these 10MiB of data sequentially, from the beginning to the end. And if you have a power cut, you will just lose some amount of data at the end of the inode. For example, if JFFS2 starts writing those 10MiB of data, write 5MiB, and a power cut happens, you will end up with a 5MiB f.dat file. You lose only the last 5MiB.
Things are a little bit more complex in case of UBIFS, where data are stored in data nodes and meta-data are stored in (separate) inode nodes. The meta-data are not duplicated in each data node, like in JFFS2. UBIFS never writes data nodes beyond the on-flash inode size. If it has to write a data node and the data node is beyond the on-flash inode size (the in-memory inode has up-to-data size, but it is dirty and was not flushed yet), then UBIFS first writes the inode to the media, and then it starts writing the data. And if you have an interrupt, you lose data nodes and you have holes (or old data nodes, if you are overwriting). Lets consider an example.
User creates an empty file f.dat. The file is synchronous, or UBIFS is mounted in synchronous mode. User calls the write() function with a 10MiB buffer.
The kernel first copies all 10MiB of the data to the page cache. Inode size is changed to 10MiB as well and the inode is marked as dirty. Nothing has been written to the flash media so far. If a power cut happens at this point, the user will end up with an empty f.dat file.
UBIFS sees that the I/O has to be synchronous, and starts synchronizing the inode. First of all, it writes the inode node to the flash media. If a power cut happens at this moment, the user will end up with a 10MiB file which contains no data (hole), and if he read this file, he will get 10MiB of zeroes.
UBIFS starts writing the data. If a power cut happens at this point, the user will end up with a 10MiB file containing a hole at the end.
Note, if the I/O was not synchronous, UBIFS would skip the last step and would just return. And the actual write-back would then happen in back-ground. But power cuts during write-back could anyway lead to files with holes at the end.
Thus, synchronous I/O in UBIFS provides less guarantees than JFFS2 I/O - UBIFS has an effect of holes at the end of files. In ideal world applications should not assume anything about the contents of files which were not synchronized before a power-cut has happened. And "mainstream" file-systems like ext3 do not provide JFSS2-like guarantees.
However, UBIFS is sometimes used as a JFFS2 replacement and people may want it to behave the same way as JFFS2 if it is mounted synchronously. This is doable, but needs some non-trivial development, so this was not implemented so far. On the other hand, there was no strong demand. You may implement this as an exercise, or you may try to convince UBIFS authors to do this.
Synchronization exceptions for buggy applications
As this section describes, UBIFS is an asynchronous file-system, and applications should synchronize their files whenever it is required. The same applies to most Linux file-systems, e.g. XFS.
However, many applications ignore this and do not synchronize files properly. And there was a huge war between user-space and kernel developers related to ext4 delayed allocation feature. Please, see the Theodore Tso's blog post. More information may be found in this LWN article.
In short, the flame war was about 2 cases. The first case was about the atomic re-name, where many user-space programs did not synchronize the copy before re-naming it. The second case was about applications which truncate files, then change them. There was no final agreement, but the "we cannot ignore the real world" argument found ext4 developers' understanding, and there were 2 ext4 changes which help both problems.
Roughly speaking, the first change made ext4 synchronize files on close if they were previously truncated. This was a hack from file-system point of view, but it "fixed" applications which truncate files, write new contents, and close the files without synchronizing them.
The second change made ext4 synchronize the renamed file.
Well, this is not exactly correct description, because ext4 does not write the files synchronously, but actually initiates asynchronous write-out of the files, so the performance hit is not very high. For the truncation case this means that the file is synchronized soon after it is closed. For the re-name case this means that ext4 writes data before it writes the re-name meta-data.
However, the application writers should never rely on these things, because this is not portable. Instead, they should properly synchronize files. The ext4 fixes were because there were many broken user-space applications in the wild already.
We have plans to implement these features in UBIFS, but this has not been done yet. The problem is that UBI/MTD are fully synchronous and we cannot initiate asynchronous write-out, so we'd have to synchronously write files on close/rename, which is slow. So implementing these features would require implementing asynchronous I/O in UBI, which is a big job. But feel free to do this :-).

標簽:衡陽 仙桃 茂名 六盤水 三門峽 湘西 衡陽 慶陽

巨人網絡通訊聲明:本文標題《Linux系統調用fsync函數詳解》,本文關鍵詞  Linux,系統,調用,fsync,函數,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Linux系統調用fsync函數詳解》相關的同類信息!
  • 本頁收集關于Linux系統調用fsync函數詳解的相關信息資訊供網民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    精品国产成人系列| 日韩伦理av电影| 67194成人在线观看| 国产精品亚洲成人| 国产成人亚洲综合a∨猫咪| 麻豆国产欧美日韩综合精品二区| 成人免费一区二区三区视频| 国产精品成人一区二区三区夜夜夜| 久久尤物电影视频在线观看| 日韩免费观看高清完整版在线观看| 97精品国产露脸对白| 日本视频中文字幕一区二区三区| 亚洲欧洲在线观看av| 日本精品一级二级| 成人一区二区三区视频在线观看| 精品影视av免费| 国产一区激情在线| 久久精品国产色蜜蜜麻豆| 一区二区三区91| 亚洲成人自拍一区| 日日摸夜夜添夜夜添亚洲女人| 亚洲午夜精品17c| 日韩av一区二| 日本成人在线网站| 蜜桃av一区二区在线观看| 国产美女一区二区三区| 欧美羞羞免费网站| 欧美亚洲禁片免费| 99久久国产综合精品女不卡| 99re这里只有精品首页| 久久精品国产久精国产| fc2成人免费人成在线观看播放| 久草这里只有精品视频| 欧美性色综合网| 成人网男人的天堂| 91国偷自产一区二区开放时间 | 日韩av一区二区在线影视| 久久精品国产免费| 成人免费视频播放| 欧美高清视频不卡网| 欧美激情一区二区三区全黄| 亚洲黄网站在线观看| 一区二区三区资源| 国产一区二区久久| 91成人在线观看喷潮| 欧美日韩免费一区二区三区| 久久人人爽爽爽人久久久| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 一二三区精品视频| 亚洲人成网站精品片在线观看| 亚洲精品美国一| 美女视频一区在线观看| av一本久道久久综合久久鬼色| 欧美电视剧免费观看| 亚洲另类中文字| 国产福利不卡视频| 色综合久久久久久久久| 色视频一区二区| 91精品视频网| 亚洲女子a中天字幕| 日韩精品欧美精品| 国产乱理伦片在线观看夜一区| 国产91清纯白嫩初高中在线观看| 天天操天天色综合| 国产91精品一区二区麻豆网站 | 国产91精品一区二区麻豆亚洲| 欧美亚洲图片小说| 26uuu亚洲综合色欧美| 日韩欧美精品在线视频| 亚洲视频一区在线| 色嗨嗨av一区二区三区| 精品日韩99亚洲| 麻豆国产一区二区| 日韩欧美国产一区在线观看| 美洲天堂一区二卡三卡四卡视频| 制服视频三区第一页精品| 国产欧美精品区一区二区三区| 免费成人av资源网| 国产日韩欧美在线一区| 麻豆精品在线播放| 91精品办公室少妇高潮对白| 综合在线观看色| 成人理论电影网| 日韩影院精彩在线| 精品免费一区二区三区| 婷婷国产v国产偷v亚洲高清| 不卡的av网站| 久久久www免费人成精品| 欧美α欧美αv大片| 日韩中文字幕1| 成人精品在线视频观看| 久久网站热最新地址| 粉嫩av亚洲一区二区图片| 国产亚洲精久久久久久| 精品在线播放午夜| 欧美一级欧美三级| 亚洲精品日日夜夜| 国产98色在线|日韩| 日韩理论在线观看| 色综合久久久久综合体| 午夜伊人狠狠久久| 91麻豆.com| 国产欧美日韩在线看| 成人激情黄色小说| 日本成人中文字幕| 中文字幕中文乱码欧美一区二区| 欧美高清你懂得| 成人动漫在线一区| 国产精品无人区| 国产精品久久久久7777按摩| 91亚洲永久精品| 国产精品久久久久影院| 亚洲一区二区三区不卡国产欧美| 99久久99久久综合| 亚洲第一福利视频在线| 久久久精品免费观看| 成人av综合在线| 亚洲四区在线观看| 在线观看91视频| 免费欧美在线视频| 中文字幕视频一区| 色狠狠av一区二区三区| 日韩精品乱码免费| 国产丝袜美腿一区二区三区| 97se亚洲国产综合自在线观| 国产精品美女久久久久久久网站| 色呦呦日韩精品| 日本不卡中文字幕| 亚洲午夜精品久久久久久久久| 国产精品久久免费看| 久久久国产精品午夜一区ai换脸| 欧美性受xxxx| 久国产精品韩国三级视频| 亚洲自拍偷拍图区| 国产精品丝袜久久久久久app| 欧洲视频一区二区| 一区二区三区在线视频观看| 欧美伦理视频网站| 国产传媒日韩欧美成人| 国产精品一二一区| 91精品婷婷国产综合久久性色| 国产一区二区精品久久91| 久草在线在线精品观看| 午夜精品在线视频一区| 亚洲欧美日韩国产中文在线| 色天使久久综合网天天| 国内成人自拍视频| 三级不卡在线观看| 国产精品美女久久久久高潮| 在线亚洲高清视频| 91丨九色丨蝌蚪丨老版| 午夜电影一区二区三区| 亚洲午夜久久久久久久久电影院 | 国产精品毛片a∨一区二区三区| av在线不卡网| 丁香激情综合国产| 丁香婷婷综合色啪| 日韩福利视频网| 久久久久久久综合日本| 日韩一区二区电影| 色嗨嗨av一区二区三区| 色成人在线视频| 欧美军同video69gay| 色婷婷激情一区二区三区| 国产成人免费高清| 粉嫩13p一区二区三区| 免费看日韩a级影片| 性欧美疯狂xxxxbbbb| 亚洲一级在线观看| 亚洲欧洲精品天堂一级| 国产亚洲va综合人人澡精品| 欧美在线|欧美| 色嗨嗨av一区二区三区| 激情另类小说区图片区视频区| 偷拍自拍另类欧美| 国产午夜三级一区二区三| 久久久久久久久久久99999| 欧美丝袜第三区| 在线不卡欧美精品一区二区三区| av欧美精品.com| 91猫先生在线| 国产激情视频一区二区在线观看| 亚洲一区二区三区视频在线播放| 一区二区三区成人| 一区二区三区 在线观看视频 | 国产一区二区视频在线播放| 91在线云播放| 欧美日韩国产一区| 欧美国产成人在线| 亚洲精选免费视频| 久久成人精品无人区| 91香蕉视频黄| 日韩精品最新网址| 一区二区三区中文字幕| 国内精品伊人久久久久av一坑| 99精品视频中文字幕| 日韩视频一区二区三区在线播放| 综合久久国产九一剧情麻豆| 麻豆中文一区二区| 欧美午夜一区二区|