search for: synclist

Displaying 2 results from an estimated 2 matches for "synclist".

Did you mean: rsynclist
2010 Oct 22
3
include-from or files-from
Hello List, i have got a large File-List which looks like this: ...snip... 165/165950*.jpg 166/166072*.jpg ...snap.... Now i would like to transfer only those file from that list. The rsync command: rsync -avz -F --files-from=/tmp/synclist-small.txt /mnt/ /data/ does not seem to work due to that wildcard. The command: rsync -avz -F --include-from=/tmp/synclist-small.txt /mnt/ /data/ syncs every files, not just the ones from my list. If i change my file list to: ...snip... + 165/165950* + 166/166072* - * ...snap... then everythi...
2003 Apr 11
14
PATCH: Forcible delaying of UFS (soft)updates
...vntblinit() { desiredvnodes = maxproc + cnt.v_page_count / 4; + TUNABLE_INT_FETCH("kern.maxvnodes", &desiredvnodes); minvnodes = desiredvnodes / 4; simple_lock_init(&mntvnode_slock); simple_lock_init(&mntid_slock); @@ -1119,7 +1124,7 @@ sched_sync(void) { struct synclist *slp; struct vnode *vp; - long starttime; + time_t starttime; int s; struct proc *p = updateproc; @@ -1127,8 +1132,6 @@ sched_sync(void) SHUTDOWN_PRI_LAST); for (;;) { - kproc_suspend_loop(p); - starttime = time_second; /* @@ -1198,8 +1201,25 @@ sched_sync(void) *...