wok view ext4magic/stuff/patches/ext4magic-0.3.2-i_dir_acl.patch @ rev 25561

created recipe for ext4magic
author Hans-G?nter Theisgen
date Sun Apr 30 06:26:09 2023 +0100 (13 months ago)
parents
children
line source
1 From: Gokturk Yuksek <gokturk@gentoo.org>
2 Subject: [PATCH] src/inode: supersede i_dir_acl with i_size_high
4 The upstream has removed the macro that defined i_dir_acl as
5 i_size_high which causes a build failure with the later versions of
6 e2fsprogs. Replace every reference to inode->i_dir_acl with
7 inode->i_size_high.
9 [0] https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git/commit/?id=578fcbfd2e61e0b13ce8c7b62804c941d6c1eb8e
11 --- a/src/inode.c
12 +++ b/src/inode.c
13 @@ -404,14 +404,14 @@
14 fprintf(out,
15 "%sFile ACL: %d Directory ACL: %d Translator: %d\n",
16 prefix,
17 - inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0,
18 + inode->i_file_acl, LINUX_S_ISDIR(inode->i_mode) ? inode->i_size_high : 0,
19 inode->osd1.hurd1.h_i_translator);
20 else
21 fprintf(out, "%sFile ACL: %llu Directory ACL: %d\n",
22 prefix,
23 inode->i_file_acl | ((long long)
24 (inode->osd2.linux2.l_i_file_acl_high) << 32),
25 - LINUX_S_ISDIR(inode->i_mode) ? inode->i_dir_acl : 0);
26 + LINUX_S_ISDIR(inode->i_mode) ? inode->i_size_high : 0);
27 if (os == EXT2_OS_LINUX)
28 fprintf(out, "%sLinks: %d Blockcount: %llu\n",
29 prefix, inode->i_links_count,