GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
VOP_FSYNC(9) FreeBSD Kernel Developer's Manual VOP_FSYNC(9)

̾??

VOP_FSYNC?ե????륷???ƥ??Хåե??Υե??????ؤ??Ǥ??Ф?

<sys/param.h> <sys/vnode.h> int (struct vnode *vp, struct ucred *cred, int waitfor, struct thread *td)

???θƤӽФ??ϥե??????????Ƥα??줿?Хåե????Ǥ??Ф??ޤ??? sync(2) ?????? fsync(2) ?????ƥॳ?????????????뤿???˻??Ѥ????ޤ???

?????ϰʲ????̤??Ǥ???

vp
?ե??????? vnode??
cred
?ƤӽФ?¦?ξ?????
waitfor
?????Ϥδ?λ???ؿ????ԤĤ٤????ɤ?????
?????Ϥδ?λ??Ʊ??Ū???Ԥ??ޤ???
???Ƥ??????Ϥ򳫻Ϥ??ޤ????????????Ԥ??ޤ?????
?ե????륷???ƥ??? syncer ?ˤ??äƽ????ޤ??Ƥ??ʤ??ǡ????????Ϥ??ޤ???
td
?ƤӽФ??Ƥ??륹???åɡ?

???? waitfor ?? MNT_WAIT ?ޤ??? MNT_NOWAIT ?Τɤ??餫?ǡ??ؿ??????????˽񤭹??ߤν?λ???ԤĤ٤????ɤ????????ꤷ?ޤ???

?ե??????ϥ????ȥ????˥??å????????٤??Ǥ???

?ƤӽФ????????????????ˤ? 0 ???֤??졢 ?????Ǥʤ??????ˤ?Ŭ?ڤʥ??顼?????ɤ??֤????ޤ???

int
vop_fsync(struct vnode *vp, struct ucred *cred, int waitfor, struct thread *td)
{
    struct buf *bp;
    struct buf *nbp;
    struct timeval tv;
    int s;

loop:
    s = splbio();
    for (bp = vp->v_dirtyblkhd.lh_first; bp; bp = nbp) {
	nbp = bp->b_vnbufs.le_next;

	/*
	 * ???˽񤭹??????ΥХåե???̵?뤷?ޤ???
	 */
	if (bp->b_flags & B_BUSY)
	    continue;

	/*
	 * ?Хåե????????Ƥ??뤫??ǧ???ޤ???
	 */
	if ((bp->b_flags & B_DELWRI) == 0)
	    panic("vop_fsync: not dirty");

	vfs_bio_awrite(bp);
	splx(s);
	goto loop;
    }
    splx(s);

    if (waitfor == MNT_WAIT) {
	s = splbio();
	while (vp->v_numoutput) {
	    vp->v_flag |= VBWAIT;
	    tsleep((caddr_t)&vp->v_numoutput, PRIBIO + 1, "vopfsn");
	}
	splx(s);
#ifdef DIAGNOSTIC
	if (vp->v_dirtyblkhd.lh_first) {
	    vprint("vop_fsync: dirty", vp);
	    goto loop;
	}
#endif
    }

    /*
     * ?ǥ????????? vnode ???񤭽Ф??ޤ???
     */
    tv = time;
    return VOP_UPDATE(vp, &tv, &tv, waitfor == MNT_WAIT);
}

[ENOSPC]
?ե????륷???ƥब???դǤ???
[EDQUOT]
??????????Ķ?ᤷ?ޤ?????

vnode(9)

???Υޥ˥奢???ڡ????? Doug Rabson ???񤭤ޤ?????

July 24, 1996 FreeBSD 14.3-RELEASE

Search for    or go to Top of page |  Section 9 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.