Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 97813
b: refs/heads/master
c: 68aa0a2
h: refs/heads/master
i:
  97811: 0a9347f
v: v3
  • Loading branch information
Nadia Derbey authored and Linus Torvalds committed Jun 6, 2008
1 parent a319da8 commit e1a728d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 774533b3e86fa52941c79aa80ab3f0cc511bba7f
refs/heads/master: 68aa0a206a7a2dd8655a50b36e8274eb87b84544
4 changes: 2 additions & 2 deletions trunk/include/linux/msg.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ struct msginfo {
#define MSGMNB 16384 /* <= INT_MAX */ /* default max size of a message queue */

/* unused */
#define MSGPOOL (MSGMNI * MSGMNB) /* size in bytes of message pool */
#define MSGPOOL (MSGMNI * MSGMNB / 1024) /* size in kbytes of message pool */
#define MSGTQL MSGMNB /* number of system message headers */
#define MSGMAP MSGMNB /* number of entries in message map */
#define MSGSSZ 16 /* message segment size */
#define __MSGSEG (MSGPOOL / MSGSSZ) /* max no. of segments */
#define __MSGSEG ((MSGPOOL * 1024) / MSGSSZ) /* max no. of segments */
#define MSGSEG (__MSGSEG <= 0xffff ? __MSGSEG : 0xffff)

#ifdef __KERNEL__
Expand Down

0 comments on commit e1a728d

Please sign in to comment.