diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /Documentation/IPMI.txt | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'Documentation/IPMI.txt')
-rw-r--r-- | Documentation/IPMI.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/IPMI.txt b/Documentation/IPMI.txt index 69dd29ed824e..b2bea15137d2 100644 --- a/Documentation/IPMI.txt +++ b/Documentation/IPMI.txt | |||
@@ -533,6 +533,33 @@ completion during sending a panic event. | |||
533 | Other Pieces | 533 | Other Pieces |
534 | ------------ | 534 | ------------ |
535 | 535 | ||
536 | Get the detailed info related with the IPMI device | ||
537 | -------------------------------------------------- | ||
538 | |||
539 | Some users need more detailed information about a device, like where | ||
540 | the address came from or the raw base device for the IPMI interface. | ||
541 | You can use the IPMI smi_watcher to catch the IPMI interfaces as they | ||
542 | come or go, and to grab the information, you can use the function | ||
543 | ipmi_get_smi_info(), which returns the following structure: | ||
544 | |||
545 | struct ipmi_smi_info { | ||
546 | enum ipmi_addr_src addr_src; | ||
547 | struct device *dev; | ||
548 | union { | ||
549 | struct { | ||
550 | void *acpi_handle; | ||
551 | } acpi_info; | ||
552 | } addr_info; | ||
553 | }; | ||
554 | |||
555 | Currently special info for only for SI_ACPI address sources is | ||
556 | returned. Others may be added as necessary. | ||
557 | |||
558 | Note that the dev pointer is included in the above structure, and | ||
559 | assuming ipmi_smi_get_info returns success, you must call put_device | ||
560 | on the dev pointer. | ||
561 | |||
562 | |||
536 | Watchdog | 563 | Watchdog |
537 | -------- | 564 | -------- |
538 | 565 | ||