/fs/ksmbd/ |
D | server.c | 112 u16 command; in __process_request() local 123 command = conn->ops->get_cmd_val(work); in __process_request() 124 *cmd = command; in __process_request() 127 if (command >= conn->max_cmds) { in __process_request() 132 cmds = &conn->cmds[command]; in __process_request() 134 ksmbd_debug(SMB, "*** not implemented yet cmd = %x\n", command); in __process_request() 139 if (work->sess && conn->ops->is_sign_req(work, command)) { in __process_request() 150 ksmbd_debug(CONN, "Failed to process %u [%d]\n", command, ret); in __process_request() 153 command = ret; in __process_request() 154 *cmd = command; in __process_request() [all …]
|
D | smb2misc.c | 361 int command; in ksmbd_smb2_check_message() local 386 command = le16_to_cpu(hdr->Command); in ksmbd_smb2_check_message() 387 if (command >= NUMBER_OF_SMB2_COMMANDS) { in ksmbd_smb2_check_message() 388 ksmbd_debug(SMB, "Illegal SMB2 command %d\n", command); in ksmbd_smb2_check_message() 392 if (smb2_req_struct_sizes[command] != pdu->StructureSize2) { in ksmbd_smb2_check_message() 393 if (!(command == SMB2_OPLOCK_BREAK_HE && in ksmbd_smb2_check_message() 399 le16_to_cpu(pdu->StructureSize2), command); in ksmbd_smb2_check_message() 406 if (command == SMB2_LOCK_HE) in ksmbd_smb2_check_message() 431 if (command == SMB2_NEGOTIATE_HE) in ksmbd_smb2_check_message() 445 len, clc_len, command, in ksmbd_smb2_check_message()
|
D | smb_common.c | 583 int ksmbd_smb_negotiate_common(struct ksmbd_work *work, unsigned int command) in ksmbd_smb_negotiate_common() argument 592 if (command == SMB2_NEGOTIATE_HE) { in ksmbd_smb_negotiate_common() 597 if (command == SMB_COM_NEGOTIATE) { in ksmbd_smb_negotiate_common() 607 pr_err("Unknown SMB negotiation command: %u\n", command); in ksmbd_smb_negotiate_common()
|
D | smb_common.h | 453 bool (*is_sign_req)(struct ksmbd_work *work, unsigned int command); 494 int ksmbd_smb_negotiate_common(struct ksmbd_work *work, unsigned int command);
|
D | smb2pdu.h | 1660 bool smb2_is_sign_req(struct ksmbd_work *work, unsigned int command);
|
/fs/orangefs/ |
D | devorangefs-req.c | 572 static inline long check_ioctl_command(unsigned int command) in check_ioctl_command() argument 575 if (_IOC_TYPE(command) != ORANGEFS_DEV_MAGIC) { in check_ioctl_command() 577 command, in check_ioctl_command() 578 _IOC_TYPE(command), in check_ioctl_command() 583 if (_IOC_NR(command) >= ORANGEFS_DEV_MAXNR || _IOC_NR(command) <= 0) { in check_ioctl_command() 585 _IOC_NR(command), ORANGEFS_DEV_MAXNR); in check_ioctl_command() 591 static long dispatch_ioctl_command(unsigned int command, unsigned long arg) in dispatch_ioctl_command() argument 603 switch (command) { in dispatch_ioctl_command() 700 unsigned int command, unsigned long arg) in orangefs_devreq_ioctl() argument 705 ret = check_ioctl_command(command); in orangefs_devreq_ioctl() [all …]
|
/fs/cifs/ |
D | smb2misc.c | 142 int command; in smb2_check_message() local 199 command = le16_to_cpu(shdr->Command); in smb2_check_message() 200 if (command >= NUMBER_OF_SMB2_COMMANDS) { in smb2_check_message() 201 cifs_dbg(VFS, "Invalid SMB2 command %d\n", command); in smb2_check_message() 205 if (smb2_rsp_struct_sizes[command] != pdu->StructureSize2) { in smb2_check_message() 206 if (command != SMB2_OPLOCK_BREAK_HE && (shdr->Status == 0 || in smb2_check_message() 210 le16_to_cpu(pdu->StructureSize2), command); in smb2_check_message() 212 } else if (command == SMB2_OPLOCK_BREAK_HE in smb2_check_message() 232 if (command == SMB2_CREATE_HE && in smb2_check_message() 236 if (clc_len + 24 == len && command == SMB2_OPLOCK_BREAK_HE) in smb2_check_message() [all …]
|
D | smb2inode.c | 53 __u32 create_options, umode_t mode, void *ptr, int command, in smb2_compound_op() argument 122 switch (command) { in smb2_compound_op() 398 switch (command) { in smb2_compound_op() 677 struct cifs_sb_info *cifs_sb, __u32 access, int command, in smb2_set_path_attr() argument 690 command, cfile); in smb2_set_path_attr()
|
D | transport.c | 55 temp->command = cpu_to_le16(smb_buffer->Command); in AllocMidQEntry() 81 __le16 command = midEntry->server->vals->lock_cmd; in _cifs_mid_q_entry_release() local 82 __u16 smb_cmd = le16_to_cpu(midEntry->command); in _cifs_mid_q_entry_release() 130 (midEntry->command != command)) { in _cifs_mid_q_entry_release() 142 midEntry->command, midEntry->mid); in _cifs_mid_q_entry_release() 913 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state); in cifs_sync_mid_result() 1203 midQ[i]->mid, le16_to_cpu(midQ[i]->command)); in compound_send_recv()
|
D | ioctl.c | 313 long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) in cifs_ioctl() argument 328 cifs_dbg(FYI, "cifs ioctl 0x%x\n", command); in cifs_ioctl() 329 switch (command) { in cifs_ioctl()
|
D | cifs_debug.c | 62 le16_to_cpu(mid_entry->command), in cifs_dump_mids() 470 le16_to_cpu(mid_entry->command), in cifs_debug_data_proc_show()
|
D | smb2transport.c | 721 temp->command = shdr->Command; /* Always LE */ in smb2_mid_entry_alloc()
|
D | smb1ops.c | 98 le16_to_cpu(mid->command) == buf->Command) { in cifs_find_mid()
|
D | cifsglob.h | 1560 __le16 command; /* smb command code */ member
|
/fs/autofs/ |
D | dev-ioctl.c | 593 static int _autofs_dev_ioctl(unsigned int command, in _autofs_dev_ioctl() argument 604 cmd = _IOC_NR(command); in _autofs_dev_ioctl() 606 if (_IOC_TYPE(command) != _IOC_TYPE(AUTOFS_DEV_IOCTL_IOC_FIRST) || in _autofs_dev_ioctl() 624 err = validate_dev_ioctl(command, param); in _autofs_dev_ioctl() 630 pr_warn("unknown command 0x%08x\n", command); in _autofs_dev_ioctl() 688 static long autofs_dev_ioctl(struct file *file, unsigned int command, in autofs_dev_ioctl() argument 693 err = _autofs_dev_ioctl(command, (struct autofs_dev_ioctl __user *) u); in autofs_dev_ioctl() 698 static long autofs_dev_ioctl_compat(struct file *file, unsigned int command, in autofs_dev_ioctl_compat() argument 701 return autofs_dev_ioctl(file, command, (unsigned long) compat_ptr(u)); in autofs_dev_ioctl_compat()
|
/fs/proc/ |
D | Kconfig | 22 That location should be /proc. A command such as "mount -t proc proc 62 dump using the kernel command line option 'novmcoredd'.
|
/fs/sysfs/ |
D | Kconfig | 22 the kernel boot command line via its major and minor numbers. For
|
/fs/ntfs3/ |
D | Kconfig | 29 In Windows 10 one can use command "compact" to compress any files.
|
/fs/nfs/ |
D | Kconfig | 15 install the user space mount.nfs command which can be found in 17 Information about using the mount command is available in the
|
/fs/ntfs/ |
D | Kconfig | 39 at the kernel command line when booting the kernel or as an option
|
/fs/f2fs/ |
D | Kconfig | 74 option if you use the setcap command to assign initial process capabi-
|
/fs/pstore/ |
D | Kconfig | 82 the kernel command line.
|
/fs/ |
D | Kconfig | 262 be disabled on the command line via hugetlb_free_vmemmap=off.
|
/fs/fuse/ |
D | backing.c | 975 long fuse_backing_ioctl(struct file *file, unsigned int command, unsigned long arg, int flags) in fuse_backing_ioctl() argument 983 ret = vfs_ioctl(ff->backing_file, command, arg); in fuse_backing_ioctl()
|
/fs/ext4/ |
D | namei.c | 215 #define dxtrace(command) command argument 217 #define dxtrace(command) argument
|