diff options
author | Corey Minyard <cminyard@mvista.com> | 2014-12-17 07:11:54 -0600 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2015-02-19 19:54:50 -0600 |
commit | 2fcaf60ca07b0db5f8824a368bf890122c3db86a (patch) | |
tree | 89aa4256747e51304134597f7158038fb6d7e033 /drivers | |
parent | e3a1f6cac1fe20e7ac01d96c914c25726723a64e (diff) |
ipmi: Remove a FIXME for slab conversion
There can't be more than a few IPMI messages allocated at any one time,
so converting the messages to slabs would be a waste. So just remove
the FIXME.
Suggested-by: Nicholas Krause <xerofoify@gmail.com>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/ipmi/ipmi_msghandler.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c index 6b65fa4e0c55..ab595410169d 100644 --- a/drivers/char/ipmi/ipmi_msghandler.c +++ b/drivers/char/ipmi/ipmi_msghandler.c @@ -4212,7 +4212,6 @@ static void need_waiter(ipmi_smi_t intf) static atomic_t smi_msg_inuse_count = ATOMIC_INIT(0); static atomic_t recv_msg_inuse_count = ATOMIC_INIT(0); -/* FIXME - convert these to slabs. */ static void free_smi_msg(struct ipmi_smi_msg *msg) { atomic_dec(&smi_msg_inuse_count); |