xv6-cs450/fs.c

651 lines
14 KiB
C
Raw Normal View History

2011-10-11 12:41:37 +02:00
// File system implementation. Five layers:
2007-08-20 20:23:52 +02:00
// + Blocks: allocator for raw disk blocks.
2011-10-11 12:41:37 +02:00
// + Log: crash recovery for multi-step updates.
2007-08-20 20:23:52 +02:00
// + Files: inode allocator, reading, writing, metadata.
// + Directories: inode with special contents (list of other inodes!)
// + Names: paths like /usr/rtm/xv6/fs.c for convenient naming.
//
// This file contains the low-level file system manipulation
// routines. The (higher-level) system call implementations
// are in sysfile.c.
2007-08-20 20:23:52 +02:00
#include "types.h"
2007-08-28 01:26:33 +02:00
#include "defs.h"
#include "param.h"
2007-08-28 01:26:33 +02:00
#include "stat.h"
#include "mmu.h"
#include "proc.h"
#include "spinlock.h"
#include "buf.h"
#include "fs.h"
#include "file.h"
2007-08-20 20:23:52 +02:00
#define min(a, b) ((a) < (b) ? (a) : (b))
2007-08-21 21:58:55 +02:00
static void itrunc(struct inode*);
2006-07-22 00:10:40 +02:00
// Read the super block.
void
readsb(int dev, struct superblock *sb)
{
struct buf *bp;
bp = bread(dev, 1);
memmove(sb, bp->data, sizeof(*sb));
brelse(bp);
}
// Zero a block.
static void
bzero(int dev, int bno)
{
struct buf *bp;
bp = bread(dev, bno);
memset(bp->data, 0, BSIZE);
log_write(bp);
brelse(bp);
}
2007-08-20 20:23:52 +02:00
// Blocks.
// Allocate a zeroed disk block.
2006-09-06 19:27:19 +02:00
static uint
balloc(uint dev)
2006-08-09 03:09:36 +02:00
{
int b, bi, m;
2006-08-09 03:09:36 +02:00
struct buf *bp;
struct superblock sb;
2006-08-09 03:09:36 +02:00
bp = 0;
readsb(dev, &sb);
for(b = 0; b < sb.size; b += BPB){
bp = bread(dev, BBLOCK(b, sb.ninodes));
2011-10-11 12:41:37 +02:00
for(bi = 0; bi < BPB && b + bi < sb.size; bi++){
m = 1 << (bi % 8);
if((bp->data[bi/8] & m) == 0){ // Is block free?
2011-10-11 12:41:37 +02:00
bp->data[bi/8] |= m; // Mark block in use.
log_write(bp);
brelse(bp);
bzero(dev, b + bi);
return b + bi;
}
2006-08-09 03:09:36 +02:00
}
brelse(bp);
2006-08-09 03:09:36 +02:00
}
2007-08-10 18:52:31 +02:00
panic("balloc: out of blocks");
2006-08-09 03:09:36 +02:00
}
2006-09-07 16:28:12 +02:00
// Free a disk block.
2006-09-06 19:27:19 +02:00
static void
bfree(int dev, uint b)
{
struct buf *bp;
struct superblock sb;
int bi, m;
readsb(dev, &sb);
bp = bread(dev, BBLOCK(b, sb.ninodes));
bi = b % BPB;
m = 1 << (bi % 8);
2007-08-24 21:32:36 +02:00
if((bp->data[bi/8] & m) == 0)
panic("freeing free block");
2011-10-11 12:41:37 +02:00
bp->data[bi/8] &= ~m;
log_write(bp);
brelse(bp);
}
2006-08-09 03:09:36 +02:00
2007-08-27 16:23:48 +02:00
// Inodes.
//
2011-10-11 12:41:37 +02:00
// An inode describes a single unnamed file.
// The inode disk structure holds metadata: the file's type,
// its size, the number of links referring to it, and the
// list of blocks holding the file's content.
2007-08-20 20:23:52 +02:00
//
// The inodes are laid out sequentially on disk immediately after
2011-10-11 12:41:37 +02:00
// the superblock. Each inode has a number, indicating its
// position on the disk.
//
// The kernel keeps a cache of in-use inodes in memory
// to provide a place for synchronizing access
// to inodes used by multiple processes. The cached
// inodes include book-keeping information that is
// not stored on disk: ip->ref and ip->flags.
2007-08-20 20:23:52 +02:00
//
2011-10-11 16:11:53 +02:00
// An inode and its in-memory represtative go through a
// sequence of states before they can be used by the
// rest of the file system code.
//
2011-10-11 16:11:53 +02:00
// * Allocation: an inode is allocated if its type (on disk)
// is non-zero. ialloc() allocates, iput() frees if
// the link count has fallen to zero.
2011-10-11 12:41:37 +02:00
//
2011-10-11 16:11:53 +02:00
// * Referencing in cache: an entry in the inode cache
// is free if ip->ref is zero. Otherwise ip->ref tracks
// the number of in-memory pointers to the entry (open
// files and current directories). iget() to find or
// create a cache entry and increment its ref, iput()
// to decrement ref.
//
// * Valid: the information (type, size, &c) in an inode
// cache entry is only correct when the I_VALID bit
// is set in ip->flags. ilock() reads the inode from
// the disk and sets I_VALID, while iput() clears
// I_VALID if ip->ref has fallen to zero.
//
// * Locked: file system code may only examine and modify
// the information in an inode and its content if it
// has first locked the inode. The I_BUSY flag indicates
// that the inode is locked. ilock() sets I_BUSY,
// while iunlock clears it.
//
// Thus a typical sequence is:
// ip = iget(dev, inum)
// ilock(ip)
// ... examine and modify ip->xxx ...
// iunlock(ip)
// iput(ip)
//
// ilock() is separate from iget() so that system calls can
// get a long-term reference to an inode (as for an open file)
// and only lock it for short periods (e.g., in read()).
// The separation also helps avoid deadlock and races during
// pathname lookup. iget() increments ip->ref so that the inode
// stays cached and pointers to it remain valid.
//
// Many internal file system functions expect the caller to
// have locked the inodes involved; this lets callers create
// multi-step atomic operations.
2007-08-20 20:23:52 +02:00
struct {
struct spinlock lock;
struct inode inode[NINODE];
} icache;
void
iinit(void)
{
initlock(&icache.lock, "icache");
2007-08-20 20:23:52 +02:00
}
2009-07-12 04:26:01 +02:00
static struct inode* iget(uint dev, uint inum);
//PAGEBREAK!
// Allocate a new inode with the given type on device dev.
2011-10-11 12:41:37 +02:00
// A free inode has a type of zero.
2009-07-12 04:26:01 +02:00
struct inode*
ialloc(uint dev, short type)
{
int inum;
struct buf *bp;
struct dinode *dip;
struct superblock sb;
readsb(dev, &sb);
2011-10-11 12:41:37 +02:00
for(inum = 1; inum < sb.ninodes; inum++){
2009-07-12 04:26:01 +02:00
bp = bread(dev, IBLOCK(inum));
dip = (struct dinode*)bp->data + inum%IPB;
if(dip->type == 0){ // a free inode
memset(dip, 0, sizeof(*dip));
dip->type = type;
log_write(bp); // mark it allocated on the disk
2009-07-12 04:26:01 +02:00
brelse(bp);
return iget(dev, inum);
}
brelse(bp);
}
panic("ialloc: no inodes");
}
2011-10-11 16:11:53 +02:00
// Copy a modified in-memory inode to disk.
2009-07-12 04:26:01 +02:00
void
iupdate(struct inode *ip)
{
struct buf *bp;
struct dinode *dip;
bp = bread(ip->dev, IBLOCK(ip->inum));
dip = (struct dinode*)bp->data + ip->inum%IPB;
dip->type = ip->type;
dip->major = ip->major;
dip->minor = ip->minor;
dip->nlink = ip->nlink;
dip->size = ip->size;
memmove(dip->addrs, ip->addrs, sizeof(ip->addrs));
log_write(bp);
2009-07-12 04:26:01 +02:00
brelse(bp);
}
2006-09-06 19:50:20 +02:00
// Find the inode with number inum on device dev
2011-10-11 16:11:53 +02:00
// and return the in-memory copy. Does not lock
// the inode and does not read it from disk.
static struct inode*
iget(uint dev, uint inum)
{
2007-08-20 20:23:52 +02:00
struct inode *ip, *empty;
2007-08-20 20:23:52 +02:00
acquire(&icache.lock);
2011-10-11 16:11:53 +02:00
// Is the inode already cached?
2007-08-20 20:23:52 +02:00
empty = 0;
for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){
2006-09-07 17:15:32 +02:00
if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){
ip->ref++;
2007-08-20 20:23:52 +02:00
release(&icache.lock);
return ip;
}
2007-08-20 20:23:52 +02:00
if(empty == 0 && ip->ref == 0) // Remember empty slot.
empty = ip;
}
2011-10-11 16:11:53 +02:00
// Recycle an inode cache entry.
2007-08-20 20:23:52 +02:00
if(empty == 0)
2007-08-08 11:50:46 +02:00
panic("iget: no inodes");
2007-08-20 20:23:52 +02:00
ip = empty;
ip->dev = dev;
ip->inum = inum;
ip->ref = 1;
ip->flags = 0;
2007-08-20 20:23:52 +02:00
release(&icache.lock);
return ip;
2007-08-20 20:23:52 +02:00
}
// Increment reference count for ip.
// Returns ip to enable ip = idup(ip1) idiom.
struct inode*
idup(struct inode *ip)
2007-08-20 20:23:52 +02:00
{
acquire(&icache.lock);
ip->ref++;
release(&icache.lock);
return ip;
}
// Lock the given inode.
2011-10-11 16:11:53 +02:00
// Reads the inode from disk if necessary.
void
ilock(struct inode *ip)
{
struct buf *bp;
struct dinode *dip;
if(ip == 0 || ip->ref < 1)
panic("ilock");
2007-08-20 20:23:52 +02:00
acquire(&icache.lock);
while(ip->flags & I_BUSY)
sleep(ip, &icache.lock);
ip->flags |= I_BUSY;
2007-08-20 20:23:52 +02:00
release(&icache.lock);
if(!(ip->flags & I_VALID)){
bp = bread(ip->dev, IBLOCK(ip->inum));
2007-08-28 06:13:24 +02:00
dip = (struct dinode*)bp->data + ip->inum%IPB;
ip->type = dip->type;
ip->major = dip->major;
ip->minor = dip->minor;
ip->nlink = dip->nlink;
ip->size = dip->size;
memmove(ip->addrs, dip->addrs, sizeof(ip->addrs));
brelse(bp);
ip->flags |= I_VALID;
if(ip->type == 0)
panic("ilock: no type");
}
2007-08-20 20:23:52 +02:00
}
// Unlock the given inode.
void
2007-08-20 20:23:52 +02:00
iunlock(struct inode *ip)
{
if(ip == 0 || !(ip->flags & I_BUSY) || ip->ref < 1)
2007-08-20 20:23:52 +02:00
panic("iunlock");
acquire(&icache.lock);
ip->flags &= ~I_BUSY;
wakeup(ip);
2007-08-20 20:23:52 +02:00
release(&icache.lock);
}
2011-10-11 16:11:53 +02:00
// Drop a reference to an in-memory inode.
// If that was the last reference, the inode cache entry can
// be recycled.
// If that was the last reference and the inode has no links
// to it, free the inode (and its content) on disk.
2007-08-20 20:23:52 +02:00
void
iput(struct inode *ip)
2007-08-20 20:23:52 +02:00
{
acquire(&icache.lock);
2007-08-28 20:32:08 +02:00
if(ip->ref == 1 && (ip->flags & I_VALID) && ip->nlink == 0){
2011-10-11 16:11:53 +02:00
// inode has no links: truncate and free inode.
if(ip->flags & I_BUSY)
panic("iput busy");
ip->flags |= I_BUSY;
release(&icache.lock);
itrunc(ip);
ip->type = 0;
iupdate(ip);
acquire(&icache.lock);
2009-05-31 03:53:08 +02:00
ip->flags = 0;
wakeup(ip);
}
ip->ref--;
release(&icache.lock);
}
2007-08-27 16:31:50 +02:00
// Common idiom: unlock, then put.
void
iunlockput(struct inode *ip)
{
iunlock(ip);
iput(ip);
}
2007-08-25 00:17:54 +02:00
//PAGEBREAK!
2011-10-11 16:11:53 +02:00
// Inode content
2007-08-20 20:23:52 +02:00
//
2011-10-11 16:11:53 +02:00
// The content (data) associated with each inode is stored
// in blocks on the disk. The first NDIRECT block numbers
2007-08-27 16:31:50 +02:00
// are listed in ip->addrs[]. The next NINDIRECT blocks are
2011-10-11 16:11:53 +02:00
// listed in block ip->addrs[NDIRECT].
2007-08-20 20:23:52 +02:00
2006-09-07 16:28:12 +02:00
// Return the disk block address of the nth block in inode ip.
// If there is no such block, bmap allocates one.
static uint
bmap(struct inode *ip, uint bn)
{
2007-08-20 20:23:52 +02:00
uint addr, *a;
struct buf *bp;
2007-08-28 20:32:08 +02:00
if(bn < NDIRECT){
if((addr = ip->addrs[bn]) == 0)
2007-08-20 20:23:52 +02:00
ip->addrs[bn] = addr = balloc(ip->dev);
return addr;
}
2007-08-20 20:23:52 +02:00
bn -= NDIRECT;
2007-08-28 20:32:08 +02:00
if(bn < NINDIRECT){
2007-08-20 20:23:52 +02:00
// Load indirect block, allocating if necessary.
if((addr = ip->addrs[NDIRECT]) == 0)
ip->addrs[NDIRECT] = addr = balloc(ip->dev);
2007-08-20 20:23:52 +02:00
bp = bread(ip->dev, addr);
a = (uint*)bp->data;
2007-08-28 20:32:08 +02:00
if((addr = a[bn]) == 0){
2007-08-20 20:23:52 +02:00
a[bn] = addr = balloc(ip->dev);
log_write(bp);
2007-08-20 20:23:52 +02:00
}
brelse(bp);
return addr;
}
panic("bmap: out of range");
}
2007-08-20 20:23:52 +02:00
// Truncate inode (discard contents).
2011-10-11 16:11:53 +02:00
// Only called when the inode has no links
// to it (no directory entries referring to it)
// and has no in-memory reference to it (is
// not an open file or current directory).
2007-08-21 21:58:55 +02:00
static void
2006-08-30 20:55:06 +02:00
itrunc(struct inode *ip)
{
int i, j;
2007-08-20 20:23:52 +02:00
struct buf *bp;
2007-08-10 18:52:31 +02:00
uint *a;
2007-08-28 20:32:08 +02:00
for(i = 0; i < NDIRECT; i++){
if(ip->addrs[i]){
bfree(ip->dev, ip->addrs[i]);
ip->addrs[i] = 0;
}
}
2007-08-20 20:23:52 +02:00
if(ip->addrs[NDIRECT]){
bp = bread(ip->dev, ip->addrs[NDIRECT]);
2007-08-20 20:23:52 +02:00
a = (uint*)bp->data;
2007-08-28 20:32:08 +02:00
for(j = 0; j < NINDIRECT; j++){
2007-08-20 20:23:52 +02:00
if(a[j])
bfree(ip->dev, a[j]);
}
brelse(bp);
bfree(ip->dev, ip->addrs[NDIRECT]);
ip->addrs[NDIRECT] = 0;
2006-08-30 20:55:06 +02:00
}
2007-08-20 20:23:52 +02:00
ip->size = 0;
iupdate(ip);
2006-08-15 17:53:46 +02:00
}
2006-09-07 16:28:12 +02:00
// Copy stat information from inode.
2006-08-12 06:33:50 +02:00
void
stati(struct inode *ip, struct stat *st)
{
2006-09-07 15:08:23 +02:00
st->dev = ip->dev;
st->ino = ip->inum;
st->type = ip->type;
st->nlink = ip->nlink;
st->size = ip->size;
2006-08-12 06:33:50 +02:00
}
//PAGEBREAK!
2006-09-07 16:28:12 +02:00
// Read data from inode.
2006-07-27 23:10:00 +02:00
int
readi(struct inode *ip, char *dst, uint off, uint n)
2006-07-27 23:10:00 +02:00
{
2007-08-20 20:23:52 +02:00
uint tot, m;
2006-07-27 23:10:00 +02:00
struct buf *bp;
2007-08-28 20:32:08 +02:00
if(ip->type == T_DEV){
2006-09-07 15:08:23 +02:00
if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read)
return -1;
return devsw[ip->major].read(ip, dst, n);
}
2007-08-27 16:31:50 +02:00
if(off > ip->size || off + n < off)
2007-08-20 20:23:52 +02:00
return -1;
if(off + n > ip->size)
n = ip->size - off;
2006-07-27 23:10:00 +02:00
2007-08-28 20:32:08 +02:00
for(tot=0; tot<n; tot+=m, off+=m, dst+=m){
bp = bread(ip->dev, bmap(ip, off/BSIZE));
2007-08-20 20:23:52 +02:00
m = min(n - tot, BSIZE - off%BSIZE);
memmove(dst, bp->data + off%BSIZE, m);
brelse(bp);
}
2007-08-20 20:23:52 +02:00
return n;
}
// PAGEBREAK!
2006-09-07 16:28:12 +02:00
// Write data to inode.
int
2007-08-20 20:23:52 +02:00
writei(struct inode *ip, char *src, uint off, uint n)
{
2007-08-20 20:23:52 +02:00
uint tot, m;
2007-08-10 18:52:31 +02:00
struct buf *bp;
2007-08-28 20:32:08 +02:00
if(ip->type == T_DEV){
2006-09-07 15:08:23 +02:00
if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write)
return -1;
return devsw[ip->major].write(ip, src, n);
2007-08-10 18:52:31 +02:00
}
if(off > ip->size || off + n < off)
2007-08-20 20:23:52 +02:00
return -1;
if(off + n > MAXFILE*BSIZE)
return -1;
2007-08-20 20:23:52 +02:00
2007-08-28 20:32:08 +02:00
for(tot=0; tot<n; tot+=m, off+=m, src+=m){
bp = bread(ip->dev, bmap(ip, off/BSIZE));
2007-08-20 20:23:52 +02:00
m = min(n - tot, BSIZE - off%BSIZE);
memmove(bp->data + off%BSIZE, src, m);
log_write(bp);
2007-08-10 18:52:31 +02:00
brelse(bp);
}
2007-08-20 20:23:52 +02:00
2007-08-28 20:32:08 +02:00
if(n > 0 && off > ip->size){
2007-08-20 20:23:52 +02:00
ip->size = off;
2007-08-10 18:52:31 +02:00
iupdate(ip);
}
2007-08-20 20:23:52 +02:00
return n;
}
//PAGEBREAK!
2007-08-20 20:23:52 +02:00
// Directories
2007-08-09 21:05:00 +02:00
int
2007-08-21 21:58:55 +02:00
namecmp(const char *s, const char *t)
{
2007-08-24 23:00:02 +02:00
return strncmp(s, t, DIRSIZ);
2007-08-21 21:58:55 +02:00
}
2007-08-09 21:05:00 +02:00
// Look for a directory entry in a directory.
// If found, set *poff to byte offset of entry.
struct inode*
2007-08-21 21:58:55 +02:00
dirlookup(struct inode *dp, char *name, uint *poff)
2007-08-09 21:05:00 +02:00
{
uint off, inum;
struct dirent de;
2007-08-09 21:05:00 +02:00
if(dp->type != T_DIR)
2007-08-24 16:56:17 +02:00
panic("dirlookup not DIR");
2007-08-09 21:05:00 +02:00
for(off = 0; off < dp->size; off += sizeof(de)){
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
panic("dirlink read");
if(de.inum == 0)
continue;
if(namecmp(name, de.name) == 0){
// entry matches path element
if(poff)
*poff = off;
inum = de.inum;
return iget(dp->dev, inum);
2007-08-09 21:05:00 +02:00
}
}
return 0;
2007-08-09 21:05:00 +02:00
}
// Write a new directory entry (name, inum) into the directory dp.
int
dirlink(struct inode *dp, char *name, uint inum)
2007-08-20 20:23:52 +02:00
{
2007-08-20 21:37:15 +02:00
int off;
2007-08-20 20:23:52 +02:00
struct dirent de;
struct inode *ip;
// Check that name is not present.
if((ip = dirlookup(dp, name, 0)) != 0){
iput(ip);
return -1;
}
2007-08-20 20:23:52 +02:00
// Look for an empty dirent.
for(off = 0; off < dp->size; off += sizeof(de)){
if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
2007-08-27 16:31:50 +02:00
panic("dirlink read");
2007-08-20 20:23:52 +02:00
if(de.inum == 0)
break;
}
2007-08-24 23:00:02 +02:00
strncpy(de.name, name, DIRSIZ);
de.inum = inum;
2007-08-20 20:23:52 +02:00
if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de))
2007-08-27 16:31:50 +02:00
panic("dirlink");
return 0;
2007-08-20 20:23:52 +02:00
}
2007-08-25 00:17:54 +02:00
//PAGEBREAK!
2007-08-20 20:23:52 +02:00
// Paths
// Copy the next path element from path into name.
// Return a pointer to the element following the copied one.
// The returned path has no leading slashes,
// so the caller can check *path=='\0' to see if the name is the last one.
// If no name to remove, return 0.
2007-08-20 20:23:52 +02:00
//
// Examples:
// skipelem("a/bb/c", name) = "bb/c", setting name = "a"
2007-08-27 16:31:50 +02:00
// skipelem("///a//bb", name) = "bb", setting name = "a"
// skipelem("a", name) = "", setting name = "a"
// skipelem("", name) = skipelem("////", name) = 0
2007-08-20 20:23:52 +02:00
//
static char*
2007-08-21 21:58:55 +02:00
skipelem(char *path, char *name)
2007-08-20 20:23:52 +02:00
{
2007-08-21 21:58:55 +02:00
char *s;
int len;
2007-08-20 20:23:52 +02:00
while(*path == '/')
path++;
if(*path == 0)
return 0;
2007-08-21 21:58:55 +02:00
s = path;
2007-08-20 20:23:52 +02:00
while(*path != '/' && *path != 0)
path++;
2007-08-21 21:58:55 +02:00
len = path - s;
if(len >= DIRSIZ)
memmove(name, s, DIRSIZ);
2007-08-28 20:37:41 +02:00
else {
2007-08-21 21:58:55 +02:00
memmove(name, s, len);
name[len] = 0;
}
2007-08-20 20:23:52 +02:00
while(*path == '/')
path++;
return path;
}
// Look up and return the inode for a path name.
2007-08-28 21:39:49 +02:00
// If parent != 0, return the inode for the parent and copy the final
// path element into name, which must have room for DIRSIZ bytes.
static struct inode*
2009-07-12 04:26:01 +02:00
namex(char *path, int nameiparent, char *name)
2006-07-22 00:10:40 +02:00
{
struct inode *ip, *next;
2007-08-09 21:05:00 +02:00
if(*path == '/')
2008-10-08 20:57:13 +02:00
ip = iget(ROOTDEV, ROOTINO);
else
ip = idup(proc->cwd);
2006-07-22 00:10:40 +02:00
2007-08-21 21:58:55 +02:00
while((path = skipelem(path, name)) != 0){
ilock(ip);
if(ip->type != T_DIR){
iunlockput(ip);
return 0;
}
2009-07-12 04:26:01 +02:00
if(nameiparent && *path == '\0'){
2007-08-20 21:37:15 +02:00
// Stop one level early.
iunlock(ip);
return ip;
}
2007-08-27 16:31:50 +02:00
if((next = dirlookup(ip, name, 0)) == 0){
iunlockput(ip);
return 0;
}
iunlockput(ip);
ip = next;
2006-07-22 00:10:40 +02:00
}
2009-07-12 04:26:01 +02:00
if(nameiparent){
iput(ip);
2007-08-09 21:05:00 +02:00
return 0;
2007-08-24 16:56:17 +02:00
}
return ip;
2006-07-22 00:10:40 +02:00
}
2006-08-08 20:07:37 +02:00
2007-08-27 16:31:50 +02:00
struct inode*
namei(char *path)
{
char name[DIRSIZ];
return namex(path, 0, name);
2007-08-27 16:31:50 +02:00
}
2007-08-28 21:39:49 +02:00
2007-08-27 16:31:50 +02:00
struct inode*
nameiparent(char *path, char *name)
{
return namex(path, 1, name);
2007-08-27 16:31:50 +02:00
}