]> git.baikalelectronics.ru Git - kernel.git/commit
xen/tmem: Don't over-write tmem_frontswap_poolid after tmem_frontswap_init set it.
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Fri, 7 Jun 2013 19:26:03 +0000 (15:26 -0400)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Mon, 10 Jun 2013 14:14:33 +0000 (10:14 -0400)
commit1083f2f370d4b1d31cb4e76885ce04fc29cebd75
tree5b97f2908fec2b03b6dfef5f52d5e79f2597f750
parent6438bf63acf595fcda490e606a8f7f83bd01daad
xen/tmem: Don't over-write tmem_frontswap_poolid after tmem_frontswap_init set it.

Commit ec081623148b6ae00a502563a85cba7a9fce11c1 ("xen: tmem: enable Xen
tmem shim to be built/loaded as a module") allows the tmem module
to be loaded any time. For this work the frontswap API had to
be able to asynchronously to call tmem_frontswap_init before
or after the swap image had been set. That was added in git
commit 145822bedc24771708187aee17b25ad6ba07b9ef
("mm: frontswap: lazy initialization to allow tmem backends to build/run as modules").

Which means we could do this (The common case):

 modprobe tmem [so calls frontswap_register_ops, no ->init]
 modifies tmem_frontswap_poolid = -1
 swapon /dev/xvda1 [__frontswap_init, calls -> init, tmem_frontswap_poolid is
 < 0 so tmem hypercall done]

Or the failing one:

 swapon /dev/xvda1 [calls __frontswap_init, sets the need_init bitmap]
 modprobe tmem [calls frontswap_register_ops, -->init calls, finds out
tmem_frontswap_poolid is 0, does not make a hypercall.
Later in the module_init, sets tmem_frontswap_poolid=-1]

Which meant that in the failing case we would not call the hypercall
to initialize the pool and never be able to make any frontswap
backend calls.

Moving the frontswap_register_ops after setting the tmem_frontswap_poolid
fixes it.

Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Reviewed-by: Bob Liu <bob.liu@oracle.com>
drivers/xen/tmem.c