<feed xmlns='http://www.w3.org/2005/Atom'>
<title>lwext4/src/ext4.c, branch disk-writer-debug</title>
<subtitle>Fork of lwext4 library for EXT2 filesystem manipulation</subtitle>
<id>https://git.carlh.net/cgit/lwext4/atom?h=disk-writer-debug</id>
<link rel='self' href='https://git.carlh.net/cgit/lwext4/atom?h=disk-writer-debug'/>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/'/>
<updated>2018-09-26T20:35:36Z</updated>
<entry>
<title>ext4: fix ext4_fsymlink creation</title>
<updated>2018-09-26T20:35:36Z</updated>
<author>
<name>Grzegorz Kostka</name>
<email>kostka.grzegorz@gmail.com</email>
</author>
<published>2018-09-26T20:35:36Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=c5f8d135cf3555404f1c4df5617f94f4fc2bac87'/>
<id>urn:sha1:c5f8d135cf3555404f1c4df5617f94f4fc2bac87</id>
<content type='text'>
Solve the problem with long symbolic links creation.
Thanks to: @cobenhan
</content>
</entry>
<entry>
<title>ext4: move ext4_fs_alloc_inode result check to right place</title>
<updated>2018-04-05T08:54:24Z</updated>
<author>
<name>Grzegorz Kostka</name>
<email>kostka.grzegorz@gmail.com</email>
</author>
<published>2018-04-05T08:54:24Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=dc0347cc9b3ea74da062c553dbcdc541c030f114'/>
<id>urn:sha1:dc0347cc9b3ea74da062c553dbcdc541c030f114</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use int64_t as offset to ext4_fseek.</title>
<updated>2017-10-18T17:54:54Z</updated>
<author>
<name>Fan Deng</name>
<email>enetor@gmail.com</email>
</author>
<published>2017-10-18T17:54:54Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=d8218c9442655f8bdebb912483d425dded654bfd'/>
<id>urn:sha1:d8218c9442655f8bdebb912483d425dded654bfd</id>
<content type='text'>
This change makes it possible to fseek backwards in fseek.

Tested:
  make test_all
</content>
</entry>
<entry>
<title>Remove an unuseful if check in ext4.c.</title>
<updated>2017-10-17T18:33:18Z</updated>
<author>
<name>Fan Deng</name>
<email>enetor@gmail.com</email>
</author>
<published>2017-10-17T18:33:18Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=ab4ed9a604bc6bc797dfa7e01e3612f1bc915bdd'/>
<id>urn:sha1:ab4ed9a604bc6bc797dfa7e01e3612f1bc915bdd</id>
<content type='text'>
The if check on s_bdevices[i].name is unuseful, as 'name' always
evaluates to true:
    if (s_bdevices[i].name) {
        ...
    }
This change removes the check to be consistent with the rest of the code
(see line 124 and 144).
</content>
</entry>
<entry>
<title>ext4: fix transaction start/stop scopes</title>
<updated>2017-05-31T13:12:07Z</updated>
<author>
<name>Grzegorz Kostka</name>
<email>kostka.grzegorz@gmail.com</email>
</author>
<published>2017-05-31T13:12:07Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=9b38aef3133341e68a40756bd9fba1b81edb203b'/>
<id>urn:sha1:9b38aef3133341e68a40756bd9fba1b81edb203b</id>
<content type='text'>
Remove transaction scope from ext4_generic_open2 method.
</content>
</entry>
<entry>
<title>ext4: add ext4_inode_exist method</title>
<updated>2017-04-19T18:47:14Z</updated>
<author>
<name>gkostka</name>
<email>kostka.grzegorz@gmail.com</email>
</author>
<published>2017-04-19T18:47:14Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=c8978f9dba53333004f3f20e5acc57df8867dc16'/>
<id>urn:sha1:c8978f9dba53333004f3f20e5acc57df8867dc16</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change include type policy</title>
<updated>2017-04-05T18:12:52Z</updated>
<author>
<name>gkostka</name>
<email>kostka.grzegorz@gmail.com</email>
</author>
<published>2017-04-05T18:12:52Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=782631e9388c38ac509823df916ea494e271a931'/>
<id>urn:sha1:782631e9388c38ac509823df916ea494e271a931</id>
<content type='text'>
Since all headers are ins separate directory, includes could be
done by using &lt;&gt; instead of "".
</content>
</entry>
<entry>
<title>ext4_mkfs: add journal node creation support</title>
<updated>2017-02-21T21:05:26Z</updated>
<author>
<name>gkostka</name>
<email>kostka.grzegorz@gmail.com</email>
</author>
<published>2017-02-21T20:30:54Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=12af982ed6f006c0ff4b73a2dc266d139d490904'/>
<id>urn:sha1:12af982ed6f006c0ff4b73a2dc266d139d490904</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ext4: improve dox documentation style</title>
<updated>2017-02-19T21:09:17Z</updated>
<author>
<name>gkostka</name>
<email>kostka.grzegorz@gmail.com</email>
</author>
<published>2017-02-19T21:03:23Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=958b570b8fe80913ed607a15a3548cadac8a1195'/>
<id>urn:sha1:958b570b8fe80913ed607a15a3548cadac8a1195</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ext4: little style improvements</title>
<updated>2017-02-17T13:30:30Z</updated>
<author>
<name>Grzegorz Kostka</name>
<email>kostka.grzegorz@gmail.com</email>
</author>
<published>2017-02-17T13:30:30Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=f6bfcc1073939f1ee99d53853ae34c72fb6177c2'/>
<id>urn:sha1:f6bfcc1073939f1ee99d53853ae34c72fb6177c2</id>
<content type='text'>
</content>
</entry>
</feed>
