Home
last modified time | relevance | path

Searched refs:kind (Results 1 – 25 of 87) sorted by relevance

1234

/linux-2.4.37.9/net/sched/
Dcls_api.c47 struct tcf_proto_ops * tcf_proto_lookup_ops(struct rtattr *kind) in tcf_proto_lookup_ops() argument
51 if (kind) { in tcf_proto_lookup_ops()
54 if (rtattr_strcmp(kind, t->kind) == 0) in tcf_proto_lookup_ops()
70 if (strcmp(ops->kind, t->kind) == 0) { in register_tcf_proto_ops()
204 struct rtattr *kind = tca[TCA_KIND-1]; in tc_ctl_tfilter() local
207 if (RTA_PAYLOAD(kind) <= IFNAMSIZ) { in tc_ctl_tfilter()
208 sprintf(module_name, "cls_%s", (char*)RTA_DATA(kind)); in tc_ctl_tfilter()
210 tp_ops = tcf_proto_lookup_ops(kind); in tc_ctl_tfilter()
237 } else if (tca[TCA_KIND-1] && rtattr_strcmp(tca[TCA_KIND-1], tp->ops->kind)) in tc_ctl_tfilter()
304 RTA_PUT(skb, TCA_KIND, IFNAMSIZ, tp->ops->kind); in tcf_fill_node()
Dsch_api.c223 struct Qdisc_ops *qdisc_lookup_ops(struct rtattr *kind) in qdisc_lookup_ops() argument
227 if (kind) { in qdisc_lookup_ops()
230 if (rtattr_strcmp(kind, q->id) == 0) in qdisc_lookup_ops()
393 struct rtattr *kind = tca[TCA_KIND-1]; in qdisc_create() local
398 ops = qdisc_lookup_ops(kind); in qdisc_create()
403 if (RTA_PAYLOAD(kind) <= IFNAMSIZ) { in qdisc_create()
404 sprintf(module_name, "sch_%s", (char*)RTA_DATA(kind)); in qdisc_create()
406 ops = qdisc_lookup_ops(kind); in qdisc_create()
425 if (ops != qdisc_lookup_ops(kind)) in qdisc_create()
/linux-2.4.37.9/fs/xfs/
Dxfs_acl.c226 int kind) in xfs_acl_vget() argument
243 xfs_acl_get_attr(vp, xfs_acl, kind, flags, &error); in xfs_acl_vget()
254 if (kind == _ACL_TYPE_ACCESS) { in xfs_acl_vget()
275 int kind) in xfs_acl_vremove() argument
280 error = xfs_acl_allow_set(vp, kind); in xfs_acl_vremove()
282 VOP_ATTR_REMOVE(vp, kind == _ACL_TYPE_DEFAULT? in xfs_acl_vremove()
297 int kind) in xfs_acl_vset() argument
321 error = xfs_acl_allow_set(vp, kind); in xfs_acl_vset()
326 if (kind == _ACL_TYPE_ACCESS) in xfs_acl_vset()
336 xfs_acl_set_attr(vp, xfs_acl, kind, &error); in xfs_acl_vset()
[all …]
/linux-2.4.37.9/fs/hfsplus/
Dbnode.c79 if (node->kind == HFSPLUS_NODE_LEAF || in hfsplus_bnode_read_key()
297 desc.kind, desc.height, be16_to_cpu(desc.num_rec)); in hfsplus_bnode_dump()
303 if (i && node->kind == HFSPLUS_NODE_NDX) { in hfsplus_bnode_dump()
332 new_node->kind = HFSPLUS_NODE_LEAF; in hfsplus_btree_add_level()
335 new_node->kind = HFSPLUS_NODE_NDX; in hfsplus_btree_add_level()
345 node_desc.kind = new_node->kind; in hfsplus_btree_add_level()
393 new_node->kind = node->kind; in hfsplus_bnode_split()
450 node_desc.kind = new_node->kind; in hfsplus_bnode_split()
522 if (node->kind == HFSPLUS_NODE_LEAF) { in hfsplus_bnode_insert_rec()
685 if (node->kind == HFSPLUS_NODE_LEAF) { in hfsplus_bnode_remove_rec()
[all …]
Dbrec.c32 if ((node->kind != HFSPLUS_NODE_NDX)&&(node->kind != HFSPLUS_NODE_LEAF)) in hfsplus_brec_keylen()
36 if ((node->kind == HFSPLUS_NODE_NDX) && in hfsplus_brec_keylen()
Dbtree.c249 } else if (node->kind == HFSPLUS_NODE_LEAF) in hfsplus_btree_remove_node()
258 } else if (node->kind == HFSPLUS_NODE_LEAF) in hfsplus_btree_remove_node()
294 if (node->kind != HFSPLUS_NODE_MAP) in hfsplus_btree_free_node()
/linux-2.4.37.9/drivers/ide/ppc/
Dpmac.c57 int kind; member
444 if (pmif->kind == controller_un_ata6) in pmac_ide_do_update_timings()
551 switch (pmif->kind) { in pmac_ide_tuneproc()
800 if (pmif->kind != controller_un_ata6) in pmac_ide_tune_chipset()
809 if (pmif->kind == controller_kl_ata4) in pmac_ide_tune_chipset()
811 else if (pmif->kind == controller_un_ata6) in pmac_ide_tune_chipset()
819 ret = set_timings_mdma(pmif->kind, timings, timings2, speed, 0); in pmac_ide_tune_chipset()
854 switch(pmif->kind) { in sanitize_timings()
1096 pmif->kind = controller_un_ata6; in pmac_ide_probe()
1100 pmif->kind = controller_kl_ata4; in pmac_ide_probe()
[all …]
/linux-2.4.37.9/arch/mips/dec/
Decc-berr.c58 const char *kind, *agent, *cycle, *event; in dec_ecc_be_backend() local
73 kind = invoker ? intstr : excstr; in dec_ecc_be_backend()
77 printk(KERN_ALERT "Unidentified bus error %s.\n", kind); in dec_ecc_be_backend()
188 kind, agent, cycle, event, address); in dec_ecc_be_backend()
/linux-2.4.37.9/net/core/
Drtnetlink.c281 int sz_idx, kind; in rtnetlink_rcv_msg() local
319 kind = type&3; in rtnetlink_rcv_msg()
321 if (kind != 2 && !cap_raised(NETLINK_CB(skb).eff_cap, CAP_NET_ADMIN)) { in rtnetlink_rcv_msg()
326 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) { in rtnetlink_rcv_msg()
347 if (kind != 2) { in rtnetlink_rcv_msg()
/linux-2.4.37.9/Documentation/i2c/
Dfunctionality93 unsigned short flags, int kind)
123 /* Some kind of error handling */
127 /* Some kind of error handling */
Dproc-interface21 The second column documents what kind of adapter this is. Some adapters
23 and yet others are some kind of pseudo-adapters that do not understand
Dwriting-clients134 but many chips have some kind of register-value idea that can easily
369 The `kind' parameter contains 0 if this call is due to a `force'
385 unsigned short flags, int kind)
419 if (kind < 0) /* Only if no force parameter was used */ {
471 if (kind < 0) {
484 if (kind <= 0) {
487 kind = chip1; /* As defined in the enum */
489 kind = chip2;
498 if (kind == chip1) {
501 } else if (kind == chip2) {
[all …]
/linux-2.4.37.9/fs/
Dblock_dev.c590 int blkdev_get(struct block_device *bdev, mode_t mode, unsigned flags, int kind) in blkdev_get() argument
626 int blkdev_put(struct block_device *bdev, int kind) in blkdev_put() argument
634 if (kind == BDEV_FILE) in blkdev_put()
636 else if (kind == BDEV_FS) in blkdev_put()
/linux-2.4.37.9/include/net/
Dpkt_cls.h45 char kind[IFNAMSIZ]; member
/linux-2.4.37.9/include/linux/
Di2c-proc.h94 unsigned short kind; member
350 int kind);
/linux-2.4.37.9/fs/hfs/
Dinode.c114 static int __hfs_notify_change(struct dentry *dentry, struct iattr * attr, int kind) in __hfs_notify_change() argument
161 if (kind == HFS_CAP) { in __hfs_notify_change()
167 } else if (kind == HFS_HDR) { in __hfs_notify_change()
/linux-2.4.37.9/drivers/net/
Dppp_generic.c74 } kind; member
263 static void init_ppp_file(struct ppp_file *pf, int kind);
357 if (pf->kind == INTERFACE) { in ppp_release()
363 switch (pf->kind) { in ppp_release()
445 switch (pf->kind) { in ppp_write()
504 if (pf->kind == INTERFACE) { in ppp_ioctl()
518 if (pf->kind == CHANNEL) { in ppp_ioctl()
544 if (pf->kind != INTERFACE) { in ppp_ioctl()
2304 init_ppp_file(struct ppp_file *pf, int kind) in init_ppp_file() argument
2306 pf->kind = kind; in init_ppp_file()
/linux-2.4.37.9/Documentation/
DLVM-HOWTO6 The LVM adds a kind of virtual disks and virtual partitions functionality
23 Logical volumes are a kind of virtual partitions.
/linux-2.4.37.9/drivers/media/video/
Dindycam.c38 static int indycam_attach(struct i2c_adapter *adap, int addr, int kind) in indycam_attach() argument
Dtuner-3036.c118 unsigned short flags, int kind) in tuner_attach() argument
Dbt832.c172 unsigned short flags, int kind) in bt832_attach() argument
/linux-2.4.37.9/Documentation/isdn/
D00-INDEX4 - list of the kind folks that brought you this stuff.
/linux-2.4.37.9/net/802/
DTODO5 There is not serialization of any kind right now.
/linux-2.4.37.9/include/asm-m68k/
Dswim_iop.h207 __u16 kind; /* 0 = media icon, 1 = drive icon */ member
/linux-2.4.37.9/drivers/i2c/
Di2c-max1617.c121 static int max1617_attach(struct i2c_adapter *adap, int addr, unsigned short flags, int kind) in max1617_attach() argument

1234