Lines Matching defs:opcode
2617 static const char *opname(enum fuse_opcode opcode)
2619 if (opcode >= FUSE_MAXOP || !fuse_ll_ops[opcode].name)
2622 return fuse_ll_ops[opcode].name;
2682 "unique: %llu, opcode: %s (%i), nodeid: %llu, insize: %zu, pid: %u\n",
2684 opname((enum fuse_opcode) in->opcode), in->opcode,
2714 if (in->opcode != expected)
2716 } else if (in->opcode == FUSE_INIT || in->opcode == CUSE_INIT)
2722 in->opcode != FUSE_INIT && in->opcode != FUSE_READ &&
2723 in->opcode != FUSE_WRITE && in->opcode != FUSE_FSYNC &&
2724 in->opcode != FUSE_RELEASE && in->opcode != FUSE_READDIR &&
2725 in->opcode != FUSE_FSYNCDIR && in->opcode != FUSE_RELEASEDIR &&
2726 in->opcode != FUSE_NOTIFY_REPLY &&
2727 in->opcode != FUSE_READDIRPLUS)
2731 if (in->opcode >= FUSE_MAXOP || !fuse_ll_ops[in->opcode].func)
2733 if (in->opcode != FUSE_INTERRUPT) {
2744 (in->opcode != FUSE_WRITE || !se->op.write_buf) &&
2745 in->opcode != FUSE_NOTIFY_REPLY) {
2766 if (in->opcode == FUSE_WRITE && se->op.write_buf)
2768 else if (in->opcode == FUSE_NOTIFY_REPLY)
2771 fuse_ll_ops[in->opcode].func(req, in->nodeid, inarg);