-
Notifications
You must be signed in to change notification settings - Fork 3
Make ltotape for Linux buildable #2
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
Conversation
This commit includes following changes
- Make ltotape backend for Linux buildable
- Add --enable-checkonly build for detecting build break because of
the backend I/F change in the LTFS project (May be checked by Travis
CI on the LTFS project)
- Add .gitignore to ignore some files created by the auto tools
|
It looks good to me and it builds on NetBSD with this change, but is it a good idea to modify src/tape_drivers/linux/ltotape/ltotape_platform.c ? The change is only about an include reordering and trailing spaces suppression, but that adds burden to tracking upstream. |
|
I believe the reordering of Previously, But on the other hand, That is the reason why I change the order of include files. It looks the ltotape driver is including In the future, it is good to avoid such kind of conflict but I believe this work around is the best way at this time. |
|
In the sg driver, I need to consider we really require to avoid the conflicts or not. |
|
On Wed, Feb 27, 2019 at 12:01:25AM -0800, Atsushi Abe wrote:
I need to consider we really require to avoid the conflicts or not.
Well, the reordering is a two line diff, not such a big deal, but
what about trailing spaces?
…--
Emmanuel Dreyfus
manu@netbsd.org
|
|
I (and also original members of the LTFS project) just hate trailing spaces.... The code convention of the LTFS project doesn't allow that. So I'm using the editor configuration to remove trailing white space at save files. (It's not an intention but my editor cleanup them automatically.) Do you want to keep them really? |
|
On Wed, Feb 27, 2019 at 12:16:39AM -0800, Atsushi Abe wrote:
I (and also original members of the LTFS project) just hate trailing spaces....
I can understand that and I am willing to nuke them whenever possible,
but here that just enlarges the diff against upstream without real
benefit beyond aestetics.
…--
Emmanuel Dreyfus
manu@netbsd.org
|
|
OK. I will create another PR. |
This commit includes following changes
Please confirm that this PR doesn't break the NetBSD build.