Searched refs:wfile (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-5.10/init/ |
H A D | initramfs.c | 321 static __initdata struct file *wfile; variable 339 wfile = filp_open(collected, openflags, mode); in do_name() 340 if (IS_ERR(wfile)) in do_name() 344 vfs_fchown(wfile, uid, gid); in do_name() 345 vfs_fchmod(wfile, mode); in do_name() 347 vfs_truncate(&wfile->f_path, body_len); in do_name() 371 if (xwrite(wfile, victim, body_len, &wfile_pos) != body_len) in do_copy() 376 vfs_utimes(&wfile->f_path, t); in do_copy() 378 fput(wfile); in do_copy() 383 if (xwrite(wfile, victi in do_copy() [all...] |
/kernel/linux/linux-6.6/init/ |
H A D | initramfs.c | 354 static __initdata struct file *wfile; variable 372 wfile = filp_open(collected, openflags, mode); in do_name() 373 if (IS_ERR(wfile)) in do_name() 378 vfs_fchown(wfile, uid, gid); in do_name() 379 vfs_fchmod(wfile, mode); in do_name() 381 vfs_truncate(&wfile->f_path, body_len); in do_name() 404 if (xwrite(wfile, victim, body_len, &wfile_pos) != body_len) in do_copy() 407 do_utime_path(&wfile->f_path, mtime); in do_copy() 408 fput(wfile); in do_copy() 415 if (xwrite(wfile, victi in do_copy() [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/cpufreq/ |
H A D | cpufreq.sh | 87 local wfile=$(ls -l $1/$file | awk '$1 ~ /^.*w.*/ { print $NF; }') 89 if [ ! -z $wfile ]; then
|
/kernel/linux/linux-6.6/tools/testing/selftests/cpufreq/ |
H A D | cpufreq.sh | 87 local wfile=$(ls -l $1/$file | awk '$1 ~ /^.*w.*/ { print $NF; }') 89 if [ ! -z $wfile ]; then
|
/kernel/linux/linux-5.10/fs/cifs/ |
H A D | inode.c | 2744 struct cifsFileInfo *wfile; local 2794 rc = cifs_get_writable_file(cifsInode, FIND_WR_ANY, &wfile); 2796 tcon = tlink_tcon(wfile->tlink); 2797 rc = tcon->ses->server->ops->flush(xid, tcon, &wfile->fid); 2798 cifsFileInfo_put(wfile);
|
/kernel/linux/linux-6.6/fs/smb/client/ |
H A D | inode.c | 3018 struct cifsFileInfo *wfile; local 3066 rc = cifs_get_writable_file(cifsInode, FIND_WR_ANY, &wfile); 3068 tcon = tlink_tcon(wfile->tlink); 3069 rc = tcon->ses->server->ops->flush(xid, tcon, &wfile->fid); 3070 cifsFileInfo_put(wfile);
|
Completed in 9 milliseconds