<feed xmlns='http://www.w3.org/2005/Atom'>
<title>lwext4/src/ext4.c, branch win32</title>
<subtitle>Fork of lwext4 library for EXT2 filesystem manipulation</subtitle>
<id>https://git.carlh.net/cgit/lwext4/atom?h=win32</id>
<link rel='self' href='https://git.carlh.net/cgit/lwext4/atom?h=win32'/>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/'/>
<updated>2020-08-05T22:44:22Z</updated>
<entry>
<title>Debug logz</title>
<updated>2020-08-05T22:44:22Z</updated>
<author>
<name>cah</name>
<email>cah@ableton.com</email>
</author>
<published>2020-08-05T22:44:22Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=28c6f7e9814a18f72bd53903ee00404afb399fe7'/>
<id>urn:sha1:28c6f7e9814a18f72bd53903ee00404afb399fe7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Debug logz</title>
<updated>2020-08-05T22:16:39Z</updated>
<author>
<name>cah</name>
<email>cah@ableton.com</email>
</author>
<published>2020-08-05T22:16:39Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=bcf4a81898ab22fa4da9d5294a4de0a846e955c7'/>
<id>urn:sha1:bcf4a81898ab22fa4da9d5294a4de0a846e955c7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Debug logz</title>
<updated>2020-08-05T21:57:59Z</updated>
<author>
<name>cah</name>
<email>cah@ableton.com</email>
</author>
<published>2020-08-05T21:57:59Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/lwext4/commit/?id=2975f12879cf76b3b5e4d04392ae3d5f4cd02419'/>
<id>urn:sha1:2975f12879cf76b3b5e4d04392ae3d5f4cd02419</id>
<content type='text'>
</content>
</entry>
<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>
</feed>
