Viewing: llapi_heat_get.3
.TH LLAPI_HEAT_GET 3 2024-08-27 "Lustre User API" "Lustre Library Functions"
.SH NAME
llapi_heat_get, llapi_heat_set \- get and clear heat for a file
.SH SYNOPSIS
.nf
.B #include <lustre/lustreapi.h>
.PP
.BI "int llapi_heat_get(int " fd ", struct lu_heat *" heat ");"
.PP
.BI "int llapi_heat_set(int " fd ", __u64 " flags ");"
.fi
.SH DESCRIPTION
The function
.B llapi_heat_get()
returns file access frequency information on the file descriptor
.BR fd .
Information is returned in the
.I heat
argument which should already be allocated, which is a
.B lu_heat
data structure, which contains the following fields:
.nf
.LP
struct lu_heat {
__u32 lh_heat_count;
__u32 lh_padding1;
__u64 lh_heat[];
};
.fi
The function
.B llapi_heat_set()
mainly clears the heat information on the file descriptor
.I fd
according to the parameter
.I flags
which gives options for file heat, currently one of:
.TP
LU_HEAT_FLAG_CLEAR
Clear the heat information for a given file.
.TP
LU_HEAT_FLAG_OFF
Turn off the file heat support for a given file.
.SH RETURN VALUES
.B llapi_heat_get()
and
.B llapi_heat_set()
return 0 on success or a negative errno value on failure.
.SH ERRORS
.TP 15
.B -ENOMEM
Insufficient memory to complete operation.
.TP
.B -EFAULT
Memory region is not properly mapped.
.TP
.B -EINVAL
One or more invalid arguments are given.
.TP
.B EOPNOTSUPP
File heat operation is not supported.
.SH AVAILABILITY
.B llapi_heat_get()
and
.B llapi_heat_set()
are part of the
.BR lustre (7)
user application interface library since release 2.13.0
.\" Added in commit v2_12_52-52-gae723cf816
.SH SEE ALSO
.BR lustreapi (7)