Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
4f1c0880
Commit
4f1c0880
authored
Mar 27, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge penguin:v2.5/linux
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
6a92414f
10142a9b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
5 deletions
+23
-5
Documentation/IPMI.txt
Documentation/IPMI.txt
+12
-0
drivers/char/ipmi/Kconfig
drivers/char/ipmi/Kconfig
+8
-2
drivers/char/ipmi/ipmi_devintf.c
drivers/char/ipmi/ipmi_devintf.c
+1
-1
drivers/char/ipmi/ipmi_kcs_intf.c
drivers/char/ipmi/ipmi_kcs_intf.c
+1
-1
drivers/char/ipmi/ipmi_kcs_sm.c
drivers/char/ipmi/ipmi_kcs_sm.c
+1
-1
No files found.
Documentation/IPMI.txt
View file @
4f1c0880
...
...
@@ -5,6 +5,18 @@
<minyard@mvista.com>
<minyard@acm.org>
The Intelligent Platform Management Interface, or IPMI, is a
standard for controlling intelligent devices that monitor a system.
It provides for dynamic discovery of sensors in the system and the
ability to monitor the sensors and be informed when the sensor's
values change or go outside certain boundaries. It also has a
standardized database for field-replacable units (FRUs) and a watchdog
timer.
To use this, you need an interface to an IPMI controller in your
system (called a Baseboard Management Controller, or BMC) and
management software that can use the IPMI system.
This document describes how to use the IPMI driver for Linux. If you
are not familiar with IPMI itself, see the web site at
http://www.intel.com/design/servers/ipmi/index.htm. IPMI is a big
...
...
drivers/char/ipmi/Kconfig
View file @
4f1c0880
...
...
@@ -7,8 +7,14 @@ config IPMI_HANDLER
tristate 'IPMI top-level message handler'
help
This enables the central IPMI message handler, required for IPMI
to work. Note that you must have this enabled to do any other IPMI
things. See IPMI.txt for more details.
to work.
IPMI is a standard for managing sensors (temperature,
voltage, etc.) in a system.
See Documentation/IPMI.txt for more details on the driver.
If unsure, say N.
config IPMI_PANIC_EVENT
bool 'Generate a panic event to all BMCs on a panic'
...
...
drivers/char/ipmi/ipmi_devintf.c
View file @
4f1c0880
...
...
@@ -449,7 +449,7 @@ static void ipmi_new_smi(int if_num)
if
(
if_num
>
MAX_DEVICES
)
return
;
snprinf
(
name
,
sizeof
(
name
),
"ipmidev/%d"
,
if_num
);
snprin
t
f
(
name
,
sizeof
(
name
),
"ipmidev/%d"
,
if_num
);
handles
[
if_num
]
=
devfs_register
(
NULL
,
name
,
DEVFS_FL_NONE
,
ipmi_major
,
if_num
,
...
...
drivers/char/ipmi/ipmi_kcs_intf.c
View file @
4f1c0880
...
...
@@ -826,7 +826,7 @@ static int init_one_kcs(int kcs_port,
if
(
kcs_port
&&
kcs_physaddr
)
return
-
EINVAL
;
new_kcs
=
kmalloc
(
kcs_size
(
),
GFP_KERNEL
);
new_kcs
=
kmalloc
(
sizeof
(
*
new_kcs
),
GFP_KERNEL
);
if
(
!
new_kcs
)
{
printk
(
KERN_ERR
"ipmi_kcs: out of memory
\n
"
);
return
-
ENOMEM
;
...
...
drivers/char/ipmi/ipmi_kcs_sm.c
View file @
4f1c0880
...
...
@@ -468,7 +468,7 @@ enum kcs_result kcs_event(struct kcs_data *kcs, long time)
break
;
case
KCS_HOSED
:
return
KCS_SM_HOSED
;
break
;
}
if
(
kcs
->
state
==
KCS_HOSED
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment