SCTP: fix wrong debug counting of bind_bucket
Should not count it if the allocation of the object is failed. Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e8c38751be
commit
935a7f6e4d
1 changed files with 1 additions and 1 deletions
|
@ -5761,8 +5761,8 @@ static struct sctp_bind_bucket *sctp_bucket_create(
|
||||||
struct sctp_bind_bucket *pp;
|
struct sctp_bind_bucket *pp;
|
||||||
|
|
||||||
pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
|
pp = kmem_cache_alloc(sctp_bucket_cachep, GFP_ATOMIC);
|
||||||
SCTP_DBG_OBJCNT_INC(bind_bucket);
|
|
||||||
if (pp) {
|
if (pp) {
|
||||||
|
SCTP_DBG_OBJCNT_INC(bind_bucket);
|
||||||
pp->port = snum;
|
pp->port = snum;
|
||||||
pp->fastreuse = 0;
|
pp->fastreuse = 0;
|
||||||
INIT_HLIST_HEAD(&pp->owner);
|
INIT_HLIST_HEAD(&pp->owner);
|
||||||
|
|
Loading…
Reference in a new issue