History log of /haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/fs_func.h
Revision Date Author Comments
# 04db9fef 02-Nov-2012 threedeyes <3dEyes@gmail.com>

NTFS: Initial support for volume initialization
* Moving files taken from ntfs3g in a separate folder.
* Added files from ntfsprogs: mkntfs.c
* Initial support for initialization


# 70e1a40a 24-Feb-2011 Jérôme Duval <korli@users.berlios.de>

replaced use of malloc.h with stdlib.h


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40666 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b62dd5ab 22-Feb-2011 Jérôme Duval <korli@users.berlios.de>

cleanup, header inclusion should be revisited.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40617 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 615e223a 12-Sep-2009 Gerasim Troeglazov <3deyes@gmail.com>

Added support for updating the access and change time to the file/directory. +alphabranch (forgot to add to the previous commit)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33111 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 188f3914 08-Jun-2009 Axel Dörfler <axeld@pinc-software.de>

* Fixed missing B_FS_IS_READONLY flag in fs_rfsstat(). This fixes bug #4009.
* Fixed many occurences of incorrect operator order, ie. "!flags & FLAG" does
not what you might think it does.
* Added TODOs to functionally questionable code. I really don't think this file
system should actually be used read-write. Deleting files seems to be
completely broken.
* Fixed mixup of B_MOUNT_READ_ONLY vs. B_FS_IS_READONLY in nspace::flags.
* Fixed many, many style issues, that file really was a mess.
* Honoured 80 characters per line limit.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30996 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 574e74d7 27-Mar-2009 Gerasim Troeglazov <3deyes@gmail.com>

* Fix file mode for vnodes, set readonly as default. volume successfully mounted, but available only root directory

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29743 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1d5db3c0 25-Mar-2009 Gerasim Troeglazov <3deyes@gmail.com>

*fix prototype

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29726 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 31aa96d8 28-Oct-2008 Gerasim Troeglazov <3deyes@gmail.com>

first changes for new FS API support

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28365 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 245aecda 21-Jun-2007 Axel Dörfler <axeld@pinc-software.de>

Got rid of vnode_id and mount_id, replaced with ino_t and dev_t.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21485 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 570ab00a 05-Mar-2007 Gerasim Troeglazov <3deyes@gmail.com>

Fixed bug in fs_readdir function. Removed read-only assembling mode. Added settings file for addon tweaking: hide_sys_files, read_only, no_atime.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20332 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6a15f740 02-Mar-2007 Gerasim Troeglazov <3deyes@gmail.com>

Some code and style cleanup

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20309 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 07a20b80 02-Mar-2007 Gerasim Troeglazov <3deyes@gmail.com>

Fixed build for R5 and dano targets. Bug fixes for fs_rename and fs_walk functions. Added simple identify functions for haiku.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20303 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 04db9fefe3d6d37c93471c006a119210b2861e0f 02-Nov-2012 threedeyes <3dEyes@gmail.com>

NTFS: Initial support for volume initialization
* Moving files taken from ntfs3g in a separate folder.
* Added files from ntfsprogs: mkntfs.c
* Initial support for initialization


# 70e1a40a1d05c958b5e206d45eee086cad4e1788 24-Feb-2011 Jérôme Duval <korli@users.berlios.de>

replaced use of malloc.h with stdlib.h


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40666 a95241bf-73f2-0310-859d-f6bbb57e9c96


# b62dd5abd5a6980811849b4cbb2dd40ce31eaebd 22-Feb-2011 Jérôme Duval <korli@users.berlios.de>

cleanup, header inclusion should be revisited.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40617 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 615e223aaec869f6976609c17442deba41026f34 12-Sep-2009 Gerasim Troeglazov <3deyes@gmail.com>

Added support for updating the access and change time to the file/directory. +alphabranch (forgot to add to the previous commit)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33111 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 188f39148733825e9dd6573037f4a827a68a9f7e 08-Jun-2009 Axel Dörfler <axeld@pinc-software.de>

* Fixed missing B_FS_IS_READONLY flag in fs_rfsstat(). This fixes bug #4009.
* Fixed many occurences of incorrect operator order, ie. "!flags & FLAG" does
not what you might think it does.
* Added TODOs to functionally questionable code. I really don't think this file
system should actually be used read-write. Deleting files seems to be
completely broken.
* Fixed mixup of B_MOUNT_READ_ONLY vs. B_FS_IS_READONLY in nspace::flags.
* Fixed many, many style issues, that file really was a mess.
* Honoured 80 characters per line limit.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30996 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 574e74d766bfda83aa96bd62e33dbb3e0cb76c1f 27-Mar-2009 Gerasim Troeglazov <3deyes@gmail.com>

* Fix file mode for vnodes, set readonly as default. volume successfully mounted, but available only root directory

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29743 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1d5db3c0369b2be348f9593f4477a2009d806bd7 25-Mar-2009 Gerasim Troeglazov <3deyes@gmail.com>

*fix prototype

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29726 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 31aa96d87ffe3a45819f264deead9373b166a0f4 28-Oct-2008 Gerasim Troeglazov <3deyes@gmail.com>

first changes for new FS API support

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28365 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 245aecda8ac43fc2c0c0bac6a7e4016efa9b71e1 21-Jun-2007 Axel Dörfler <axeld@pinc-software.de>

Got rid of vnode_id and mount_id, replaced with ino_t and dev_t.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21485 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 570ab00aa78ede7f1e8bb331848610346fbdbdd2 05-Mar-2007 Gerasim Troeglazov <3deyes@gmail.com>

Fixed bug in fs_readdir function. Removed read-only assembling mode. Added settings file for addon tweaking: hide_sys_files, read_only, no_atime.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20332 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6a15f740b9fd6994316ee8c5c18600857acfbd79 02-Mar-2007 Gerasim Troeglazov <3deyes@gmail.com>

Some code and style cleanup

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20309 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 07a20b80721275b58fc5273824450fe137a1a48f 02-Mar-2007 Gerasim Troeglazov <3deyes@gmail.com>

Fixed build for R5 and dano targets. Bug fixes for fs_rename and fs_walk functions. Added simple identify functions for haiku.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20303 a95241bf-73f2-0310-859d-f6bbb57e9c96