<feed xmlns='http://www.w3.org/2005/Atom'>
<title>platform_external_e2fsprogs/debugfs, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/'/>
<entry>
<title>Move system_shared_libs into target.bionic clause</title>
<updated>2021-07-13T23:29:01+00:00</updated>
<author>
<name>Colin Cross</name>
<email>ccross@android.com</email>
</author>
<published>2021-07-13T23:29:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=48fa7248112701c30d3cabfb8d3360b2408d6491'/>
<id>48fa7248112701c30d3cabfb8d3360b2408d6491</id>
<content type='text'>
Use target.bionic.system_shared_libs when it is used to limit the
default shared libraries (as opposed to remove them completely).
This avoids attempting to add a host dependency on libc when
system_shared_libs is modified to apply to all variants.

Also remove system_shared_libs from static binaries where it has
no effect, and consolidate it into e2fsprogs-defaults.

Bug: 193559105
Test: m checkbuild
Change-Id: I2d447b006afc783f4acd6c1acd93f338a68a01ed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use target.bionic.system_shared_libs when it is used to limit the
default shared libraries (as opposed to remove them completely).
This avoids attempting to add a host dependency on libc when
system_shared_libs is modified to apply to all variants.

Also remove system_shared_libs from static binaries where it has
no effect, and consolidate it into e2fsprogs-defaults.

Bug: 193559105
Test: m checkbuild
Change-Id: I2d447b006afc783f4acd6c1acd93f338a68a01ed
</pre>
</div>
</content>
</entry>
<entry>
<title>Update generated files for Android</title>
<updated>2021-06-16T05:11:52+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2021-06-16T04:59:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=2ada48557f74a3eb90b93c9ca5ce64dc5b3245f8'/>
<id>2ada48557f74a3eb90b93c9ca5ce64dc5b3245f8</id>
<content type='text'>
This change was generated by running 'util/gen-android-files'.

Change-Id: I9c060e2306504dc25d1c220e5f995c3c38c60160
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change was generated by running 'util/gen-android-files'.

Change-Id: I9c060e2306504dc25d1c220e5f995c3c38c60160
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix -Wunused-parameter warnings</title>
<updated>2021-06-16T05:11:52+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2021-06-16T04:28:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=bee3b624de06d43244f6010cc1515aaeba8eb253'/>
<id>bee3b624de06d43244f6010cc1515aaeba8eb253</id>
<content type='text'>
Fix all warnings about unused function parameters that were introduced
since e2fsprogs v1.45.4, by adding EXT2FS_ATTR((unused)) or removing
parameters as appropriate.

Change-Id: Ie224bfbb9ab9601041cba60f7c084cf72d622bf2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix all warnings about unused function parameters that were introduced
since e2fsprogs v1.45.4, by adding EXT2FS_ATTR((unused)) or removing
parameters as appropriate.

Change-Id: Ie224bfbb9ab9601041cba60f7c084cf72d622bf2
</pre>
</div>
</content>
</entry>
<entry>
<title>libext2fs: improve jbd_debug() implementation</title>
<updated>2021-06-16T05:11:52+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2021-06-16T04:28:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=bee782c5a57b5afde86bed85eacc31349e22b25c'/>
<id>bee782c5a57b5afde86bed85eacc31349e22b25c</id>
<content type='text'>
Make jbd_debug() do format string checking (but still get compiled away
to nothing) when --enable-jbd-debug isn't specified, similar to
commit d556435156b7 ("jbd2: avoid -Wempty-body warnings") on the kernel
side.  This should prevent --enable-jbd-debug from getting broken due to
bad jbd_debug() statements.  It also eliminates a -Wunused-variable
warning where a variable was only used in a jbd_debug() statement.

Also remove an alternative definition of jbd_debug() that was
conditional on CONFIG_JBD_DEBUG &amp;&amp; !CONFIG_JBD_DEBUG, so was dead code.

Signed-off-by: Eric Biggers &lt;ebiggers@google.com&gt;
Change-Id: I7b975a89177e0142c9e6a3d51a127c7a70c150a6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make jbd_debug() do format string checking (but still get compiled away
to nothing) when --enable-jbd-debug isn't specified, similar to
commit d556435156b7 ("jbd2: avoid -Wempty-body warnings") on the kernel
side.  This should prevent --enable-jbd-debug from getting broken due to
bad jbd_debug() statements.  It also eliminates a -Wunused-variable
warning where a variable was only used in a jbd_debug() statement.

Also remove an alternative definition of jbd_debug() that was
conditional on CONFIG_JBD_DEBUG &amp;&amp; !CONFIG_JBD_DEBUG, so was dead code.

Signed-off-by: Eric Biggers &lt;ebiggers@google.com&gt;
Change-Id: I7b975a89177e0142c9e6a3d51a127c7a70c150a6
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge upstream tag 'v1.46.2' into aosp/master</title>
<updated>2021-06-16T05:10:30+00:00</updated>
<author>
<name>Eric Biggers</name>
<email>ebiggers@google.com</email>
</author>
<published>2021-06-15T22:28:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=7364b2d24086253ba83473e7a438a8ae824594f4'/>
<id>7364b2d24086253ba83473e7a438a8ae824594f4</id>
<content type='text'>
Conflicts:
	contrib/android/basefs_allocator.c
	e2fsck/e2fsck.h
	e2fsck/pass1.c
	e2fsck/pass2.c
	e2fsck/problem.c
	e2fsck/problem.h
	lib/e2p/feature.c
	lib/ext2fs/ext2_fs.h
	lib/ext2fs/ext2fs.h
	misc/mke2fs.c
	misc/tune2fs.c
	resize/Android.bp

Test: booted Cuttlefish using ext4 userdata
Change-Id: Iec94e79289afddd7efbca61b076c094da5e1fd6f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	contrib/android/basefs_allocator.c
	e2fsck/e2fsck.h
	e2fsck/pass1.c
	e2fsck/pass2.c
	e2fsck/problem.c
	e2fsck/problem.h
	lib/e2p/feature.c
	lib/ext2fs/ext2_fs.h
	lib/ext2fs/ext2fs.h
	misc/mke2fs.c
	misc/tune2fs.c
	resize/Android.bp

Test: booted Cuttlefish using ext4 userdata
Change-Id: Iec94e79289afddd7efbca61b076c094da5e1fd6f
</pre>
</div>
</content>
</entry>
<entry>
<title>debugfs: fix rdump and ls to handle uids and gids &gt; 65536 correctly</title>
<updated>2021-02-25T22:26:07+00:00</updated>
<author>
<name>Theodore Ts'o</name>
<email>tytso@mit.edu</email>
</author>
<published>2021-02-25T22:26:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=37c2008f1356ba64132514346c1916f7ecc83ddb'/>
<id>37c2008f1356ba64132514346c1916f7ecc83ddb</id>
<content type='text'>
https://github.com/tytso/e2fsprogs/issues/63

Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/tytso/e2fsprogs/issues/63

Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>debugfs: fix memory leak problem in read_list()</title>
<updated>2021-02-25T17:02:24+00:00</updated>
<author>
<name>Zhiqiang Liu</name>
<email>liuzhiqiang26@huawei.com</email>
</author>
<published>2021-02-20T08:41:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=989a4189698c4efa53b521b6ad8236bbfc3452c3'/>
<id>989a4189698c4efa53b521b6ad8236bbfc3452c3</id>
<content type='text'>
In read_list func, if strtoull() fails in while loop,
we will return the error code directly. Then, memory of
variable lst will be leaked without setting to *list.

Signed-off-by: Zhiqiang Liu &lt;liuzhiqiang26@huawei.com&gt;
Signed-off-by: linfeilong &lt;linfeilong@huawei.com&gt;
Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In read_list func, if strtoull() fails in while loop,
we will return the error code directly. Then, memory of
variable lst will be leaked without setting to *list.

Signed-off-by: Zhiqiang Liu &lt;liuzhiqiang26@huawei.com&gt;
Signed-off-by: linfeilong &lt;linfeilong@huawei.com&gt;
Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>debugfs: fix file descriptor leak on error path in do_logdump()</title>
<updated>2021-02-24T04:57:10+00:00</updated>
<author>
<name>Theodore Ts'o</name>
<email>tytso@mit.edu</email>
</author>
<published>2021-02-24T04:57:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=7e8d22814c41c375027a6183180af79a66d75e69'/>
<id>7e8d22814c41c375027a6183180af79a66d75e69</id>
<content type='text'>
Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>debugfs: fix uninitialized variable es in do_logdump()</title>
<updated>2021-02-24T01:58:31+00:00</updated>
<author>
<name>Theodore Ts'o</name>
<email>tytso@mit.edu</email>
</author>
<published>2021-02-24T01:58:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=7fc56dd147fe7f1a4427f8caed10866e0255eea3'/>
<id>7fc56dd147fe7f1a4427f8caed10866e0255eea3</id>
<content type='text'>
Fixes: d96064e9821a ("debugfs: simplify the do_logdump() function")

Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes: d96064e9821a ("debugfs: simplify the do_logdump() function")

Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>debugfs: simplify the do_logdump() function</title>
<updated>2021-02-23T21:19:00+00:00</updated>
<author>
<name>Theodore Ts'o</name>
<email>tytso@mit.edu</email>
</author>
<published>2021-02-23T21:19:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_e2fsprogs/commit/?id=d96064e9821af2d5dbfae7e238dd4e8dac20d72f'/>
<id>d96064e9821af2d5dbfae7e238dd4e8dac20d72f</id>
<content type='text'>
Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Theodore Ts'o &lt;tytso@mit.edu&gt;
</pre>
</div>
</content>
</entry>
</feed>
