Lines Matching +full:trace +full:- +full:buffer +full:- +full:extension

1 /* SPDX-License-Identifier: GPL-2.0-only */
16 * enum p9_debug_flags - bits for mount time debug parameter
21 * @P9_DEBUG_MUX: trace management of concurrent transactions
27 * @P9_DEBUG_FSC: FS-cache tracing
62 * enum p9_msg_t - 9P message types
112 * See Also: http://plan9.bell-labs.com/sys/man/5/INDEX.html
187 * enum p9_open_mode_t - 9P open modes
192 * @P9_OTRUNC: truncate file to zero-length before opening it
205 * See Also: http://plan9.bell-labs.com/magic/man2html/2/open
221 * enum p9_perm_t - 9P permissions
223 * @P9_DMAPPEND: mode bit for is append-only
227 * @P9_DMTMP: mode bit for non-backed-up files
229 * @P9_DMLINK: mode bit for hard-link (9P2000.u)
239 * See Also: http://plan9.bell-labs.com/magic/man2html/2/stat
289 * enum p9_qid_t - QID types
291 * @P9_QTAPPEND: append-only
295 * @P9_QTTMP: non-backed-up files
297 * @P9_QTLINK: hard-link (9P2000.u)
300 * QID types are a subset of permissions - they are primarily
302 * a jump-table. Their value is also the most significant 16 bits
305 * See Also: http://plan9.bell-labs.com/magic/man2html/2/stat
337 * struct p9_qid - file system entity information
338 * @type: 8-bit type &p9_qid_t
339 * @version: 16-bit monotonically incrementing version number
340 * @path: 64-bit per-server-unique ID for a file system element
353 * See Also://plan9.bell-labs.com/magic/man2html/2/stat
363 * struct p9_wstat - file system metadata information
366 * @dev: the sub-type of the server (equivalent to a minor number)
376 * @extension: area used to encode extended UNIX support
377 * @n_uid: numeric user id of owner (part of 9p2000.u extension)
378 * @n_gid: numeric group id (part of 9p2000.u extension)
379 * @n_muid: numeric user id of laster modifier (part of 9p2000.u extension)
381 * See Also: http://plan9.bell-labs.com/magic/man2html/2/stat
397 char *extension; /* 9p2000.u extensions */ member
446 * struct p9_iattr_dotl - P9 inode attribute for setattr
480 * @type - type of lock
481 * @flags - lock flags
482 * @start - starting offset of the lock
483 * @length - number of bytes
484 * @proc_id - process id which wants to take lock
485 * @client_id - client id
498 * @type - type of lock
499 * @start - starting offset of the lock
500 * @length - number of bytes
501 * @proc_id - process id which wants to take lock
502 * @client_id - client id
526 * struct p9_fcall - primary packet structure
530 * @offset: used by marshalling routines to track current position in buffer
538 * See Also: http://plan9.bell-labs.com/magic/man2html/2/fcall