Searched refs:dnode (Results 1 - 13 of 13) sorted by last modified time

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/appletalk/
H A Dltpc.c726 int dnode, snode, llaptype, len; local
736 dnode = ltc->dnode;
770 skb->data[0] = dnode;
923 cbuf.dnode = skb->data[0];
H A Dltpc.h50 unsigned char dnode; member in struct:lt_sendlap
57 unsigned char dnode; member in struct:lt_rcvlap
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hpfs/
H A DMakefile7 hpfs-objs := alloc.o anode.o buffer.o dentry.o dir.o dnode.o ea.o file.o \
H A Dalloc.c321 * Called before adding to dnode. If we run out of space while
322 * splitting dnodes, it would corrupt dnode tree.
374 hpfs_error(s, "hpfs_free_dnode: dnode %08x not aligned", dno);
396 struct dnode *hpfs_alloc_dnode(struct super_block *s, secno near,
400 struct dnode *d;
H A Ddnode.c2 * linux/fs/hpfs/dnode.c
6 * handling directory dnode tree - adding, deleteing & searching for dirents
11 static loff_t get_pos(struct dnode *d, struct hpfs_dirent *fde)
109 static struct hpfs_dirent *dnode_pre_last_de(struct dnode *d)
119 static struct hpfs_dirent *dnode_last_de(struct dnode *d)
129 static void set_last_pointer(struct super_block *s, struct dnode *d, dnode_secno ptr)
133 hpfs_error(s, "set_last_pointer: empty dnode %08x", d->self);
138 hpfs_error(s, "set_last_pointer: dnode %08x has already last pointer %08x",
143 hpfs_error(s, "set_last_pointer: bad last dirent in dnode %08x", d->self);
149 hpfs_error(s,"set_last_pointer: too long dnode
423 struct dnode *dnode; local
508 struct dnode *dnode; local
698 struct dnode *dnode = qbh->data; local
737 struct dnode *dnode; local
792 struct dnode *dnode; local
844 struct dnode *dnode; local
903 struct dnode *dnode; local
943 struct dnode *dnode; local
[all...]
H A Dhpfs.h26 typedef secno dnode_secno; /* sector number of a dnode */
95 secno dir_band_bitmap; /* free space map, 1 dnode per bit */
146 dnode_secno spare_dnodes[100]; /* emergency free dnode list */
241 corresponds to one 4-sector dnode, bit 0 of the map corresponding to
248 /* dnode: directory. 4 sectors long */
251 contains one pointer, to the root dnode of the tree. The fnode
257 struct dnode { struct
259 unsigned first_free; /* offset from start of dnode to
261 unsigned root_dnode:1; /* Is it root dnode? */
265 secno up; /* (root dnode) director
[all...]
H A Dhpfs_fn.h48 unsigned i_dno; /* (directories) root dnode */
72 unsigned sb_dmap; /* sector number of dnode bit map */
120 /* The first dir entry in a dnode */
122 static inline struct hpfs_dirent *dnode_first_de (struct dnode *dnode) argument
124 return (void *) dnode->dirent;
129 static inline struct hpfs_dirent *dnode_end_de (struct dnode *dnode) argument
131 CHKCOND(dnode->first_free>=0x14 && dnode
[all...]
H A Dmap.c203 * Load dnode to memory and do some checks
206 struct dnode *hpfs_map_dnode(struct super_block *s, unsigned secno,
209 struct dnode *dnode; local
211 if (hpfs_chk_sectors(s, secno, 4, "dnode")) return NULL;
213 hpfs_error(s, "dnode %08x not byte-aligned", secno);
217 if ((dnode = hpfs_map_4sectors(s, secno, qbh, DNODE_RD_AHEAD)))
220 unsigned char *d = (char *)dnode;
222 if (dnode->magic != DNODE_MAGIC) {
223 hpfs_error(s, "bad magic on dnode
[all...]
H A Dnamei.c19 struct dnode *dnode; local
32 dnode = hpfs_alloc_dnode(dir->i_sb, fno, &dno, &qbh0, 1);
33 if (!dnode)
80 dnode->root_dnode = 1;
81 dnode->up = fno;
82 de = hpfs_add_de(dir->i_sb, dnode, "\001\001", 2, 0);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Dls.c133 struct dnode { /* the basic node */ struct
139 struct dnode *next; /* point at the next node */
141 typedef struct dnode dnode_t;
143 static struct dnode **list_dir(const char *);
144 static struct dnode **dnalloc(int);
145 static int list_single(struct dnode *);
161 static struct dnode *my_stat(const char *fullname, const char *name, int force_follow)
164 struct dnode *cur;
191 cur = xmalloc(sizeof(struct dnode));
235 static int count_dirs(struct dnode **d
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/
H A De2fsck.c533 static dnode_t *dnode_init(dnode_t *dnode, void *data) argument
535 dnode->data = data;
536 dnode->parent = NULL;
537 dnode->left = NULL;
538 dnode->right = NULL;
539 return dnode;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/tipc/
H A Dnet.c180 u32 dnode; local
189 dnode = addr_domain(msg_lookup_scope(msg));
190 dport = tipc_nametbl_translate(msg_nametype(msg), msg_nameinst(msg), &dnode);
192 msg_nametype(msg), msg_nameinst(msg), dport, dnode);
194 msg_set_destnode(msg, dnode);
206 u32 dnode; local
228 dnode = msg_short(msg) ? tipc_own_addr : msg_destnode(msg);
229 if (in_scope(dnode, tipc_own_addr)) {
258 tipc_link_send(buf, dnode, msg_link_selector(msg));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/hotplug2/
H A DMakefile14 hotplug2-dnode: hotplug2-dnode.o mem_utils.o parser_utils.o

Completed in 113 milliseconds