|
@@ -183,7 +183,7 @@
|
|
|
* 'base_dest_nasid' field of the header corresponds to the
|
|
|
* destination nodeID associated with that specified bit.
|
|
|
*/
|
|
|
-struct bau_targ_hubmask {
|
|
|
+struct pnmask {
|
|
|
unsigned long bits[BITS_TO_LONGS(UV_DISTRIBUTION_SIZE)];
|
|
|
};
|
|
|
|
|
@@ -314,7 +314,7 @@ struct bau_msg_header {
|
|
|
* Should be 64 bytes
|
|
|
*/
|
|
|
struct bau_desc {
|
|
|
- struct bau_targ_hubmask distribution;
|
|
|
+ struct pnmask distribution;
|
|
|
/*
|
|
|
* message template, consisting of header and payload:
|
|
|
*/
|
|
@@ -596,20 +596,20 @@ static inline void write_mmr_data_config(int pnode, unsigned long mr)
|
|
|
uv_write_global_mmr64(pnode, UVH_BAU_DATA_CONFIG, mr);
|
|
|
}
|
|
|
|
|
|
-static inline int bau_uvhub_isset(int uvhub, struct bau_targ_hubmask *dstp)
|
|
|
+static inline int bau_uvhub_isset(int uvhub, struct pnmask *dstp)
|
|
|
{
|
|
|
return constant_test_bit(uvhub, &dstp->bits[0]);
|
|
|
}
|
|
|
-static inline void bau_uvhub_set(int pnode, struct bau_targ_hubmask *dstp)
|
|
|
+static inline void bau_uvhub_set(int pnode, struct pnmask *dstp)
|
|
|
{
|
|
|
__set_bit(pnode, &dstp->bits[0]);
|
|
|
}
|
|
|
-static inline void bau_uvhubs_clear(struct bau_targ_hubmask *dstp,
|
|
|
+static inline void bau_uvhubs_clear(struct pnmask *dstp,
|
|
|
int nbits)
|
|
|
{
|
|
|
bitmap_zero(&dstp->bits[0], nbits);
|
|
|
}
|
|
|
-static inline int bau_uvhub_weight(struct bau_targ_hubmask *dstp)
|
|
|
+static inline int bau_uvhub_weight(struct pnmask *dstp)
|
|
|
{
|
|
|
return bitmap_weight((unsigned long *)&dstp->bits[0],
|
|
|
UV_DISTRIBUTION_SIZE);
|