summaryrefslogtreecommitdiff
path: root/libdm/.exported_symbols.DM_1_02_104
Commit message (Collapse)AuthorAgeFilesLines
* symver: sortingZdenek Kabelac2021-04-061-6/+6
|
* symver: restore and uncomment some symbolsZdenek Kabelac2021-04-061-0/+1
|
* libdm: Drop ignored duplicate export designation.Alasdair G Kergon2015-08-261-1/+0
| | | | | | | | dm_stats_create_region is now assigned to DM_1_02_106 by default: the DM_1_02_104 .exported_symbols file entry was moved into libdm-stats.c as: DM_EXPORT_SYMBOL(dm_stats_create_region, 1_02_104) so delete it from .exported_symbols.DM_1_02_104.
* pre-releasev2_02_128Alasdair G Kergon2015-08-171-1/+0
|
* libdm: add dm_timestamp_copy()Bryn M. Reeves2015-08-121-0/+1
|
* dmstats: add libdm-stats library and 'dmsetup stats' commandBryn M. Reeves2015-08-091-0/+68
| | | | | | | | | | | | | | | | | | | | Add the libdm-stats module to libdm: this implements a simple interface for creating, managing and interrogating I/O statistics regions and areas on device-mapper devices. The library interface is documented in libdevmapper.h and provides a 'dm_stats' handle that is used to perform statistics operations and obtain data. Public methods are provided to create and destroy handles and to list, create, and destroy statistics regions as well as to obtain and parse counter data and calculate rate-based metrics. This commit also adds a 'dmsetup stats' (aka 'dmstats') command with 'clear', 'create', 'delete', 'list', 'print', and 'report' sub-commands. See the library documentation and the dmstats.8 manual page for detailed API and command descriptions.
* libdm: remove report interval supportBryn M. Reeves2015-08-081-5/+0
| | | | | | | | Don't do interval management and external timekeeping for stats in dm_report: let applications handle this on their own. Since this has not been included in a release remove it from the library entirely and handle report timing directly inside dmsetup.
* libdm: add dm_report_column_headingsBryn M. Reeves2015-08-081-0/+1
| | | | | | | | | | | | Add a function to print column headings regardless of whether they have already been output. This will be used by dmstats to issue periodic reminders of the column headings. This patch removes a check for RH_HEADINGS_PRINTED from _report_headings that prevents headings being displayed if the flag is already set; this check is redundant since the only existing caller (_output_as_columns()) already tests the flag before calling the function.
* dmsetup: Report timestamps of ioctls with -vvv.Alasdair G Kergon2015-08-051-0/+2
| | | | If enabled, record timestamp immediately after the ioctl() returns.
* libdm: Sort new exported symbols.Alasdair G Kergon2015-08-051-3/+3
|
* dmsetup: Add --count and --interval to reports.Bryn M. Reeves2015-07-311-0/+5
| | | | | For example, to monitor active devices every second you can now run dmsetup info -c --count 0.
* libdm: Add dm_timestamp functions.Alasdair G Kergon2015-07-291-0/+5
|
* libdm: Add dm_size_to_string to libdevmapper.Alasdair G Kergon2015-07-271-0/+1
Moved out from lib/display and a little documentation added. It's tuned to LVM's requirements historically and its behaviour might not always be what you would expect.