-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinode.h
43 lines (31 loc) · 1.03 KB
/
inode.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// based on cs3650 starter code
#ifndef INODE_H
#define INODE_H
#include <sys/stat.h>
#include <time.h>
#include "pages.h"
#define NUM_PTRS 2
typedef struct inode
{
int inum; // index in inode bitmap.
int refs; // number of references
int mode; // permission & type
int size; // bytes
int ptrs[NUM_PTRS]; // direct pointers
int iptr; // single indirect pointer
struct timespec ts[2]; // last updated time
} inode;
void inode_init();
void print_inode(inode* node);
inode* get_inode(int inum);
int alloc_inode();
void free_inode(inode* node);
int grow_inode(inode* node, int size);
int shrink_inode(inode* node, int size);
int inode_get_pnum(inode* node, int fpn);
int inode_is_dir(inode* node);
void inode_copy_stats(inode* node, struct stat* st);
inode* copy_inode(inode* node);
// TODO: create a new node based on another, but it has a different index/inum
// TOOD: inode* inode_copy(inode* node) or maybe inode* copy_inode(int inum)
#endif