Re: [PATCH] x86/intel_rdt: reinitialize cbm for new group allocation

From: Thomas Gleixner
Date: Mon Jan 09 2017 - 16:58:25 EST


On Fri, 6 Jan 2017, Shaohua Li wrote:

> rdtgroup_rmdir deletes a group and frees the closid, but doesn't
> reiniaialize domain's cbm to default for the closid. Next time the
> closid is allocated again, 'schemata' will show old cbm.

Rightfully so. Because that's the value which is in the configuration
MSR. That's perfectly fine because nothing can use that closid and therefor
the configuration MSR is completely irrelevant until the closid is reused.

> We can do the reinitialization at free/alloc closid, but sounds doing it
> at alloc is more nartual.

What you are doing is not natural, it's just wrong.

Assume the admin wants to keep the 'max_cbm' value for a domain and
therefor does not update the schemata file, but the MSR still contains the
old value. Not what you really want, right?

If you really want to have the CBM values reset to max_cbm then this needs
to be done when the directory is removed and this needs to be written to
the hardware as well on all affected packages. Not sure if that's worth the
effort.

Thanks,

tglx