mirror of
https://github.com/gnab/rtl8812au
synced 2025-01-08 01:24:20 +00:00
commit
efd07f3699
@ -1545,25 +1545,19 @@ static int writeFile(struct file *fp,char *buf,int len)
|
|||||||
* @return Linux specific error code
|
* @return Linux specific error code
|
||||||
*/
|
*/
|
||||||
static int isFileReadable(char *path)
|
static int isFileReadable(char *path)
|
||||||
{
|
{
|
||||||
struct file *fp;
|
struct file *fp;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
mm_segment_t oldfs;
|
|
||||||
char buf;
|
char buf;
|
||||||
|
|
||||||
fp=filp_open(path, O_RDONLY, 0);
|
fp=filp_open(path, O_RDONLY, 0);
|
||||||
if(IS_ERR(fp)) {
|
if(IS_ERR(fp)) {
|
||||||
ret = PTR_ERR(fp);
|
ret = PTR_ERR(fp);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
oldfs = get_fs(); set_fs(KERNEL_DS);
|
ret = kernel_read(fp, &buf, 1, NULL);
|
||||||
|
closeFile(fp);
|
||||||
if(1!=readFile(fp, &buf, 1))
|
}
|
||||||
ret = PTR_ERR(fp);
|
|
||||||
|
|
||||||
set_fs(oldfs);
|
|
||||||
filp_close(fp,NULL);
|
|
||||||
}
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1584,13 +1578,11 @@ static int retriveFromFile(char *path, u8* buf, u32 sz)
|
|||||||
if( 0 == (ret=openFile(&fp,path, O_RDONLY, 0)) ){
|
if( 0 == (ret=openFile(&fp,path, O_RDONLY, 0)) ){
|
||||||
DBG_871X("%s openFile path:%s fp=%p\n",__FUNCTION__, path ,fp);
|
DBG_871X("%s openFile path:%s fp=%p\n",__FUNCTION__, path ,fp);
|
||||||
|
|
||||||
oldfs = get_fs(); set_fs(KERNEL_DS);
|
ret = kernel_read(fp, buf, sz, NULL);
|
||||||
ret=readFile(fp, buf, sz);
|
|
||||||
set_fs(oldfs);
|
|
||||||
closeFile(fp);
|
closeFile(fp);
|
||||||
|
|
||||||
DBG_871X("%s readFile, ret:%d\n",__FUNCTION__, ret);
|
DBG_871X("%s readFile, ret:%d\n",__FUNCTION__, ret);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
DBG_871X("%s openFile path:%s Fail, ret:%d\n",__FUNCTION__, path, ret);
|
DBG_871X("%s openFile path:%s Fail, ret:%d\n",__FUNCTION__, path, ret);
|
||||||
}
|
}
|
||||||
@ -1613,21 +1605,19 @@ static int storeToFile(char *path, u8* buf, u32 sz)
|
|||||||
int ret =0;
|
int ret =0;
|
||||||
mm_segment_t oldfs;
|
mm_segment_t oldfs;
|
||||||
struct file *fp;
|
struct file *fp;
|
||||||
|
|
||||||
if(path && buf) {
|
if(path && buf) {
|
||||||
if( 0 == (ret=openFile(&fp, path, O_CREAT|O_WRONLY, 0666)) ) {
|
if( 0 == (ret=openFile(&fp, path, O_CREAT|O_WRONLY, 0666)) ) {
|
||||||
DBG_871X("%s openFile path:%s fp=%p\n",__FUNCTION__, path ,fp);
|
DBG_871X("%s openFile path:%s fp=%p\n",__FUNCTION__, path ,fp);
|
||||||
|
|
||||||
oldfs = get_fs(); set_fs(KERNEL_DS);
|
ret = kernel_write(fp, buf, sz, NULL);
|
||||||
ret=writeFile(fp, buf, sz);
|
|
||||||
set_fs(oldfs);
|
|
||||||
closeFile(fp);
|
closeFile(fp);
|
||||||
|
|
||||||
DBG_871X("%s writeFile, ret:%d\n",__FUNCTION__, ret);
|
DBG_871X("%s writeFile, ret:%d\n",__FUNCTION__, ret);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
DBG_871X("%s openFile path:%s Fail, ret:%d\n",__FUNCTION__, path, ret);
|
DBG_871X("%s openFile path:%s Fail, ret:%d\n",__FUNCTION__, path, ret);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
DBG_871X("%s NULL pointer\n",__FUNCTION__);
|
DBG_871X("%s NULL pointer\n",__FUNCTION__);
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
|
Loading…
Reference in New Issue
Block a user