Commit 2d103d5a authored by Melissa Howland's avatar Melissa Howland Committed by Martin Schwidefsky

[S390] monwriter buffer limit.

Make max_bufs a global (per linux guest) limit.
Signed-off-by: default avatarMelissa Howland <melissah@us.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent d83682b3
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#define MONWRITE_MAX_DATALEN 4024 #define MONWRITE_MAX_DATALEN 4024
static int mon_max_bufs = 255; static int mon_max_bufs = 255;
static int mon_buf_count;
struct mon_buf { struct mon_buf {
struct list_head list; struct list_head list;
...@@ -40,7 +41,6 @@ struct mon_private { ...@@ -40,7 +41,6 @@ struct mon_private {
size_t hdr_to_read; size_t hdr_to_read;
size_t data_to_read; size_t data_to_read;
struct mon_buf *current_buf; struct mon_buf *current_buf;
int mon_buf_count;
}; };
/* /*
...@@ -99,13 +99,13 @@ static int monwrite_new_hdr(struct mon_private *monpriv) ...@@ -99,13 +99,13 @@ static int monwrite_new_hdr(struct mon_private *monpriv)
rc = monwrite_diag(monhdr, monbuf->data, rc = monwrite_diag(monhdr, monbuf->data,
APPLDATA_STOP_REC); APPLDATA_STOP_REC);
list_del(&monbuf->list); list_del(&monbuf->list);
monpriv->mon_buf_count--; mon_buf_count--;
kfree(monbuf->data); kfree(monbuf->data);
kfree(monbuf); kfree(monbuf);
monbuf = NULL; monbuf = NULL;
} }
} else { } else {
if (monpriv->mon_buf_count >= mon_max_bufs) if (mon_buf_count >= mon_max_bufs)
return -ENOSPC; return -ENOSPC;
monbuf = kzalloc(sizeof(struct mon_buf), GFP_KERNEL); monbuf = kzalloc(sizeof(struct mon_buf), GFP_KERNEL);
if (!monbuf) if (!monbuf)
...@@ -118,7 +118,7 @@ static int monwrite_new_hdr(struct mon_private *monpriv) ...@@ -118,7 +118,7 @@ static int monwrite_new_hdr(struct mon_private *monpriv)
} }
monbuf->hdr = *monhdr; monbuf->hdr = *monhdr;
list_add_tail(&monbuf->list, &monpriv->list); list_add_tail(&monbuf->list, &monpriv->list);
monpriv->mon_buf_count++; mon_buf_count++;
} }
monpriv->current_buf = monbuf; monpriv->current_buf = monbuf;
return 0; return 0;
...@@ -186,7 +186,7 @@ static int monwrite_close(struct inode *inode, struct file *filp) ...@@ -186,7 +186,7 @@ static int monwrite_close(struct inode *inode, struct file *filp)
if (entry->hdr.mon_function != MONWRITE_GEN_EVENT) if (entry->hdr.mon_function != MONWRITE_GEN_EVENT)
monwrite_diag(&entry->hdr, entry->data, monwrite_diag(&entry->hdr, entry->data,
APPLDATA_STOP_REC); APPLDATA_STOP_REC);
monpriv->mon_buf_count--; mon_buf_count--;
list_del(&entry->list); list_del(&entry->list);
kfree(entry->data); kfree(entry->data);
kfree(entry); kfree(entry);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment