diff options
Diffstat (limited to 'meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/debugfs-too-short.patch')
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/debugfs-too-short.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/debugfs-too-short.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/debugfs-too-short.patch deleted file mode 100644 index 607305be54..0000000000 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/debugfs-too-short.patch +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | debugfs.c: the max length of debugfs argument is too short | ||
2 | |||
3 | The max length of debugfs argument is 256 which is too short, the | ||
4 | arguments are two paths, the PATH_MAX is 4096 according to | ||
5 | /usr/include/linux/limits.h, so use BUFSIZ (which is 8192 on Linux | ||
6 | systems), that's also what the ss library uses. | ||
7 | |||
8 | Upstream-Status: Submitted | ||
9 | |||
10 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> | ||
11 | Acked-by: Darren Hart <dvhart@linux.intel.com> | ||
12 | --- | ||
13 | debugfs/debugfs.c | 6 +++++- | ||
14 | 1 file changed, 5 insertions(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c | ||
17 | --- a/debugfs/debugfs.c | ||
18 | +++ b/debugfs/debugfs.c | ||
19 | @@ -37,6 +37,10 @@ extern char *optarg; | ||
20 | #include "../version.h" | ||
21 | #include "jfs_user.h" | ||
22 | |||
23 | +#ifndef BUFSIZ | ||
24 | +#define BUFSIZ 8192 | ||
25 | +#endif | ||
26 | + | ||
27 | ss_request_table *extra_cmds; | ||
28 | const char *debug_prog_name; | ||
29 | int sci_idx; | ||
30 | @@ -2311,7 +2315,7 @@ void do_dump_mmp(int argc EXT2FS_ATTR((unused)), char *argv[]) | ||
31 | static int source_file(const char *cmd_file, int ss_idx) | ||
32 | { | ||
33 | FILE *f; | ||
34 | - char buf[256]; | ||
35 | + char buf[BUFSIZ]; | ||
36 | char *cp; | ||
37 | int exit_status = 0; | ||
38 | int retval; | ||
39 | -- | ||
40 | 1.8.1.2 | ||
41 | |||