| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
 Re: [PATCH] flask: label-pci: Allow specifying optional irq label
 
 
On 3/13/23 15:14, Jason Andryuk wrote:
 
On Mon, Mar 13, 2023 at 2:49 PM Daniel P. Smith
<dpsmith@xxxxxxxxxxxxxxxxxxxx> wrote:
 
On 3/13/23 13:50, Jason Andryuk wrote:
 
               usage(argCnt, argv);
+     if (argCnt == 4) {
+         pirq_label = argv[3];
+     } else {
+         pirq_label = argv[2];
+     }
+
 
style nit: space inside parens and curly brackets could be dropped or
should be moved to their own lines.
 
This file doesn't follow Xen style.  I think dropping the curly braces
is fine, but the lack of spaces 'if (argCnt == 4)' should stay for
consistency.  Does that sound okay?
 
Hmm, I thought there was interest in getting everything in tree 
consistent, maybe I am mistaken. I am not hard pressed to enforce the 
style. Unless someone else objects, I am good with your proposal. 
 
       xch = xc_interface_open(0,0,0);
       if ( !xch )
       {
@@ -107,7 +114,7 @@ int main (int argCnt, char *argv[])
       if (fscanf(f, "%" SCNu64, &start) != 1)
               start = 0;
       if (start) {
-             ret = xc_flask_add_pirq(xch, start, argv[2]);
+             ret = xc_flask_add_pirq(xch, start, pirq_label);
               if (ret) {
                       fprintf(stderr, "xc_flask_add_pirq %"PRIu64" failed: 
%d\n",
                                       start, ret);
 
Style nits aside, LGTM.
Acked-by: Daniel P. Smith <dpsmith@xxxxxxxxxxxxxxxxxxxx>
 
Thanks,
Jason
 
 
 |