Displaying 4 results from an estimated 4 matches for "linux_s_isreg".
Did you mean:
linux_s_ifreg
2009 Apr 17
2
E2fsck and large file
How big is a file that e2fsck considers it to be a large file?
814611 blocks used (42.79%)
0 bad blocks
1 large file <----- that
Thanks
John Nelson
2020 Feb 12
0
[nbdkit PATCH 3/3] ext2: Add mode for letting client exportname choose file from image
...e'd have to do that manually.
*/
err = ext2fs_read_inode (h->fs, h->ino, &inode);
if (err != 0) {
- nbdkit_error ("%s: inode: %s", file, error_message (err));
+ nbdkit_error ("%s: inode: %s", fname, error_message (err));
goto err1;
}
if (!LINUX_S_ISREG (inode.i_mode)) {
- nbdkit_error ("%s: must be a regular file in the disk image", file);
+ nbdkit_error ("%s: must be a regular file in the disk image", fname);
goto err1;
}
@@ -204,7 +219,7 @@ ext2_prepare (struct nbdkit_next_ops *next_ops, void *nxdata, void *ha...
2020 Feb 12
4
[nbdkit PATCH 0/3] Make ext2 a filter
...ext2_open (int readonly)
*/
err = ext2fs_read_inode (h->fs, h->ino, &inode);
if (err != 0) {
- nbdkit_error ("%s: %s: inode: %s", disk, file, error_message (err));
+ nbdkit_error ("%s: inode: %s", file, error_message (err));
goto err1;
}
if (!LINUX_S_ISREG (inode.i_mode)) {
- nbdkit_error ("%s: %s: must be a regular file in the disk image",
- disk, file);
+ nbdkit_error ("%s: must be a regular file in the disk image", file);
goto err1;
}
@@ -182,17 +204,17 @@ ext2_open (int readonly)
file_flags...
2018 Jun 07
4
[PATCH nbdkit 0/4] plugins: Add new "ext2" plugin, for accessing ext2, ext3 or ext4 filesystems.
There is a small test provided. I tested this a lot more locally
and it seems pretty robust.
Rich.