X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=fs%2Fncpfs%2Ffile.c;h=2b145de45b39147ce8e4ab9a53fd709c614050de;hb=6924d1ab8b7bbe5ab416713f5701b3316b2df85b;hp=d3152f8d95c6221495f014dbd00c15ab285cb58e;hpb=8aee74c8ee875448cc6d1cf995c9469eb60ae515;p=linux-2.6 diff --git a/fs/ncpfs/file.c b/fs/ncpfs/file.c index d3152f8d95..2b145de45b 100644 --- a/fs/ncpfs/file.c +++ b/fs/ncpfs/file.c @@ -203,7 +203,6 @@ ncp_file_write(struct file *file, const char __user *buf, size_t count, loff_t * if (pos + count > MAX_NON_LFS && !(file->f_flags&O_LARGEFILE)) { if (pos >= MAX_NON_LFS) { - send_sig(SIGXFSZ, current, 0); return -EFBIG; } if (count > MAX_NON_LFS - (u32)pos) { @@ -212,7 +211,6 @@ ncp_file_write(struct file *file, const char __user *buf, size_t count, loff_t * } if (pos >= inode->i_sb->s_maxbytes) { if (count || pos > inode->i_sb->s_maxbytes) { - send_sig(SIGXFSZ, current, 0); return -EFBIG; } }