-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update .clang-format configuration to match linux kernel. #85
Conversation
Things brings the |
Uncommenting the $ diff -u xmm7360.c <(clang-format xmm7360.c)
--- xmm7360.c 2021-03-24 14:07:38.011260181 -0500
+++ /dev/fd/63 2021-03-24 14:09:32.750525774 -0500
@@ -409,9 +409,9 @@
ring->pages_phys = kzalloc(sizeof(dma_addr_t) * depth, GFP_KERNEL);
for (i = 0; i < depth; i++) {
- ring->pages[i] =
- dma_alloc_coherent(xmm->dev, ring->page_size,
- &ring->pages_phys[i], GFP_KERNEL);
+ ring->pages[i] = dma_alloc_coherent(xmm->dev, ring->page_size,
+ &ring->pages_phys[i],
+ GFP_KERNEL);
ring->tds[i].addr = ring->pages_phys[i];
}
@@ -730,14 +730,14 @@
return -ENOTTY;
}
-static struct file_operations xmm7360_fops = { .read = xmm7360_cdev_read,
- .write = xmm7360_cdev_write,
- .poll = xmm7360_cdev_poll,
- .unlocked_ioctl =
- xmm7360_cdev_ioctl,
- .open = xmm7360_cdev_open,
- .release =
- xmm7360_cdev_release };
+static struct file_operations xmm7360_fops = {
+ .read = xmm7360_cdev_read,
+ .write = xmm7360_cdev_write,
+ .poll = xmm7360_cdev_poll,
+ .unlocked_ioctl = xmm7360_cdev_ioctl,
+ .open = xmm7360_cdev_open,
+ .release = xmm7360_cdev_release
+};
static void xmm7360_mux_frame_init(struct xmm_net *xn, struct mux_frame *frame,
int sequence)
@@ -1530,8 +1530,8 @@
TTY_DRIVER_REAL_RAW |
TTY_DRIVER_DYNAMIC_DEV; // Could this flags be defined in the flags??
xmm7360_tty_driver->init_termios = tty_std_termios;
- xmm7360_tty_driver->init_termios.c_cflag =
- B115200 | CS8 | CREAD | HUPCL | CLOCAL;
+ xmm7360_tty_driver->init_termios.c_cflag = B115200 | CS8 | CREAD |
+ HUPCL | CLOCAL;
xmm7360_tty_driver->init_termios.c_lflag &= ~ECHO;
xmm7360_tty_driver->init_termios.c_ispeed = 115200;
xmm7360_tty_driver->init_termios.c_ospeed = 115200;
|
I just copied the configuration from here if they have commented lines, won't there be a reason for that? |
The file was added to mainline around April of 2018 (torvalds/linux@d4ef8d3). At the time llvm/clang 5 was just released (and clang 6 was under development) so I would assume backward compatibility to clang 4 (released Mar 2017) and clang 5 (released Mar 2018) were particularly important. Thought now that you speak about it, I wonder if asking to get them uncommented in mainline make sense. Hmm... |
Yeah that's what I was thinking @zhuyifei1999 ! Why don't they update them to have better rules :') I see that several other kernel modules seem to "base" their I'm happy with whatever approach, but I would err on the side of using the format from the latest tip of kernel. (the one I copied was updated ~28 days ago) |
Yeah, that's valid. I just checked and using that of the latest mainline would actually revert the changes: $ wget https://raw.githubusercontent.com/torvalds/linux/master/.clang-format -O .clang-format -q
$ diff -u xmm7360.c.1 <(clang-format xmm7360.c.1)
--- xmm7360.c.1 2021-03-24 20:12:45.352710914 -0500
+++ /dev/fd/63 2021-03-24 20:13:04.387070093 -0500
@@ -409,9 +409,9 @@
ring->pages_phys = kzalloc(sizeof(dma_addr_t) * depth, GFP_KERNEL);
for (i = 0; i < depth; i++) {
- ring->pages[i] = dma_alloc_coherent(xmm->dev, ring->page_size,
- &ring->pages_phys[i],
- GFP_KERNEL);
+ ring->pages[i] =
+ dma_alloc_coherent(xmm->dev, ring->page_size,
+ &ring->pages_phys[i], GFP_KERNEL);
ring->tds[i].addr = ring->pages_phys[i];
}
@@ -730,14 +730,14 @@
return -ENOTTY;
}
-static struct file_operations xmm7360_fops = {
- .read = xmm7360_cdev_read,
- .write = xmm7360_cdev_write,
- .poll = xmm7360_cdev_poll,
- .unlocked_ioctl = xmm7360_cdev_ioctl,
- .open = xmm7360_cdev_open,
- .release = xmm7360_cdev_release
-};
+static struct file_operations xmm7360_fops = { .read = xmm7360_cdev_read,
+ .write = xmm7360_cdev_write,
+ .poll = xmm7360_cdev_poll,
+ .unlocked_ioctl =
+ xmm7360_cdev_ioctl,
+ .open = xmm7360_cdev_open,
+ .release =
+ xmm7360_cdev_release };
static void xmm7360_mux_frame_init(struct xmm_net *xn, struct mux_frame *frame,
int sequence)
@@ -1530,8 +1530,8 @@
TTY_DRIVER_REAL_RAW |
TTY_DRIVER_DYNAMIC_DEV; // Could this flags be defined in the flags??
xmm7360_tty_driver->init_termios = tty_std_termios;
- xmm7360_tty_driver->init_termios.c_cflag = B115200 | CS8 | CREAD |
- HUPCL | CLOCAL;
+ xmm7360_tty_driver->init_termios.c_cflag =
+ B115200 | CS8 | CREAD | HUPCL | CLOCAL;
xmm7360_tty_driver->init_termios.c_lflag &= ~ECHO;
xmm7360_tty_driver->init_termios.c_ispeed = 115200;
xmm7360_tty_driver->init_termios.c_ospeed = 115200; I sent an email to Miguel Ojeda (who maintains that file, also CC'ed you) asking if there are plans to uncomment them. |
Yep, just noticed your email to Miguel :) Sounds good, will see what happens with that. Copying it here so I can remember this! 👍
|
FWIW:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That ForEachMacros
though . .
Hey @zhuyifei1999 I noticed the email chain has gone quiet, with Miguel seemingly quite busy. Looks like the minimum for the kernel is Thinking we upgrade our clang format to be compatible with 10 and merge this in? Then we can always patch from kernel version when they accept/patch those changes? I'm not 100% sure which lines are compatible/not with v10.01, maybe there's something we can copy already committed somewhere? |
I'd suggest just uncomment the "# Unknown to clang-format-something" ones. If upstream would like to add new rules later we can see what they add and adapt. |
Okay, I've just uncommented all of the commented lines, since they were all for versions 4.0 and 5.0. There's still the massive I also would like to add a GitHub Action to perform clang-format and lint, maybe in another PR. |
…module_clang_format
#78 (comment)