/usr/include/libdmmp/libdmmp.h is in multipath-tools 0.7.4-2ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 | /*
* Copyright (C) 2015 - 2017 Red Hat, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Gris Ge <fge@redhat.com>
* Todd Gill <tgill@redhat.com>
*/
#ifndef _LIB_DMMP_H_
#define _LIB_DMMP_H_
#include <stdint.h>
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
#define DMMP_DLL_EXPORT __attribute__ ((visibility ("default")))
#define DMMP_DLL_LOCAL __attribute__ ((visibility ("hidden")))
#define DMMP_OK 0
#define DMMP_ERR_BUG 1
#define DMMP_ERR_NO_MEMORY 2
#define DMMP_ERR_IPC_TIMEOUT 3
#define DMMP_ERR_IPC_ERROR 4
#define DMMP_ERR_NO_DAEMON 5
#define DMMP_ERR_INCOMPATIBLE 6
#define DMMP_ERR_MPATH_BUSY 7
#define DMMP_ERR_MPATH_NOT_FOUND 8
#define DMMP_ERR_INVALID_ARGUMENT 9
/*
* Use the syslog severity level as log priority
*/
#define DMMP_LOG_PRIORITY_ERROR 3
#define DMMP_LOG_PRIORITY_WARNING 4
#define DMMP_LOG_PRIORITY_INFO 6
#define DMMP_LOG_PRIORITY_DEBUG 7
#define DMMP_LOG_PRIORITY_DEFAULT DMMP_LOG_PRIORITY_WARNING
/**
* dmmp_log_priority_str() - Convert log priority to string.
*
* Convert log priority to string (const char *).
*
* @priority:
* int. Log priority.
*
* Return:
* const char *. Valid string are:
*
* * "ERROR" for DMMP_LOG_PRIORITY_ERROR
*
* * "WARN " for DMMP_LOG_PRIORITY_WARNING
*
* * "INFO " for DMMP_LOG_PRIORITY_INFO
*
* * "DEBUG" for DMMP_LOG_PRIORITY_DEBUG
*
* * "Invalid argument" for invalid log priority.
*/
DMMP_DLL_EXPORT const char *dmmp_log_priority_str(int priority);
struct DMMP_DLL_EXPORT dmmp_context;
struct DMMP_DLL_EXPORT dmmp_mpath;
struct DMMP_DLL_EXPORT dmmp_path_group;
#define DMMP_PATH_GROUP_STATUS_UNKNOWN 0
#define DMMP_PATH_GROUP_STATUS_ENABLED 1
#define DMMP_PATH_GROUP_STATUS_DISABLED 2
#define DMMP_PATH_GROUP_STATUS_ACTIVE 3
struct DMMP_DLL_EXPORT dmmp_path;
#define DMMP_PATH_STATUS_UNKNOWN 0
//#define DMMP_PATH_STATUS_UNCHECKED 1
// ^ print.h does not expose this.
#define DMMP_PATH_STATUS_DOWN 2
#define DMMP_PATH_STATUS_UP 3
#define DMMP_PATH_STATUS_SHAKY 4
#define DMMP_PATH_STATUS_GHOST 5
#define DMMP_PATH_STATUS_PENDING 6
#define DMMP_PATH_STATUS_TIMEOUT 7
//#define DMMP_PATH_STATUS_REMOVED 8
// ^ print.h does not expose this.
#define DMMP_PATH_STATUS_DELAYED 9
/**
* dmmp_strerror() - Convert error code to string.
*
* Convert error code (int) to string (const char *):
*
* * DMMP_OK -- "OK"
*
* * DMMP_ERR_BUG -- "BUG of libdmmp library"
*
* * DMMP_ERR_NO_MEMORY -- "Out of memory"
*
* * DMMP_ERR_IPC_TIMEOUT -- "Timeout when communicate with multipathd,
* try to set bigger timeout value via dmmp_context_timeout_set ()"
*
* * DMMP_ERR_IPC_ERROR -- "Error when communicate with multipathd daemon"
*
* * DMMP_ERR_NO_DAEMON -- "The multipathd daemon not started"
*
* * DMMP_ERR_INCOMPATIBLE -- "The multipathd daemon version is not
* compatible with current library"
*
* * Other invalid error number -- "Invalid argument"
*
* @rc:
* int. Return code by libdmmp functions. When provided error code is not a
* valid error code, return "Invalid argument".
*
* Return:
* const char *. The meaning of provided error code.
*
*/
DMMP_DLL_EXPORT const char *dmmp_strerror(int rc);
/**
* dmmp_context_new() - Create struct dmmp_context.
*
* The default logging level (DMMP_LOG_PRIORITY_DEFAULT) is
* DMMP_LOG_PRIORITY_WARNING which means only warning and error message will be
* forward to log handler function. The default log handler function will print
* log message to STDERR, to change so, please use dmmp_context_log_func_set()
* to set your own log handler, check manpage libdmmp.h(3) for detail.
*
* Return:
* Pointer of 'struct dmmp_context'. Should be freed by
* dmmp_context_free().
*/
DMMP_DLL_EXPORT struct dmmp_context *dmmp_context_new(void);
/**
* dmmp_context_free() - Release the memory of struct dmmp_context.
*
* Release the memory of struct dmmp_context, but the userdata memory defined
* via dmmp_context_userdata_set() will not be touched.
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* Return:
* void
*/
DMMP_DLL_EXPORT void dmmp_context_free(struct dmmp_context *ctx);
/**
* dmmp_context_timeout_set() - Set IPC timeout.
*
* By default, the IPC to multipathd daemon will timeout after 60 seconds.
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
*
* @tmo:
* Timeout in milliseconds(1 seconds equal 1000 milliseconds).
* 0 means infinite, function only return when error or pass.
*
* Return:
* void
*/
DMMP_DLL_EXPORT void dmmp_context_timeout_set(struct dmmp_context *ctx,
unsigned int tmo);
/**
* dmmp_context_timeout_get() - Get IPC timeout.
*
* Retrieve timeout value of IPC connection to multipathd daemon.
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* unsigned int. Timeout in milliseconds.
*/
DMMP_DLL_EXPORT unsigned int dmmp_context_timeout_get(struct dmmp_context *ctx);
/**
* dmmp_context_log_priority_set() - Set log priority.
*
*
* When library generates log message, only equal or more important(less value)
* message will be forwarded to log handler function. Valid log priority values
* are:
*
* * DMMP_LOG_PRIORITY_ERROR -- 3
*
* * DMMP_LOG_PRIORITY_WARNING -- 4
*
* * DMMP_LOG_PRIORITY_INFO -- 5
*
* * DMMP_LOG_PRIORITY_DEBUG -- 7
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
*
* @priority:
* int, log priority.
*
* Return:
* void
*/
DMMP_DLL_EXPORT void dmmp_context_log_priority_set(struct dmmp_context *ctx,
int priority);
/**
* dmmp_context_log_priority_get() - Get log priority.
*
* Retrieve current log priority. Valid log priority values are:
*
* * DMMP_LOG_PRIORITY_ERROR -- 3
*
* * DMMP_LOG_PRIORITY_WARNING -- 4
*
* * DMMP_LOG_PRIORITY_INFO -- 5
*
* * DMMP_LOG_PRIORITY_DEBUG -- 7
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* int, log priority.
*/
DMMP_DLL_EXPORT int dmmp_context_log_priority_get(struct dmmp_context *ctx);
/**
* dmmp_context_log_func_set() - Set log handler function.
*
* Set custom log handler. The log handler will be invoked when log message
* is equal or more important(less value) than log priority setting.
* Please check manpage libdmmp.h(3) for detail usage.
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
* @log_func:
* Pointer of log handler function.
*
* Return:
* void
*/
DMMP_DLL_EXPORT void dmmp_context_log_func_set
(struct dmmp_context *ctx,
void (*log_func)
(struct dmmp_context *ctx, int priority,
const char *file, int line, const char *func_name,
const char *format, va_list args));
/**
* dmmp_context_userdata_set() - Set user data pointer.
*
* Store user data pointer into 'struct dmmp_context'.
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
* @userdata:
* Pointer of user defined data.
*
* Return:
* void
*/
DMMP_DLL_EXPORT void dmmp_context_userdata_set(struct dmmp_context *ctx,
void *userdata);
/**
* dmmp_context_userdata_get() - Get user data pointer.
*
* Retrieve user data pointer from 'struct dmmp_context'.
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* void *. Pointer of user defined data.
*/
DMMP_DLL_EXPORT void *dmmp_context_userdata_get(struct dmmp_context *ctx);
/**
* dmmp_mpath_array_get() - Query all existing multipath devices.
*
* Query all existing multipath devices and store them into a pointer array.
* The memory of 'dmmp_mps' should be freed via dmmp_mpath_array_free().
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
* @dmmp_mps:
* Output pointer array of 'struct dmmp_mpath'.
* If this pointer is NULL, your program will be terminated by assert.
* @dmmp_mp_count:
* Output pointer of uint32_t. Hold the size of 'dmmp_mps' pointer array.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* int. Valid error codes are:
*
* * DMMP_OK
*
* * DMMP_ERR_BUG
*
* * DMMP_ERR_NO_MEMORY
*
* * DMMP_ERR_NO_DAEMON
*
* * DMMP_ERR_INCONSISTENT_DATA
*
* Error number could be converted to string by dmmp_strerror().
*/
DMMP_DLL_EXPORT int dmmp_mpath_array_get(struct dmmp_context *ctx,
struct dmmp_mpath ***dmmp_mps,
uint32_t *dmmp_mp_count);
/**
* dmmp_mpath_array_free() - Free 'struct dmmp_mpath' pointer array.
*
* Free the 'dmmp_mps' pointer array generated by dmmp_mpath_array_get().
* If provided 'dmmp_mps' pointer is NULL or dmmp_mp_count == 0, do nothing.
*
* @dmmp_mps:
* Pointer of 'struct dmmp_mpath' array.
* @dmmp_mp_count:
* uint32_t, the size of 'dmmp_mps' pointer array.
*
* Return:
* void
*/
DMMP_DLL_EXPORT void dmmp_mpath_array_free(struct dmmp_mpath **dmmp_mps,
uint32_t dmmp_mp_count);
/**
* dmmp_mpath_wwid_get() - Retrieve WWID of certain mpath.
*
* @dmmp_mp:
* Pointer of 'struct dmmp_mpath'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* const char *. No need to free this memory, the resources will get
* freed when dmmp_mpath_array_free().
*/
DMMP_DLL_EXPORT const char *dmmp_mpath_wwid_get(struct dmmp_mpath *dmmp_mp);
/**
* dmmp_mpath_name_get() - Retrieve name(alias) of certain mpath.
*
* Retrieve the name (also known as alias) of certain mpath.
* When the config 'user_friendly_names' been set 'no', the name will be
* identical to WWID retrieved by dmmp_mpath_wwid_get().
*
* @dmmp_mp:
* Pointer of 'struct dmmp_mpath'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* const char *. No need to free this memory, the resources will get
* freed when dmmp_mpath_array_free().
*/
DMMP_DLL_EXPORT const char *dmmp_mpath_name_get(struct dmmp_mpath *dmmp_mp);
/**
* dmmp_mpath_kdev_name_get() - Retrieve kernel DEVNAME of certain mpath.
*
* Retrieve DEVNAME name used by kernel uevent of specified mpath.
* Example: 'dm-1'.
*
* @dmmp_mp:
* Pointer of 'struct dmmp_mpath'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* const char *. No need to free this memory, the resources will get
* freed when dmmp_mpath_array_free().
*/
DMMP_DLL_EXPORT const char *dmmp_mpath_kdev_name_get
(struct dmmp_mpath *dmmp_mp);
/**
* dmmp_path_group_array_get() - Retrieve path groups pointer array.
*
* Retrieve the path groups of certain mpath.
*
* The memory of output pointer array is hold by 'struct dmmp_mpath', no
* need to free this memory, the resources will got freed when
* dmmp_mpath_array_free().
*
* @dmmp_mp:
* Pointer of 'struct dmmp_mpath'.
* If this pointer is NULL, your program will be terminated by assert.
* @dmmp_pgs:
* Output pointer of 'struct dmmp_path_group' pointer array.
* If this pointer is NULL, your program will be terminated by assert.
* @dmmp_pg_count:
* Output pointer of uint32_t. Hold the size of 'dmmp_pgs' pointer array.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* void
*/
DMMP_DLL_EXPORT void dmmp_path_group_array_get
(struct dmmp_mpath *dmmp_mp, struct dmmp_path_group ***dmmp_pgs,
uint32_t *dmmp_pg_count);
/**
* dmmp_path_group_id_get() - Retrieve path group ID.
*
* Retrieve the path group ID which could be used to switch active path group
* via command:
*
* multipathd -k'switch multipath mpathb group $id'
*
* @dmmp_pg:
* Pointer of 'struct dmmp_path_group'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* uint32_t.
*/
DMMP_DLL_EXPORT uint32_t dmmp_path_group_id_get
(struct dmmp_path_group *dmmp_pg);
/**
* dmmp_path_group_priority_get() - Retrieve path group priority.
*
* The enabled path group with highest priority will be next active path group
* if active path group down.
*
* @dmmp_pg:
* Pointer of 'struct dmmp_path_group'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* uint32_t.
*/
DMMP_DLL_EXPORT uint32_t dmmp_path_group_priority_get
(struct dmmp_path_group *dmmp_pg);
/**
* dmmp_path_group_status_get() - Retrieve path group status.
*
* The valid path group statuses are:
*
* * DMMP_PATH_GROUP_STATUS_UNKNOWN
*
* * DMMP_PATH_GROUP_STATUS_ENABLED -- standby to be active
*
* * DMMP_PATH_GROUP_STATUS_DISABLED -- disabled due to all path down
*
* * DMMP_PATH_GROUP_STATUS_ACTIVE -- selected to handle I/O
*
* @dmmp_pg:
* Pointer of 'struct dmmp_path_group'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* uint32_t.
*/
DMMP_DLL_EXPORT uint32_t dmmp_path_group_status_get
(struct dmmp_path_group *dmmp_pg);
/**
* dmmp_path_group_status_str() - Convert path group status to string.
*
* Convert path group status uint32_t to string (const char *).
*
* @pg_status:
* uint32_t. Path group status.
* When provided value is not a valid path group status, return "Invalid
* argument".
*
* Return:
* const char *. Valid string are:
*
* * "Invalid argument"
*
* * "undef"
*
* * "enabled"
*
* * "disabled"
*
* * "active"
*/
DMMP_DLL_EXPORT const char *dmmp_path_group_status_str(uint32_t pg_status);
/**
* dmmp_path_group_selector_get() - Retrieve path group selector.
*
* Path group selector determine which path in active path group will be
* use to next I/O.
*
* @dmmp_pg:
* Pointer of 'struct dmmp_path_group'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* const char *.
*/
DMMP_DLL_EXPORT const char *dmmp_path_group_selector_get
(struct dmmp_path_group *dmmp_pg);
/**
* dmmp_path_array_get() - Retrieve path pointer array.
*
* The memory of output pointer array is hold by 'struct dmmp_mpath', no
* need to free this memory, the resources will got freed when
* dmmp_mpath_array_free().
*
* @dmmp_pg:
* Pointer of 'struct dmmp_path_group'.
* If this pointer is NULL, your program will be terminated by assert.
* @dmmp_ps:
* Output pointer of 'struct dmmp_path' pointer array.
* If this pointer is NULL, your program will be terminated by assert.
* @dmmp_p_count:
* Output pointer of uint32_t. Hold the size of 'dmmp_ps' pointer array.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* void
*/
DMMP_DLL_EXPORT void dmmp_path_array_get(struct dmmp_path_group *dmmp_pg,
struct dmmp_path ***dmmp_ps,
uint32_t *dmmp_p_count);
/**
* dmmp_path_blk_name_get() - Retrieve block name.
*
* Retrieve block name of certain path. The example of block names are 'sda',
* 'nvme0n1'.
*
* @dmmp_p:
* Pointer of 'struct dmmp_path'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* const char *. No need to free this memory, the resources will get
* freed when dmmp_mpath_array_free().
*/
DMMP_DLL_EXPORT const char *dmmp_path_blk_name_get(struct dmmp_path *dmmp_p);
/**
* dmmp_path_status_get() - Retrieve the path status.
*
* The valid path statuses are:
*
* * DMMP_PATH_STATUS_UNKNOWN
*
* * DMMP_PATH_STATUS_DOWN
*
* Path is down and you shouldn't try to send commands to it.
*
* * DMMP_PATH_STATUS_UP
*
* Path is up and I/O can be sent to it.
*
* * DMMP_PATH_STATUS_SHAKY
*
* Only emc_clariion checker when path not available for "normal"
* operations.
*
* * DMMP_PATH_STATUS_GHOST
*
* Only hp_sw and rdac checkers. Indicates a "passive/standby"
* path on active/passive HP arrays. These paths will return valid
* answers to certain SCSI commands (tur, read_capacity, inquiry,
* start_stop), but will fail I/O commands. The path needs an
* initialization command to be sent to it in order for I/Os to
* succeed.
*
* * DMMP_PATH_STATUS_PENDING
*
* Available for all async checkers when a check IO is in flight.
*
* * DMMP_PATH_STATUS_TIMEOUT
*
* Only tur checker when command timed out.
*
* * DMMP_PATH_STATUS_DELAYED
*
* If a path fails after being up for less than delay_watch_checks checks,
* when it comes back up again, it will not be marked as up until it has
* been up for delay_wait_checks checks. During this time, it is marked as
* "delayed".
*
* @dmmp_p:
* Pointer of 'struct dmmp_path'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* uint32_t.
*/
DMMP_DLL_EXPORT uint32_t dmmp_path_status_get(struct dmmp_path *dmmp_p);
/**
* dmmp_path_status_str() - Convert path status to string.
*
* Convert path status uint32_t to string (const char *):
*
* * DMMP_PATH_STATUS_UNKNOWN -- "undef"
*
* * DMMP_PATH_STATUS_DOWN -- "faulty"
*
* * DMMP_PATH_STATUS_UP -- "ready"
*
* * DMMP_PATH_STATUS_SHAKY -- "shaky"
*
* * DMMP_PATH_STATUS_GHOST -- "ghost"
*
* * DMMP_PATH_STATUS_PENDING -- "pending"
*
* * DMMP_PATH_STATUS_TIMEOUT -- "timeout"
*
* * DMMP_PATH_STATUS_REMOVED -- "removed"
*
* * DMMP_PATH_STATUS_DELAYED -- "delayed"
*
* @path_status:
* uint32_t. Path status.
* When provided value is not a valid path status, return
* "Invalid argument".
*
* Return:
* const char *. The meaning of status value.
*/
DMMP_DLL_EXPORT const char *dmmp_path_status_str(uint32_t path_status);
/**
* dmmp_flush_mpath() - Flush specified multipath device map if unused.
*
* Flush a multipath device map specified as parameter, if unused.
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
* @mpath_name:
* const char *. The name of multipath device map.
*
* Return:
* int. Valid error codes are:
*
* * DMMP_OK
*
* * DMMP_ERR_BUG
*
* * DMMP_ERR_NO_MEMORY
*
* * DMMP_ERR_NO_DAEMON
*
* * DMMP_ERR_MPATH_BUSY
*
* * DMMP_ERR_MPATH_NOT_FOUND
*
* * DMMP_ERR_INVALID_ARGUMENT
*
* Error number could be converted to string by dmmp_strerror().
*/
DMMP_DLL_EXPORT int dmmp_flush_mpath(struct dmmp_context *ctx,
const char *mpath_name);
/**
* dmmp_reconfig() - Instruct multipathd daemon to do reconfiguration.
*
* Instruct multipathd daemon to do reconfiguration.
*
* @ctx:
* Pointer of 'struct dmmp_context'.
* If this pointer is NULL, your program will be terminated by assert.
*
* Return:
* int. Valid error codes are:
*
* * DMMP_OK
*
* * DMMP_ERR_BUG
*
* * DMMP_ERR_NO_MEMORY
*
* * DMMP_ERR_NO_DAEMON
*
* Error number could be converted to string by dmmp_strerror().
*/
DMMP_DLL_EXPORT int dmmp_reconfig(struct dmmp_context *ctx);
#ifdef __cplusplus
} /* End of extern "C" */
#endif
#endif /* End of _LIB_DMMP_H_ */
|