Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 191313 | Differences between
and this patch

Collapse All | Expand All

(-)iscsitarget-0.4.15/kernel/event.c (-1 / +1 lines)
Lines 95-101 Link Here
95
95
96
int event_init(void)
96
int event_init(void)
97
{
97
{
98
	nl = netlink_kernel_create(NETLINK_IET, 1, event_recv, THIS_MODULE);
98
	nl = netlink_kernel_create(NETLINK_IET, 1, event_recv, NULL, THIS_MODULE);
99
	if (!nl)
99
	if (!nl)
100
		return -ENOMEM;
100
		return -ENOMEM;
101
	else
101
	else
(-)iscsitarget-0.4.15/kernel/iscsi.c (-1 / +1 lines)
Lines 1709-1715 Link Here
1709
		goto err;
1709
		goto err;
1710
1710
1711
	iscsi_cmnd_cache = kmem_cache_create("iscsi_cmnd", sizeof(struct iscsi_cmnd),
1711
	iscsi_cmnd_cache = kmem_cache_create("iscsi_cmnd", sizeof(struct iscsi_cmnd),
1712
					     0, 0, NULL, NULL);
1712
					     0, 0, NULL);
1713
	if (!iscsi_cmnd_cache)
1713
	if (!iscsi_cmnd_cache)
1714
		goto err;
1714
		goto err;
1715
1715
(-)iscsitarget-0.4.15/kernel/tio.c (-1 / +1 lines)
Lines 111-117 Link Here
111
int tio_init(void)
111
int tio_init(void)
112
{
112
{
113
	tio_cache = kmem_cache_create("tio", sizeof(struct tio),
113
	tio_cache = kmem_cache_create("tio", sizeof(struct tio),
114
				      0, 0, NULL, NULL);
114
				      0, 0, NULL);
115
	return  tio_cache ? 0 : -ENOMEM;
115
	return  tio_cache ? 0 : -ENOMEM;
116
}
116
}
117
117

Return to bug 191313