diff options
author | Alex Auvolat <alex@adnab.me> | 2015-03-10 17:07:08 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2015-03-10 17:07:08 +0100 |
commit | 1b9ea946b8ec8c71a2bad9a7b2ce253145dcd97c (patch) | |
tree | 6db9ebffcd557d2e06f90b004cd1c325acc7c7f2 /src/kernel/dev/pciide.c | |
parent | 0c710141bbb9bd62617d981a3dbaed1b8775fded (diff) | |
download | kogata-1b9ea946b8ec8c71a2bad9a7b2ce253145dcd97c.tar.gz kogata-1b9ea946b8ec8c71a2bad9a7b2ce253145dcd97c.zip |
Pass more information to FS driver on some ops (TODO bugcheck).
Diffstat (limited to 'src/kernel/dev/pciide.c')
-rw-r--r-- | src/kernel/dev/pciide.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/kernel/dev/pciide.c b/src/kernel/dev/pciide.c index 5abc148..9a78315 100644 --- a/src/kernel/dev/pciide.c +++ b/src/kernel/dev/pciide.c @@ -656,12 +656,12 @@ typedef struct { uint8_t type; } ide_vfs_dev_t; -bool ide_vfs_open(fs_node_ptr n, int mode); -bool ide_vfs_stat(fs_node_ptr n, stat_t *st); +bool ide_vfs_open(fs_node_t *n, int mode); +bool ide_vfs_stat(fs_node_t *n, stat_t *st); size_t ide_vfs_read(fs_handle_t *f, size_t offset, size_t len, char* buf); size_t ide_vfs_write(fs_handle_t *f, size_t offset, size_t len, const char* buf); -int ide_vfs_ioctl(fs_node_ptr f, int command, void* data); +int ide_vfs_ioctl(fs_handle_t *f, int command, void* data); void ide_vfs_close(fs_handle_t *f); fs_node_ops_t ide_vfs_node_ops = { @@ -707,8 +707,8 @@ void ide_register_device(ide_controller_t *c, uint8_t device, fs_t *iofs) { } } -bool ide_vfs_open(fs_node_ptr n, int mode) { - ide_vfs_dev_t *d = (ide_vfs_dev_t*)n; +bool ide_vfs_open(fs_node_t *n, int mode) { + ide_vfs_dev_t *d = (ide_vfs_dev_t*)n->data; int ok_modes = (FM_READ | (d->type == IDE_ATA ? FM_WRITE : 0) @@ -718,8 +718,8 @@ bool ide_vfs_open(fs_node_ptr n, int mode) { return true; } -bool ide_vfs_stat(fs_node_ptr n, stat_t *st) { - ide_vfs_dev_t *d = (ide_vfs_dev_t*)n; +bool ide_vfs_stat(fs_node_t *n, stat_t *st) { + ide_vfs_dev_t *d = (ide_vfs_dev_t*)n->data; st->type = FT_BLOCKDEV | FT_DEV; st->access = (d->type == IDE_ATA ? FM_WRITE : 0) | FM_READ | FM_IOCTL; @@ -752,8 +752,8 @@ uint8_t err = ide_write_sectors(d->c, d->device, return len; } -int ide_vfs_ioctl(fs_node_ptr f, int command, void* data) { - ide_vfs_dev_t *d = (ide_vfs_dev_t*)f; +int ide_vfs_ioctl(fs_handle_t *h, int command, void* data) { + ide_vfs_dev_t *d = (ide_vfs_dev_t*)h->node->data; int ret = 0; |