0

我基本上在我正在编写的系统调用中遇到了一个非常奇怪的情况。我想检查一些值是否相同,返回 -2 表示发生了某种类型的错误。我正在使用 printk() 在我的“else if”之前打印变量的值,它说它们彼此相等,但条件没有被执行(即我们不输入 else if)我我对在内核中工作还很陌生,但这对我来说似乎很离谱,我想知道在内核中工作是否有一些我不知道的细微差别,所以如果有人可以冒险猜测为什么我知道我的值条件不会执行的变量我非常感谢您的帮助

//----------------------------------------------------//

/*  sys_receiveMsg421()
     Description:
    - Copies the first message in the mailbox into <msg>
*/
asmlinkage long sys_receiveMsg421(unsigned long mbxID, char *msg, unsigned long N)
{

int result = 0;
int mboxIndex = checkBoxId(mbxID);
int msgIndex = 0;

//acquire the lock
down_interruptible(&sem);

//check to make sure the mailbox with <mbxID> exists
if(!mboxIndex)
{
    //free our lock
    up(&sem);
    return -1;
}

else
    mboxIndex--;

printk("<1>mboxIndex = %d\nNumber of messages = %dCurrent Msg = %d\n",mboxIndex, groupBox.boxes[mboxIndex].numMessages, groupBox.boxes[mboxIndex].currentMsg );

//check to make sure we have a message to recieve

-----------CODE NOT EXECUTING HERE------------------------------------------------
if(groupBox.boxes[mboxIndex].numMessages == groupBox.boxes[mboxIndex].currentMsg)
{
    //free our lock
    up(&sem);   
    return -2;
}
//retrieve the message
else
{
     //check to make sure the msg is a valid pointer before continuing
    if(!access_ok(VERIFY_READ, msg, N * sizeof(char)))
    {
        printk("<1>Access has been denied for %lu\n", mbxID);
        //free our lock
        up(&sem);
        return -1;
    }
    else
    {
        //calculate the index of the message to be retrieved            
        msgIndex = groupBox.boxes[mboxIndex].currentMsg;    

        //copy from kernel to user variable     
        result = copy_to_user(msg, groupBox.boxes[mboxIndex].messages[msgIndex], N);

        //increment message position
        groupBox.boxes[mboxIndex].currentMsg++;

        //free our lock
        up(&sem);

        //return number of bytes copied
        return (N - result);
    }
}
}

更新:通过将返回值更改为其他值解决了我的问题,但它工作得很好很奇怪

4

2 回答 2

4

请记住使用标点符号;我不喜欢在阅读问题时气喘吁吁。

您确定没有输入 if 块吗?那里的 printk(以及相应的 else 块中的另一个)会让您更进一步,不是吗?

至于问题:不,没有任何特定于内核代码的东西会使它不起作用。

而且您似乎也涵盖了同步。虽然:我看到你在mboxIndex关键部分之外获得。这会导致问题吗?很难从这个片段中分辨出来,它甚至没有groupBox声明。

于 2012-04-22T00:42:01.407 回答
1

也许numMessages和/或被currentMsg定义为long
如果是这样,printk使用的 your%d将仅打印一些位,因此您可能认为它们相等,而实际上它们不相等。

于 2012-04-22T04:39:29.983 回答