Home
last modified time | relevance | path

Searched refs:fsname (Results 1 – 7 of 7) sorted by relevance

/linux-2.4.37.9/fs/romfs/
Dinode.c267 char fsname[ROMFS_MAXFN]; /* XXX dynamic? */ in romfs_readdir() local
292 j = romfs_strnlen(i, offset+ROMFH_SIZE, sizeof(fsname)-1); in romfs_readdir()
296 fsname[j]=0; in romfs_readdir()
297 romfs_copyfrom(i, fsname, offset+ROMFH_SIZE, j); in romfs_readdir()
303 if (filldir(dirent, fsname, j, offset, ino, in romfs_readdir()
318 char fsname[ROMFS_MAXFN]; /* XXX dynamic? */ in romfs_lookup() local
348 romfs_copyfrom(dir, fsname, offset+ROMFH_SIZE, len+1); in romfs_lookup()
349 if (strncmp (name, fsname, len) == 0) in romfs_lookup()
354 fslen = romfs_strnlen(dir, offset+ROMFH_SIZE, sizeof(fsname)-1); in romfs_lookup()
356 romfs_copyfrom(dir, fsname, offset+ROMFH_SIZE, len+1); in romfs_lookup()
[all …]
/linux-2.4.37.9/arch/parisc/hpux/
Dsys_hpux.c419 char *fsname = NULL; in hpux_sysfs() local
433 fsname = (char *) kmalloc(len+1, GFP_KERNEL); in hpux_sysfs()
434 if ( !fsname ) { in hpux_sysfs()
439 if ( copy_from_user(fsname, (char *)arg1, len+1) ) { in hpux_sysfs()
441 kfree(fsname); in hpux_sysfs()
445 printk(KERN_DEBUG "that is '%s' as (char *)\n", fsname); in hpux_sysfs()
446 if ( !strcmp(fsname, "hfs") ) { in hpux_sysfs()
452 kfree(fsname); in hpux_sysfs()
/linux-2.4.37.9/fs/xfs/
Dxfs_clnt.h60 char fsname[MAXNAMELEN+1]; /* data device name */ member
Dxfs_error.c180 xfs_errortag_clearall_umount(int64_t fsid, char *fsname, int loud) in xfs_errortag_clearall_umount() argument
202 fsname); in xfs_errortag_clearall_umount()
Dxfs_error.h166 int xfs_errortag_clearall_umount(int64_t fsid, char *fsname,
Dxfs_vfsops.c256 mp->m_fsname_len = strlen(ap->fsname) + 1; in xfs_start_flags()
258 strcpy(mp->m_fsname, ap->fsname); in xfs_start_flags()
/linux-2.4.37.9/fs/xfs/linux-2.4/
Dxfs_super.c85 strncpy(args->fsname, bdevname(sb->s_dev), MAXNAMELEN); in xfs_args_allocate()