Home
last modified time | relevance | path

Searched refs:tcp_ses (Results 1 – 1 of 1) sorted by relevance

/Linux-v6.1/fs/cifs/
Dconnect.c1598 struct TCP_Server_Info *tcp_ses = NULL; in cifs_get_tcp_session() local
1604 tcp_ses = cifs_find_tcp_session(ctx); in cifs_get_tcp_session()
1605 if (tcp_ses) in cifs_get_tcp_session()
1606 return tcp_ses; in cifs_get_tcp_session()
1608 tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL); in cifs_get_tcp_session()
1609 if (!tcp_ses) { in cifs_get_tcp_session()
1614 tcp_ses->hostname = kstrdup(ctx->server_hostname, GFP_KERNEL); in cifs_get_tcp_session()
1615 if (!tcp_ses->hostname) { in cifs_get_tcp_session()
1621 tcp_ses->nosharesock = true; in cifs_get_tcp_session()
1623 tcp_ses->ops = ctx->ops; in cifs_get_tcp_session()
[all …]