diff mbox series

[v3,10/10] xen/nodemask: Drop remaining refeces to linux

Message ID 20190729121204.13559-11-andrew.cooper3@citrix.com (mailing list archive)
State New, archived
Headers show
Series xen/nodemask: API cleanup and fixes | expand

Commit Message

Andrew Cooper July 29, 2019, 12:12 p.m. UTC
This file has now diverged completely from its Linux roots.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
CC: Jan Beulich <JBeulich@suse.com>
CC: Wei Liu <wl@xen.org>
CC: Roger Pau Monné <roger.pau@citrix.com>
CC: Stefano Stabellini <sstabellini@kernel.org>
CC: Julien Grall <julien.grall@arm.com>
CC: Volodymyr Babchuk <Volodymyr_Babchuk@epam.com>
---
 xen/include/xen/nodemask.h | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

Comments

Jan Beulich July 30, 2019, 11:44 a.m. UTC | #1
On 29.07.2019 14:12, Andrew Cooper wrote:
> This file has now diverged completely from its Linux roots.
> 
> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>

Acked-by: Jan Beulich <jbeulich@suse.com>

I guess the title wants to say "references".

Jan
diff mbox series

Patch

diff --git a/xen/include/xen/nodemask.h b/xen/include/xen/nodemask.h
index ed918e4a8d..be4016e571 100644
--- a/xen/include/xen/nodemask.h
+++ b/xen/include/xen/nodemask.h
@@ -1,11 +1,11 @@ 
-#ifndef __LINUX_NODEMASK_H
-#define __LINUX_NODEMASK_H
+#ifndef XEN_NODEMASK_H
+#define XEN_NODEMASK_H
 
 /*
  * Nodemasks provide a bitmap suitable for representing the
  * set of Node's in a system, one bit position per Node number.
  *
- * See detailed comments in the file linux/bitmap.h describing the
+ * See detailed comments in the file xen/bitmap.h describing the
  * data type on which these nodemasks are based.
  *
  * The available nodemask operations are:
@@ -255,4 +255,13 @@  extern nodemask_t node_online_map;
 
 #define for_each_online_node(node) for_each_node_mask(node, &node_online_map)
 
-#endif /* __LINUX_NODEMASK_H */
+#endif /* XEN_NODEMASK_H */
+
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ */