Bug 702152 - Memory Subsystem Section of Resource Management Guide needs further details
Summary: Memory Subsystem Section of Resource Management Guide needs further details
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: doc-Resource_Management_Guide
Version: 6.0
Hardware: All
OS: Linux
unspecified
low
Target Milestone: rc
: ---
Assignee: Martin Prpič
QA Contact: ecs-bugs
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2011-05-04 22:05 UTC by Greg Cockburn
Modified: 2011-12-07 12:47 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2011-12-07 12:47:05 UTC
Target Upstream Version:


Attachments (Terms of Use)

Description Greg Cockburn 2011-05-04 22:05:27 UTC
Description of problem:

Documentation for doc-Resource_Management_Guide does not detail interdependencies and ordering of memory subsystem values.

Version-Release number of selected component (if applicable): 1.0

Section 3.7 (sec-memory) Memory Subsystem

memory.limit_in_bytes
memory.memsw.limit_in_bytes

It needs to be noted that memory.memsw.limit_in_bytes can not be set without first setting memory.limit_in_bytes.

Also the order these are placed in cgconfig.conf is important (The reverse order to which you would set them on the command line).

e.g.
Example A: (VALID):
        memory {
                memory.limit_in_bytes = 40;
        }
Example B: (VALID):
        memory {
                memory.memsw.limit_in_bytes = 40;
                memory.limit_in_bytes = 40;
        }
Example C (INVALID):
        memory {
                memory.memsw.limit_in_bytes = 40;
        }
Example D (INVALID):
        memory {
                memory.limit_in_bytes = 40;
                memory.memsw.limit_in_bytes = 40;
        }


This is reproducible on the command line:
Trying to set a value just for memsw.limit_in_bytes
# /bin/echo 50 > /cgroup/memory/patrol/memory.memsw.limit_in_bytes
/bin/echo: write error: Invalid argument

Now correctly setting a value in limit_in_bytes first.
# /bin/echo 50 > /cgroup/memory/patrol/memory.limit_in_bytes
# /bin/echo 50 > /cgroup/memory/patrol/memory.memsw.limit_in_bytes

Comment 6 Martin Prpič 2011-06-16 10:16:13 UTC
(In reply to comment #0)
> Description of problem:
> 

Greg, this bug has been fixed. Fixed version will appear in the next
release. Thank you for reporting this issue.

> 
> Also the order these are placed in cgconfig.conf is important (The reverse
> order to which you would set them on the command line).

This has been fixed in BZ#622462. Said parameters no longer have to be specified in the reverse order.


Martin


Note You need to log in before you can comment on or make changes to this bug.