Searched refs:inodes (Results 1 - 12 of 12) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/procps/
H A Dfuser.c331 inode_list *inodes; local
356 inodes = xmalloc(sizeof(inode_list));
359 fuser_scan_proc_net(opt, proto, port, inodes);
363 free(inodes);
366 fuser_add_inode(inodes, dev, inode);
370 success = fuser_scan_proc_pids(opt, inodes, pids);
383 free(inodes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/
H A Dxfs_rename.c44 * Given an array of up to 4 inode pointers, unlock the pointed to inodes.
93 int *num_inodes) /* number of inodes in array */
108 * to see if we still have the right inodes, directories, etc.
148 * i_tab contains a list of pointers to inodes. We initialize
183 * since they are equal. xfs_lock_inodes needs all these inodes
240 xfs_inode_t *inodes[4]; local
282 * Lock all the participating inodes. Depending upon whether
285 * directory, we can lock from 2 to 4 inodes.
291 target_vname, &src_ip, &target_ip, inodes,
311 xfs_rename_unlock4(inodes, XFS_ILOCK_SHARE
[all...]
H A Dxfs_vnodeops.c2011 * Attach the dquot(s) to the inodes and modify them incore.
2106 * The following routine will lock the inodes associated with the
2223 * The following routine will lock n inodes in exclusive mode.
2224 * We assume the caller calls us with the inodes in i_ino order.
2236 int inodes,
2243 ASSERT(ips && (inodes >= 2)); /* we need at least two */
2254 for (; i < inodes; i++) {
2261 * If try_lock is not set yet, make sure all locked inodes
2469 * inodes locked.
2677 * xfs_trans_cancel will both unlock the inodes an
2234 xfs_lock_inodes( xfs_inode_t **ips, int inodes, int first_locked, uint lock_mode) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/util-linux/
H A Dmkfs_minix.c30 * 32 inodes, for a news partition use more.
55 * -i for number of inodes
255 msg_eol = "cannot write inodes";
537 unsigned long inodes; local
554 inodes = G.total_blocks / 3;
556 inodes = G.req_nr_inodes;
559 inodes = (inodes + MINIX2_INODES_PER_BLOCK - 1) &
562 inodes = (inodes
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/squashfs/
H A Dread_fs.c412 printf("\tNumber of inodes %d\n", sBlk->inodes);
532 int lookup_bytes = SQUASHFS_LOOKUP_BYTES(sBlk->inodes);
533 int indexes = SQUASHFS_LOOKUP_BLOCKS(sBlk->inodes);
548 read_bytes(fd, sBlk->lookup_table_start, SQUASHFS_LOOKUP_BLOCK_BYTES(sBlk->inodes), (char *) sindex);
551 read_bytes(fd, sBlk->lookup_table_start, SQUASHFS_LOOKUP_BLOCK_BYTES(sBlk->inodes), (char *) index);
560 for(i = 0; i < sBlk->inodes; i++) {
604 printf("Read existing filesystem, %d inodes scanned\n", files);
H A Dunsquashfs.c1302 TRACE("\tNumber of inodes %d\n", sBlk.inodes);
1389 if((created_inode = malloc(sBlk.inodes * sizeof(char *))) == NULL)
1392 memset(created_inode, 0, sBlk.inodes * sizeof(char *));
H A Dmksquashfs.c3158 sinode_count = sBlk.inodes;
3194 dir_inode_no = sBlk.inodes + 2;
3204 dir_inode_no = sBlk.inodes + 1;
3237 sBlk.inodes = inode_count;
3337 printf("Number of inodes %d\n", inode_count);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dshmem.c1815 * No ordinary (disk based) filesystem counts links as inodes;
2089 * so as we hash inodes here rather than at creation
2117 gid_t *gid, unsigned long *blocks, unsigned long *inodes,
2167 *inodes = memparse(value,&rest);
2214 unsigned long inodes; local
2223 inodes = sbinfo->max_inodes - sbinfo->free_inodes;
2226 if (max_inodes < inodes)
2243 sbinfo->free_inodes = max_inodes - inodes;
2269 unsigned long inodes = 0; local
2276 * tmpfs instance, limiting inodes t
2116 shmem_parse_options(char *options, int *mode, uid_t *uid, gid_t *gid, unsigned long *blocks, unsigned long *inodes, int *policy, nodemask_t *policy_nodes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Ddquot.c29 * remove_dquot_ref() moved to inode.c - it now traverses through inodes
112 * from inodes (dquot_alloc_space() and such don't check the dq_lock).
409 * quota is disabled and pointers from inodes removed so there cannot be new
410 * quota users. There can still be some users of quotas due to inodes being
747 /* dquots are removed from inodes, no new references can be got so we are the only ones holding reference */
776 /* Gather all references from inodes and drop them */
910 static int check_idq(struct dquot *dquot, ulong inodes, char *warntype) argument
913 if (inodes <= 0 || test_bit(DQ_FAKE_B, &dquot->dq_flags))
917 (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_ihardlimit &&
924 (dquot->dq_dqb.dqb_curinodes + inodes) > dquo
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dsquashfs_fs.h239 unsigned int inodes; member in struct:squashfs_super_block
395 SQUASHFS_SWAP((s)->inodes, d, 32, 32);\
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/squashfs/
H A Dinode.c988 unsigned int length = SQUASHFS_LOOKUP_BLOCK_BYTES(sblk->inodes);
1009 for (i = 0; i < SQUASHFS_LOOKUP_BLOCKS(sblk->inodes); i++) {
1179 TRACE("Number of inodes %d\n", sblk->inodes);
1333 buf->f_files = sblk->inodes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/
H A De2fsck.c2399 * Give more user friendly names to the "special" inodes.
2818 * Pass 1 of e2fsck iterates over all the inodes in the filesystems,
2827 * - A bitmap of which inodes are in use. (inode_used_map)
2828 * - A bitmap of which inodes are directories. (inode_dir_map)
2829 * - A bitmap of which inodes are regular files. (inode_reg_map)
2830 * - A bitmap of which inodes have bad fields. (inode_bad_map)
2831 * - A bitmap of which inodes are imagic inodes. (inode_imagic_map)
2833 * - A bitmap of which blocks are in use by two inodes (block_dup_map)
2834 * - The data blocks of the directory inodes
7782 unsigned int inodes = 0; local
12541 int inodes, inodes_used, blocks, blocks_used; local
[all...]

Completed in 223 milliseconds