aboutsummaryrefslogtreecommitdiff
path: root/fs/gfs2
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-07-03 11:20:06 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-07-03 11:20:06 -0400
commit02630a12c7f72fa294981c8d86e38038781c25b7 (patch)
treeb6858e9ba69ce3780ce54988ed097c1358f21bb3 /fs/gfs2
parent0a1340c185734a57fbf4775927966ad4a1347b02 (diff)
[GFS2] Remove dependance on tty_write_message()
This removes the call in GFS2 to tty_write_message and replaces it with a printk. As the export was added by GFS2, we remove this as well. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r--fs/gfs2/quota.c23
1 files changed, 4 insertions, 19 deletions
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c
index 1892b29ec98..3ca65c37c35 100644
--- a/fs/gfs2/quota.c
+++ b/fs/gfs2/quota.c
@@ -41,7 +41,6 @@
#include <linux/spinlock.h>
#include <linux/completion.h>
#include <linux/buffer_head.h>
-#include <linux/tty.h>
#include <linux/sort.h>
#include <linux/fs.h>
#include <linux/gfs2_ondisk.h>
@@ -929,25 +928,11 @@ void gfs2_quota_unlock(struct gfs2_inode *ip)
static int print_message(struct gfs2_quota_data *qd, char *type)
{
struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
- char *line;
- int len;
- line = kmalloc(MAX_LINE, GFP_KERNEL);
- if (!line)
- return -ENOMEM;
-
- len = snprintf(line, MAX_LINE-1,
- "GFS2: fsid=%s: quota %s for %s %u\r\n",
- sdp->sd_fsname, type,
- (test_bit(QDF_USER, &qd->qd_flags)) ? "user" : "group",
- qd->qd_id);
- line[MAX_LINE-1] = 0;
-
- if (current->signal) { /* Is this test still required? */
- tty_write_message(current->signal->tty, line);
- }
-
- kfree(line);
+ printk(KERN_INFO "GFS2: fsid=%s: quota %s for %s %u\r\n",
+ sdp->sd_fsname, type,
+ (test_bit(QDF_USER, &qd->qd_flags)) ? "user" : "group",
+ qd->qd_id);
return 0;
}