| Kernel v2.6.9 /ipc/mqueue.c |
|---|
 2.6.9
 ipc
 mqueue.c
diff -Nru a/ipc/mqueue.c b/ipc/mqueue.c
--- a/ipc/mqueue.c 2004-10-18 14:56:32 -07:00
+++ b/ipc/mqueue.c 2004-10-18 14:56:32 -07:00
@@ -828,7 +828,7 @@
/* First try to allocate memory, before doing anything with
* existing queues. */
msg_ptr = load_msg(u_msg_ptr, msg_len);
- if (unlikely(IS_ERR(msg_ptr))) {
+ if (IS_ERR(msg_ptr)) {
ret = PTR_ERR(msg_ptr);
goto out_fput;
}
|