2 Comments

  1. A nice post!

    But this part seems incomplete:

    //added by Weiwei Jia
    #include 
    int enable_flag = 0;
    module_param(enable_flag, int, 0664);
    EXPORT_SYMBOL_GPL(enable_flag);
    
  2. Yes, it is really incomplete. The complete one should be like following.

    //added by Weiwei Jia
    #include <linux/time.h>
    int enable_flag = 0;
    module_param(enable_flag, int, 0664);
    EXPORT_SYMBOL_GPL(enable_flag);
    //ended

    It seems that WordPress will remove the contents inside angle brackets. At last, I find a way to input angle brackets but still cannot add angle brackets in the code “{{{…}}}” field.

Leave a Reply

Your email address will not be published. Required fields are marked *